diff --git a/__init__.py b/__init__.py index 5800ffd..b45760f 100644 --- a/__init__.py +++ b/__init__.py @@ -88,7 +88,11 @@ class callback_storage(dict): def add(self, service_id, data_id, callback, *args, **kwargs): cb_data = self.get(service_id, data_id) if cb_data != (None, None, None): +<<<<<<< HEAD self.logger.warning("Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", repr(cb_data[0].__name__), repr(service_id), repr(data_id), repr(callback.__name__)) +======= + logger.warning("Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!" , repr(cb_data[0].__name__), repr(service_id), repr(data_id), repr(callback.__name__)) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c if service_id not in self: self[service_id] = {} self[service_id][data_id] = (callback, args, kwargs) @@ -143,8 +147,11 @@ class struct_json_protocol(object): .. literalinclude:: ../../socket_protocol/_examples_/socket_protocol__struct_json_protocol_client.log """ +<<<<<<< HEAD DEFAULT_CHANNEL_NAME = 'all_others' +======= +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c SID_AUTH_SEED_REQUEST = 1 SID_AUTH_KEY_REQUEST = 2 SID_AUTH_KEY_CHECK_REQUEST = 3 @@ -196,9 +203,13 @@ class struct_json_protocol(object): self.__comm_inst__ = comm_instance self.__secret__ = secret self.__auto_auth__ = auto_auth +<<<<<<< HEAD # self.__callbacks__ = callback_storage(channel_name) self.__init_channel_name__(channel_name) +======= + self.__channel_name__ = channel_name +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c # self.__clean_receive_buffer__() self.__callbacks__.add(self.SID_AUTH_SEED_REQUEST, 0, self.__authentificate_create_seed__) @@ -213,6 +224,7 @@ class struct_json_protocol(object): self.__comm_inst__.register_connect_callback(self.__connection_established__) self.__comm_inst__.register_disconnect_callback(self.__authentification_state_reset__) +<<<<<<< HEAD def __init_channel_name__(self, channel_name): self.__comm_inst__.init_channel_name(channel_name) self.__callbacks__.init_channel_name(channel_name) @@ -229,6 +241,14 @@ class struct_json_protocol(object): def __log_prefix__(self): return ' SP client:' if self.__comm_inst__.IS_CLIENT else ' SP server:' +======= + def __log_prefix__(self): + postfix = ' (client)' if self.__comm_inst__.IS_CLIENT else ' (server)' + if self.__channel_name__ is None: + return __name__ + postfix + ':' + else: + return self.__channel_name__ + postfix + ':' +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c def connected(self): return self.__comm_inst__.is_connected() @@ -252,22 +272,39 @@ class struct_json_protocol(object): return self.STATUS_OKAY, self.__channel_name__ else: prev_channel_name = self.__channel_name__ +<<<<<<< HEAD self.__init_channel_name__(data) if prev_channel_name is not None and prev_channel_name != data: self.logger.warning('%s overwriting user defined channel name from %s to %s', self.__log_prefix__(), repr(prev_channel_name), repr(data)) elif prev_channel_name is None: self.logger.info('%s channel name is now %s', self.__log_prefix__(), repr(self.__channel_name__)) +======= + self.__channel_name__ = data + if prev_channel_name is not None and prev_channel_name != data: + logger.warning('%s overwriting user defined channel name from %s to %s', self.__log_prefix__(), repr(prev_channel_name), repr(data)) + elif prev_channel_name is None: + logger.info('%s channel name is now %s', self.__log_prefix__(), repr(self.__channel_name__)) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c return self.STATUS_OKAY, None def __channel_name_response__(self, msg): data = msg.get_data() if self.__channel_name__ is None and data is not None: +<<<<<<< HEAD self.__init_channel_name__(data) self.logger.info('%s channel name is now %s', self.__log_prefix__(), repr(self.__channel_name__)) return self.STATUS_OKAY, None def __authentification_state_reset__(self): self.logger.info("%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", self.__log_prefix__()) +======= + self.__channel_name__ = data + logger.info('%s channel name is now %s', self.__log_prefix__(), repr(self.__channel_name__)) + return self.STATUS_OKAY, None + + def __authentification_state_reset__(self): + logger.info("%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT def __analyse_frame__(self, frame): @@ -306,7 +343,11 @@ class struct_json_protocol(object): def __data_available_callback__(self, comm_inst): frame = comm_inst.receive() if not self.__check_frame_checksum__(frame): +<<<<<<< HEAD self.logger.warning("%s Received message has a wrong checksum and will be ignored: %s.", self.__log_prefix__(), stringtools.hexlify(frame)) +======= + logger.warning("%s Received message has a wrong checksum and will be ignored: %s.", self.__log_prefix__(), stringtools.hexlify(frame)) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c else: msg = self.__analyse_frame__(frame) self.logger.info( @@ -325,14 +366,24 @@ class struct_json_protocol(object): if self.__secret__ is not None and not self.check_authentification_state() and msg.get_service_id() not in self.SID_AUTH_LIST: status = self.STATUS_AUTH_REQUIRED data = None +<<<<<<< HEAD self.logger.warning("%s Received message needs authentification: %s. Sending negative response.", self.__log_prefix__(), self.AUTH_STATUS_NAMES.get(self.__authentification_state__, 'Unknown authentification status!')) elif callback is None: self.logger.warning("%s Received message with no registered callback. Sending negative response.", self.__log_prefix__()) +======= + logger.warning("%s Received message needs authentification: %s. Sending negative response.", self.__log_prefix__(), self.AUTH_STATUS_NAMES.get(self.__authentification_state__, 'Unknown authentification status!')) + elif callback is None: + logger.warning("%s Received message with no registered callback. Sending negative response.", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c status = self.STATUS_BUFFERING_UNHANDLED_REQUEST data = None else: try: +<<<<<<< HEAD self.logger.debug("%s Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) +======= + logger.debug("%s Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c status, data = callback(msg, *args, **kwargs) except TypeError: raise TypeError('Check return value of callback function {callback_name} for service_id {service_id} and data_id {data_id}'.format(callback_name=callback.__name__, service_id=repr(msg.get_service_id()), data_id=repr(msg.get_data_id()))) @@ -342,14 +393,22 @@ class struct_json_protocol(object): # RESPONSE RECEIVED # if msg.get_status() not in [self.STATUS_OKAY]: +<<<<<<< HEAD self.logger.warning("%s Received message has a peculiar status: %s", self.__log_prefix__(), self.STATUS_NAMES.get(msg.get_status(), 'Unknown status response!')) +======= + logger.warning("%s Received message has a peculiar status: %s", self.__log_prefix__(), self.STATUS_NAMES.get(msg.get_status(), 'Unknown status response!')) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c if callback is None: status = self.STATUS_OKAY data = None self.__buffer_received_data__(msg) else: try: +<<<<<<< HEAD self.logger.debug("%s Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) +======= + logger.debug("%s Executing callback %s to process received data", self.__log_prefix__(), callback.__name__) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c status, data = callback(msg, *args, **kwargs) except TypeError: raise TypeError('Check return value of callback function {callback_name} for service_id {service_id} and data_id {data_id}'.format(callback_name=callback.__name__, service_id=repr(msg.get_service_id()), data_id=repr(msg.get_data_id()))) @@ -360,10 +419,17 @@ class struct_json_protocol(object): if not msg.get_data_id() in self.__msg_buffer__[msg.get_service_id()]: self.__msg_buffer__[msg.get_service_id()][msg.get_data_id()] = [] self.__msg_buffer__[msg.get_service_id()][msg.get_data_id()].append(msg) +<<<<<<< HEAD self.logger.debug("%s Message data is stored in buffer and is now ready to be retrieved by receive method", self.__log_prefix__()) def __clean_receive_buffer__(self): self.logger.debug("%s Cleaning up receive-buffer", self.__log_prefix__()) +======= + logger.debug("%s Message data is stored in buffer and is now ready to be retrieved by receive method", self.__log_prefix__()) + + def __clean_receive_buffer__(self): + logger.debug("%s Cleaning up receive-buffer", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c self.__msg_buffer__ = {} def receive(self, service_id, data_id, timeout=1): @@ -377,7 +443,11 @@ class struct_json_protocol(object): cnt += 1 time.sleep(0.1) if data is None and cnt >= timeout * 10: +<<<<<<< HEAD self.logger.warning('%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.', self.__log_prefix__(), repr(timeout), repr(service_id), repr(data_id)) +======= + logger.warning('%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.', self.__log_prefix__(), repr(timeout), repr(service_id), repr(data_id)) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c return data def __mk_msg__(self, status, service_id, data_id, data): @@ -402,7 +472,11 @@ class struct_json_protocol(object): This methods sends out a message with the given content. """ +<<<<<<< HEAD self.logger.log(log_lvl, '%s TX -> status: %d, service_id: %d, data_id: %d, data: "%s"', self.__log_prefix__(), status, service_id, data_id, repr(data)) +======= + logger.log(log_lvl, '%s TX -> status: %d, service_id: %d, data_id: %d, data: "%s"', self.__log_prefix__(), status, service_id, data_id, repr(data)) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c return self.__comm_inst__.send(self.__build_frame__(service_id, data_id, data, status), timeout=timeout, log_lvl=logging.DEBUG) def register_callback(self, service_id, data_id, callback, *args, **kwargs): @@ -446,7 +520,11 @@ class struct_json_protocol(object): """ if self.__secret__ is not None: self.__authentification_state__ = self.AUTH_STATE_SEED_REQUESTED +<<<<<<< HEAD self.logger.info("%s Requesting seed for authentification", self.__log_prefix__()) +======= + logger.info("%s Requesting seed for authentification", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c self.send(self.SID_AUTH_SEED_REQUEST, 0, None) cnt = 0 while cnt < timeout * 10: @@ -472,7 +550,11 @@ class struct_json_protocol(object): return hashlib.sha512(seed.encode('utf-8') + self.__secret__.encode('utf-8')).hexdigest() def __authentificate_create_seed__(self, msg): +<<<<<<< HEAD self.logger.info("%s Got seed request, sending seed for authentification", self.__log_prefix__()) +======= + logger.info("%s Got seed request, sending seed for authentification", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c self.__authentification_state__ = self.AUTH_STATE_SEED_TRANSFERRED if sys.version_info >= (3, 0): self.__seed__ = binascii.hexlify(os.urandom(32)).decode('utf-8') @@ -481,7 +563,11 @@ class struct_json_protocol(object): return self.STATUS_OKAY, self.__seed__ def __authentificate_create_key__(self, msg): +<<<<<<< HEAD self.logger.info("%s Got seed, sending key for authentification", self.__log_prefix__()) +======= + logger.info("%s Got seed, sending key for authentification", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c self.__authentification_state__ = self.AUTH_STATE_KEY_TRANSFERRED seed = msg.get_data() key = self.__authentificate_salt_and_hash__(seed) @@ -491,21 +577,36 @@ class struct_json_protocol(object): key = msg.get_data() if key == self.__authentificate_salt_and_hash__(self.__seed__): self.__authentification_state__ = self.AUTH_STATE_TRUSTED_CLIENT +<<<<<<< HEAD self.logger.info("%s Got correct key, sending positive authentification feedback", self.__log_prefix__()) return self.STATUS_OKAY, True else: self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT self.logger.info("%s Got incorrect key, sending negative authentification feedback", self.__log_prefix__()) +======= + logger.info("%s Got correct key, sending positive authentification feedback", self.__log_prefix__()) + return self.STATUS_OKAY, True + else: + self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT + logger.info("%s Got incorrect key, sending negative authentification feedback", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c return self.STATUS_OKAY, False def __authentificate_process_feedback__(self, msg): feedback = msg.get_data() if feedback: self.__authentification_state__ = self.AUTH_STATE_TRUSTED_CLIENT +<<<<<<< HEAD self.logger.info("%s Got positive authentification feedback", self.__log_prefix__()) else: self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT self.logger.warning("%s Got negative authentification feedback", self.__log_prefix__()) +======= + logger.info("%s Got positive authentification feedback", self.__log_prefix__()) + else: + self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT + logger.warning("%s Got negative authentification feedback", self.__log_prefix__()) +>>>>>>> 8beacaef2257e82852e1c0b5442ec4d09b891b7c return self.STATUS_OKAY, None diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 2adccd6..e569b43 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -1,11 +1,11 @@ { "coverage_information": [ { - "branch_coverage": 96.77, + "branch_coverage": 98.65, "filepath": "/user_data/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol", "files": [ { - "branch_coverage": 96.77, + "branch_coverage": 98.65, "filepath": "/user_data/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol/__init__.py", "fragments": [ { @@ -85,48 +85,48 @@ }, { "coverage_state": "covered", - "end": 54, + "end": 55, "start": 53 }, { "coverage_state": "clean", "end": 56, - "start": 55 + "start": 56 }, { "coverage_state": "covered", - "end": 59, + "end": 77, "start": 57 }, { "coverage_state": "clean", - "end": 60, - "start": 60 + "end": 78, + "start": 78 }, { "coverage_state": "covered", - "end": 81, - "start": 61 + "end": 85, + "start": 79 }, { "coverage_state": "clean", - "end": 82, - "start": 82 + "end": 87, + "start": 86 }, { "coverage_state": "covered", - "end": 88, - "start": 83 + "end": 92, + "start": 88 }, { "coverage_state": "clean", - "end": 90, - "start": 89 + "end": 93, + "start": 93 }, { "coverage_state": "covered", "end": 95, - "start": 91 + "start": 94 }, { "coverage_state": "clean", @@ -170,136 +170,101 @@ }, { "coverage_state": "clean", - "end": 108, + "end": 109, "start": 108 }, { "coverage_state": "covered", "end": 110, - "start": 109 + "start": 110 }, { "coverage_state": "clean", - "end": 112, + "end": 136, "start": 111 }, { "coverage_state": "covered", - "end": 113, - "start": 113 + "end": 148, + "start": 137 }, { "coverage_state": "clean", - "end": 139, - "start": 114 + "end": 149, + "start": 149 }, { "coverage_state": "covered", - "end": 140, - "start": 140 + "end": 150, + "start": 150 }, { "coverage_state": "clean", - "end": 141, - "start": 141 + "end": 157, + "start": 151 }, { "coverage_state": "covered", - "end": 151, - "start": 142 - }, - { - "coverage_state": "clean", - "end": 152, - "start": 152 - }, - { - "coverage_state": "covered", - "end": 153, - "start": 153 + "end": 158, + "start": 158 }, { "coverage_state": "clean", "end": 159, - "start": 154 + "start": 159 }, { "coverage_state": "covered", - "end": 160, + "end": 166, "start": 160 }, { "coverage_state": "clean", - "end": 161, - "start": 161 + "end": 172, + "start": 167 }, { "coverage_state": "covered", - "end": 168, - "start": 162 + "end": 178, + "start": 173 }, { "coverage_state": "clean", - "end": 174, - "start": 169 + "end": 183, + "start": 179 }, { "coverage_state": "covered", - "end": 180, - "start": 175 + "end": 188, + "start": 184 }, { "coverage_state": "clean", - "end": 185, - "start": 181 - }, - { - "coverage_state": "covered", - "end": 200, - "start": 186 - }, - { - "coverage_state": "clean", - "end": 201, - "start": 201 + "end": 189, + "start": 189 }, { "coverage_state": "covered", "end": 202, - "start": 202 + "start": 190 }, { - "coverage_state": "uncovered", + "coverage_state": "clean", "end": 203, "start": 203 }, { - "coverage_state": "clean", - "end": 204, + "coverage_state": "covered", + "end": 207, "start": 204 }, - { - "coverage_state": "covered", - "end": 205, - "start": 205 - }, - { - "coverage_state": "uncovered", - "end": 206, - "start": 206 - }, { "coverage_state": "clean", - "end": 207, - "start": 207 - }, - { - "coverage_state": "covered", "end": 208, "start": 208 }, { - "coverage_state": "uncovered", + "coverage_state": "covered", "end": 209, "start": 209 }, @@ -315,19 +280,39 @@ }, { "coverage_state": "uncovered", - "end": 214, + "end": 212, "start": 212 }, { "coverage_state": "clean", + "end": 213, + "start": 213 + }, + { + "coverage_state": "covered", + "end": 214, + "start": 214 + }, + { + "coverage_state": "uncovered", "end": 215, "start": 215 }, { - "coverage_state": "covered", - "end": 218, + "coverage_state": "clean", + "end": 216, "start": 216 }, + { + "coverage_state": "covered", + "end": 217, + "start": 217 + }, + { + "coverage_state": "uncovered", + "end": 218, + "start": 218 + }, { "coverage_state": "clean", "end": 219, @@ -339,114 +324,124 @@ "start": 220 }, { - "coverage_state": "clean", + "coverage_state": "partially-covered", "end": 224, "start": 224 }, { - "coverage_state": "covered", - "end": 226, + "coverage_state": "uncovered", + "end": 225, "start": 225 }, { "coverage_state": "clean", - "end": 227, + "end": 226, + "start": 226 + }, + { + "coverage_state": "covered", + "end": 230, "start": 227 }, + { + "coverage_state": "clean", + "end": 231, + "start": 231 + }, { "coverage_state": "covered", - "end": 232, - "start": 228 + "end": 238, + "start": 232 }, { "coverage_state": "clean", - "end": 233, - "start": 233 + "end": 239, + "start": 239 }, { "coverage_state": "covered", - "end": 236, - "start": 234 + "end": 245, + "start": 240 }, { "coverage_state": "clean", - "end": 237, - "start": 237 - }, - { - "coverage_state": "covered", - "end": 242, - "start": 238 - }, - { - "coverage_state": "clean", - "end": 243, - "start": 243 - }, - { - "coverage_state": "covered", "end": 246, - "start": 244 + "start": 246 }, { - "coverage_state": "clean", - "end": 247, + "coverage_state": "covered", + "end": 249, "start": 247 }, - { - "coverage_state": "covered", - "end": 248, - "start": 248 - }, { "coverage_state": "clean", - "end": 249, - "start": 249 - }, - { - "coverage_state": "covered", - "end": 251, + "end": 250, "start": 250 }, + { + "coverage_state": "covered", + "end": 254, + "start": 251 + }, { "coverage_state": "clean", - "end": 252, - "start": 252 + "end": 255, + "start": 255 }, { "coverage_state": "covered", - "end": 256, - "start": 253 - }, - { - "coverage_state": "clean", "end": 257, - "start": 257 + "start": 256 }, { - "coverage_state": "covered", - "end": 259, + "coverage_state": "clean", + "end": 258, "start": 258 }, + { + "coverage_state": "covered", + "end": 263, + "start": 259 + }, { "coverage_state": "clean", - "end": 266, - "start": 260 + "end": 264, + "start": 264 }, { "coverage_state": "covered", - "end": 268, - "start": 267 + "end": 267, + "start": 265 }, { "coverage_state": "clean", - "end": 271, + "end": 268, + "start": 268 + }, + { + "coverage_state": "covered", + "end": 273, "start": 269 }, + { + "coverage_state": "clean", + "end": 274, + "start": 274 + }, + { + "coverage_state": "covered", + "end": 277, + "start": 275 + }, + { + "coverage_state": "clean", + "end": 278, + "start": 278 + }, { "coverage_state": "covered", "end": 279, - "start": 272 + "start": 279 }, { "coverage_state": "clean", @@ -455,38 +450,48 @@ }, { "coverage_state": "covered", - "end": 286, + "end": 282, "start": 281 }, { "coverage_state": "clean", - "end": 290, - "start": 287 + "end": 283, + "start": 283 }, { "coverage_state": "covered", - "end": 296, - "start": 291 + "end": 287, + "start": 284 + }, + { + "coverage_state": "clean", + "end": 288, + "start": 288 + }, + { + "coverage_state": "covered", + "end": 290, + "start": 289 }, { "coverage_state": "clean", "end": 297, - "start": 297 + "start": 291 }, { "coverage_state": "covered", - "end": 302, + "end": 299, "start": 298 }, { "coverage_state": "clean", - "end": 303, - "start": 303 + "end": 302, + "start": 300 }, { "coverage_state": "covered", "end": 310, - "start": 304 + "start": 303 }, { "coverage_state": "clean", @@ -495,280 +500,320 @@ }, { "coverage_state": "covered", - "end": 314, + "end": 317, "start": 312 }, { "coverage_state": "clean", - "end": 315, - "start": 315 + "end": 321, + "start": 318 }, { "coverage_state": "covered", + "end": 327, + "start": 322 + }, + { + "coverage_state": "clean", "end": 328, - "start": 316 - }, - { - "coverage_state": "clean", - "end": 329, - "start": 329 - }, - { - "coverage_state": "covered", - "end": 331, - "start": 330 - }, - { - "coverage_state": "clean", - "end": 332, - "start": 332 + "start": 328 }, { "coverage_state": "covered", "end": 333, - "start": 333 + "start": 329 }, { "coverage_state": "clean", - "end": 351, + "end": 334, "start": 334 }, { "coverage_state": "covered", - "end": 353, - "start": 352 + "end": 341, + "start": 335 }, { "coverage_state": "clean", - "end": 354, - "start": 354 + "end": 342, + "start": 342 }, { "coverage_state": "covered", - "end": 355, - "start": 355 + "end": 345, + "start": 343 }, { "coverage_state": "clean", - "end": 378, - "start": 356 + "end": 346, + "start": 346 }, { "coverage_state": "covered", - "end": 379, - "start": 379 + "end": 359, + "start": 347 }, { "coverage_state": "clean", - "end": 380, - "start": 380 + "end": 360, + "start": 360 }, { "coverage_state": "covered", - "end": 381, - "start": 381 + "end": 362, + "start": 361 }, { "coverage_state": "clean", - "end": 393, - "start": 382 + "end": 363, + "start": 363 }, { "coverage_state": "covered", - "end": 406, - "start": 394 + "end": 364, + "start": 364 }, { "coverage_state": "clean", - "end": 407, - "start": 407 + "end": 382, + "start": 365 }, { "coverage_state": "covered", - "end": 408, - "start": 408 + "end": 384, + "start": 383 }, { "coverage_state": "clean", + "end": 385, + "start": 385 + }, + { + "coverage_state": "covered", + "end": 386, + "start": 386 + }, + { + "coverage_state": "clean", + "end": 409, + "start": 387 + }, + { + "coverage_state": "covered", + "end": 410, + "start": 410 + }, + { + "coverage_state": "clean", + "end": 411, + "start": 411 + }, + { + "coverage_state": "covered", "end": 412, - "start": 409 + "start": 412 }, { - "coverage_state": "covered", - "end": 413, + "coverage_state": "clean", + "end": 424, "start": 413 }, - { - "coverage_state": "clean", - "end": 414, - "start": 414 - }, { "coverage_state": "covered", - "end": 417, - "start": 415 + "end": 437, + "start": 425 }, { "coverage_state": "clean", - "end": 418, - "start": 418 + "end": 438, + "start": 438 }, { "coverage_state": "covered", - "end": 419, - "start": 419 - }, - { - "coverage_state": "clean", - "end": 420, - "start": 420 - }, - { - "coverage_state": "covered", - "end": 425, - "start": 421 - }, - { - "coverage_state": "clean", - "end": 426, - "start": 426 - }, - { - "coverage_state": "covered", - "end": 428, - "start": 427 - }, - { - "coverage_state": "clean", - "end": 429, - "start": 429 - }, - { - "coverage_state": "covered", - "end": 435, - "start": 430 - }, - { - "coverage_state": "clean", - "end": 436, - "start": 436 - }, - { - "coverage_state": "covered", - "end": 442, - "start": 437 + "end": 439, + "start": 439 }, { "coverage_state": "clean", "end": 443, - "start": 443 + "start": 440 }, { "coverage_state": "covered", - "end": 446, + "end": 444, "start": 444 }, { "coverage_state": "clean", - "end": 447, - "start": 447 + "end": 445, + "start": 445 }, { "coverage_state": "covered", - "end": 452, - "start": 448 + "end": 448, + "start": 446 }, { "coverage_state": "clean", - "end": 453, - "start": 453 + "end": 449, + "start": 449 + }, + { + "coverage_state": "covered", + "end": 450, + "start": 450 + }, + { + "coverage_state": "clean", + "end": 451, + "start": 451 }, { "coverage_state": "covered", "end": 456, - "start": 454 + "start": 452 }, { "coverage_state": "clean", - "end": 458, + "end": 457, "start": 457 }, { "coverage_state": "covered", "end": 459, - "start": 459 + "start": 458 }, { "coverage_state": "clean", - "end": 482, + "end": 460, "start": 460 }, { "coverage_state": "covered", - "end": 484, - "start": 483 + "end": 466, + "start": 461 }, { "coverage_state": "clean", - "end": 485, + "end": 467, + "start": 467 + }, + { + "coverage_state": "covered", + "end": 473, + "start": 468 + }, + { + "coverage_state": "clean", + "end": 474, + "start": 474 + }, + { + "coverage_state": "covered", + "end": 477, + "start": 475 + }, + { + "coverage_state": "clean", + "end": 478, + "start": 478 + }, + { + "coverage_state": "covered", + "end": 483, + "start": 479 + }, + { + "coverage_state": "clean", + "end": 484, + "start": 484 + }, + { + "coverage_state": "covered", + "end": 487, "start": 485 }, + { + "coverage_state": "clean", + "end": 489, + "start": 488 + }, { "coverage_state": "covered", - "end": 491, - "start": 486 + "end": 490, + "start": 490 }, { "coverage_state": "clean", - "end": 492, - "start": 492 + "end": 513, + "start": 491 }, { "coverage_state": "covered", - "end": 495, - "start": 493 + "end": 515, + "start": 514 }, { "coverage_state": "clean", - "end": 496, - "start": 496 + "end": 516, + "start": 516 }, { "coverage_state": "covered", - "end": 497, - "start": 497 + "end": 522, + "start": 517 }, { "coverage_state": "clean", - "end": 498, - "start": 498 + "end": 523, + "start": 523 }, { "coverage_state": "covered", - "end": 500, - "start": 499 + "end": 526, + "start": 524 }, { "coverage_state": "clean", - "end": 501, - "start": 501 + "end": 527, + "start": 527 }, { "coverage_state": "covered", - "end": 503, - "start": 502 + "end": 528, + "start": 528 + }, + { + "coverage_state": "clean", + "end": 529, + "start": 529 + }, + { + "coverage_state": "covered", + "end": 531, + "start": 530 + }, + { + "coverage_state": "clean", + "end": 532, + "start": 532 + }, + { + "coverage_state": "covered", + "end": 534, + "start": 533 }, { "coverage_state": "clean", "end": null, - "start": 504 + "start": 535 } ], - "line_coverage": 97.82, + "line_coverage": 98.68, "name": "socket_protocol.__init__.py" } ], - "line_coverage": 97.82, + "line_coverage": 98.68, "name": "socket_protocol" } ], @@ -780,7 +825,6 @@ "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", - "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "socket_protocol.pure_json_protocol: Send and receive check.", @@ -789,7 +833,11 @@ "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", - "socket_protocol.struct_json_protocol: Send and receive check." + "socket_protocol.struct_json_protocol: Send and receive check.", + "socket_protocol: Client setting the channel name.", + "socket_protocol: Server and Client setting different channel names.", + "socket_protocol: Server and Client setting the same channel name.", + "socket_protocol: Server setting the channel name." ] }, "specification": {}, @@ -814,7 +862,7 @@ "Name": "socket_protocol", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "b6a37b5ebade9bbfaf8d4b1ce203f822" + "Version": "1ef858a12d357a31af69d84774037597" }, "testrun_list": [ { @@ -823,8 +871,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 15, - "number_of_tests": 15, + "number_of_successfull_tests": 18, + "number_of_tests": 18, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -835,8 +883,8 @@ "testcases": { "socket_protocol.pure_json_protocol: Authentification processed without secret.": { "args": null, - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.25657, + "asctime": "2020-12-25 15:03:34,394", + "created": 1608905014.394057, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -847,147 +895,147 @@ "message": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "module": "__init__", "moduleLogger": [], - "msecs": 256.57010078430176, + "msecs": 394.057035446167, "msg": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10950.309038162231, + "relativeCreated": 10975.873947143555, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257375, + "asctime": "2020-12-25 15:03:34,395", + "created": 1608905014.395718, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", "funcName": "authentification_no_secret", "levelname": "DEBUG", "levelno": 10, - "lineno": 109, + "lineno": 90, "message": "Authentification with no secret definition (pure_json_protocol).", "module": "test_handling_errors", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.256762, + "asctime": "2020-12-25 15:03:34,394", + "created": 1608905014.394405, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 256.7620277404785, + "msecs": 394.4048881530762, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10950.500965118408, - "thread": 140534768363328, + "relativeCreated": 10976.221799850464, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.256957, + "asctime": "2020-12-25 15:03:34,394", + "created": 1608905014.394866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 256.9570541381836, + "msecs": 394.8659896850586, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10950.695991516113, - "thread": 140534768363328, + "relativeCreated": 10976.682901382446, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257082, + "asctime": "2020-12-25 15:03:34,395", + "created": 1608905014.395098, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 257.0819854736328, + "msecs": 395.0979709625244, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10950.820922851562, - "thread": 140534768363328, + "relativeCreated": 10976.914882659912, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257265, + "asctime": "2020-12-25 15:03:34,395", + "created": 1608905014.395499, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 257.2650909423828, + "msecs": 395.49899101257324, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.004028320312, - "thread": 140534768363328, + "relativeCreated": 10977.315902709961, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 257.37500190734863, + "msecs": 395.7180976867676, "msg": "Authentification with no secret definition (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.113939285278, - "thread": 140534768363328, + "relativeCreated": 10977.535009384155, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.00021910667419433594 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257721, + "asctime": "2020-12-25 15:03:34,396", + "created": 1608905014.39633, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1004,8 +1052,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257542, + "asctime": "2020-12-25 15:03:34,395", + "created": 1608905014.395997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1015,14 +1063,14 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 257.5418949127197, + "msecs": 395.9970474243164, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.28083229065, - "thread": 140534768363328, + "relativeCreated": 10977.813959121704, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -1031,8 +1079,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257632, + "asctime": "2020-12-25 15:03:34,396", + "created": 1608905014.396167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1042,61 +1090,61 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 257.6320171356201, + "msecs": 396.1670398712158, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.37095451355, - "thread": 140534768363328, + "relativeCreated": 10977.983951568604, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 257.720947265625, + "msecs": 396.3301181793213, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.459884643555, - "thread": 140534768363328, + "relativeCreated": 10978.147029876709, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 8.893013000488281e-05 + "time_consumption": 0.00016307830810546875 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0011508464813232422, - "time_finished": "2020-12-21 22:33:00,257", - "time_start": "2020-12-21 22:33:00,256" + "time_consumption": 0.002273082733154297, + "time_finished": "2020-12-25 15:03:34,396", + "time_start": "2020-12-25 15:03:34,394" }, "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.": { "args": null, - "asctime": "2020-12-21 22:32:58,845", - "created": 1608586378.845987, + "asctime": "2020-12-25 15:03:32,979", + "created": 1608905012.979097, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 42, + "lineno": 43, "message": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "module": "__init__", "moduleLogger": [], - "msecs": 845.98708152771, + "msecs": 979.0968894958496, "msg": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9539.72601890564, + "relativeCreated": 9560.913801193237, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.052388, + "asctime": "2020-12-25 15:03:34,187", + "created": 1608905014.187964, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -1109,1053 +1157,1053 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,846", - "created": 1608586378.846379, + "asctime": "2020-12-25 15:03:32,979", + "created": 1608905012.979499, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 846.3790416717529, + "msecs": 979.499101638794, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9540.117979049683, - "thread": 140534768363328, + "relativeCreated": 9561.316013336182, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,846", - "created": 1608586378.846818, + "asctime": "2020-12-25 15:03:32,980", + "created": 1608905012.980614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 846.8179702758789, + "msecs": 980.6139469146729, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9540.556907653809, - "thread": 140534768363328, + "relativeCreated": 9562.43085861206, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,847", - "created": 1608586378.847055, + "asctime": "2020-12-25 15:03:32,980", + "created": 1608905012.980873, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 847.0549583435059, + "msecs": 980.8731079101562, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9540.793895721436, - "thread": 140534768363328, + "relativeCreated": 9562.690019607544, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,847", - "created": 1608586378.847385, + "asctime": "2020-12-25 15:03:32,981", + "created": 1608905012.981291, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 847.3849296569824, + "msecs": 981.2910556793213, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9541.123867034912, - "thread": 140534768363328, + "relativeCreated": 9563.107967376709, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,847", - "created": 1608586378.847645, + "asctime": "2020-12-25 15:03:32,981", + "created": 1608905012.981552, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 847.6450443267822, + "msecs": 981.5518856048584, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9541.383981704712, - "thread": 140534768363328, + "relativeCreated": 9563.368797302246, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:32:58,847", - "created": 1608586378.847841, + "asctime": "2020-12-25 15:03:32,981", + "created": 1608905012.98178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 847.8410243988037, + "msecs": 981.7800521850586, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9541.579961776733, - "thread": 140534768363328, + "relativeCreated": 9563.596963882446, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:58,848", - "created": 1608586378.848333, + "asctime": "2020-12-25 15:03:32,982", + "created": 1608905012.982247, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 848.3328819274902, + "msecs": 982.2471141815186, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9542.07181930542, - "thread": 140534768363328, + "relativeCreated": 9564.064025878906, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:58,999", - "created": 1608586378.999472, + "asctime": "2020-12-25 15:03:33,133", + "created": 1608905013.133505, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 999.47190284729, + "msecs": 133.50510597229004, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9693.21084022522, - "thread": 140534738941696, + "relativeCreated": 9715.322017669678, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "1", "0", "None" ], - "asctime": "2020-12-21 22:32:58,999", - "created": 1608586378.999952, + "asctime": "2020-12-25 15:03:33,134", + "created": 1608905013.13411, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 999.9520778656006, + "msecs": 134.1099739074707, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9693.69101524353, - "thread": 140534738941696, + "relativeCreated": 9715.926885604858, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_seed__" ], - "asctime": "2020-12-21 22:32:59,000", - "created": 1608586379.000199, + "asctime": "2020-12-25 15:03:33,134", + "created": 1608905013.134401, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 0.1990795135498047, + "msecs": 134.4010829925537, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9693.93801689148, - "thread": 140534738941696, + "relativeCreated": 9716.217994689941, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:59,000", - "created": 1608586379.000376, + "asctime": "2020-12-25 15:03:33,134", + "created": 1608905013.134592, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 422, - "message": "SJP: Got seed request, sending seed for authentification", + "lineno": 453, + "message": "socket_protocol (server): Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 0.37598609924316406, + "msecs": 134.59205627441406, "msg": "%s Got seed request, sending seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9694.114923477173, - "thread": 140534738941696, + "relativeCreated": 9716.408967971802, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 2, 0, - "'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'" + "'c212ab22451532ff9781a3147283982d1a3d1776430fb3743fd31bd934162933'" ], - "asctime": "2020-12-21 22:32:59,000", - "created": 1608586379.000627, + "asctime": "2020-12-25 15:03:33,134", + "created": 1608905013.134894, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 2, data_id: 0, data: \"'c212ab22451532ff9781a3147283982d1a3d1776430fb3743fd31bd934162933'\"", "module": "__init__", - "msecs": 0.6270408630371094, + "msecs": 134.89389419555664, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9694.365978240967, - "thread": 140534738941696, + "relativeCreated": 9716.710805892944, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-12-21 22:32:59,001", - "created": 1608586379.001278, + "asctime": "2020-12-25 15:03:33,135", + "created": 1608905013.135557, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", + "lineno": 60, + "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 63 32 31 32 61 62 32 32 34 35 31 35 33 32 66 66 39 37 38 31 61 33 31 34 37 32 38 33 39 38 32 64 31 61 33 64 31 37 37 36 34 33 30 66 62 33 37 34 33 66 64 33 31 62 64 39 33 34 31 36 32 39 33 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 68 96 22 b0", "module": "test_helpers", - "msecs": 1.277923583984375, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", + "msecs": 135.5569362640381, + "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 63 32 31 32 61 62 32 32 34 35 31 35 33 32 66 66 39 37 38 31 61 33 31 34 37 32 38 33 39 38 32 64 31 61 33 64 31 37 37 36 34 33 30 66 62 33 37 34 33 66 64 33 31 62 64 39 33 34 31 36 32 39 33 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 68 96 22 b0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9695.016860961914, - "thread": 140534738941696, + "relativeCreated": 9717.373847961426, + "thread": 140137890617088, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-12-21 22:32:59,152", - "created": 1608586379.152882, + "asctime": "2020-12-25 15:03:33,286", + "created": 1608905013.286884, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", + "lineno": 71, + "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 63 32 31 32 61 62 32 32 34 35 31 35 33 32 66 66 39 37 38 31 61 33 31 34 37 32 38 33 39 38 32 64 31 61 33 64 31 37 37 36 34 33 30 66 62 33 37 34 33 66 64 33 31 62 64 39 33 34 31 36 32 39 33 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 68 96 22 b0", "module": "test_helpers", - "msecs": 152.88209915161133, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", + "msecs": 286.884069442749, + "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 63 32 31 32 61 62 32 32 34 35 31 35 33 32 66 66 39 37 38 31 61 33 31 34 37 32 38 33 39 38 32 64 31 61 33 64 31 37 37 36 34 33 30 66 62 33 37 34 33 66 64 33 31 62 64 39 33 34 31 36 32 39 33 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 68 96 22 b0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9846.621036529541, - "thread": 140534747334400, + "relativeCreated": 9868.700981140137, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "2", "0", - "u'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'" + "u'c212ab22451532ff9781a3147283982d1a3d1776430fb3743fd31bd934162933'" ], - "asctime": "2020-12-21 22:32:59,153", - "created": 1608586379.153361, + "asctime": "2020-12-25 15:03:33,287", + "created": 1608905013.287333, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 2, data_id: 0, data: \"u'c212ab22451532ff9781a3147283982d1a3d1776430fb3743fd31bd934162933'\"", "module": "__init__", - "msecs": 153.36108207702637, + "msecs": 287.33301162719727, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9847.100019454956, - "thread": 140534747334400, + "relativeCreated": 9869.149923324585, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_key__" ], - "asctime": "2020-12-21 22:32:59,153", - "created": 1608586379.153632, + "asctime": "2020-12-25 15:03:33,287", + "created": 1608905013.287591, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 153.63192558288574, + "msecs": 287.59098052978516, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9847.370862960815, - "thread": 140534747334400, + "relativeCreated": 9869.407892227173, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:59,153", - "created": 1608586379.153805, + "asctime": "2020-12-25 15:03:33,287", + "created": 1608905013.287778, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 431, - "message": "SJP: Got seed, sending key for authentification", + "lineno": 462, + "message": "socket_protocol (server): Got seed, sending key for authentification", "module": "__init__", - "msecs": 153.80501747131348, + "msecs": 287.7779006958008, "msg": "%s Got seed, sending key for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9847.543954849243, - "thread": 140534747334400, + "relativeCreated": 9869.594812393188, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 3, 0, - "'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'" + "'201d6224fcd5ca1c5c10f23d5ca000620b0953e3290f2b3eba5a0f67cfef4126e9b5cc8b8e5b7040b29bd79507e8071d0d2687146c78fa1a0b7625e6ecbfe6f2'" ], - "asctime": "2020-12-21 22:32:59,154", - "created": 1608586379.154075, + "asctime": "2020-12-25 15:03:33,288", + "created": 1608905013.288082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 3, data_id: 0, data: \"'201d6224fcd5ca1c5c10f23d5ca000620b0953e3290f2b3eba5a0f67cfef4126e9b5cc8b8e5b7040b29bd79507e8071d0d2687146c78fa1a0b7625e6ecbfe6f2'\"", "module": "__init__", - "msecs": 154.07490730285645, + "msecs": 288.0818843841553, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9847.813844680786, - "thread": 140534747334400, + "relativeCreated": 9869.898796081543, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-12-21 22:32:59,154", - "created": 1608586379.154878, + "asctime": "2020-12-25 15:03:33,288", + "created": 1608905013.288905, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", + "lineno": 60, + "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 32 30 31 64 36 32 32 34 66 63 64 35 63 61 31 63 35 63 31 30 66 32 33 64 35 63 61 30 30 30 36 32 30 62 30 39 35 33 65 33 32 39 30 66 32 62 33 65 62 61 35 61 30 66 36 37 63 66 65 66 34 31 32 36 65 39 62 35 63 63 38 62 38 65 35 62 37 30 34 30 62 32 39 62 64 37 39 35 30 37 65 38 30 37 31 64 30 64 32 36 38 37 31 34 36 63 37 38 66 61 31 61 30 62 37 36 32 35 65 36 65 63 62 66 65 36 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 5f 83 0f d9", "module": "test_helpers", - "msecs": 154.8779010772705, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", + "msecs": 288.90490531921387, + "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 32 30 31 64 36 32 32 34 66 63 64 35 63 61 31 63 35 63 31 30 66 32 33 64 35 63 61 30 30 30 36 32 30 62 30 39 35 33 65 33 32 39 30 66 32 62 33 65 62 61 35 61 30 66 36 37 63 66 65 66 34 31 32 36 65 39 62 35 63 63 38 62 38 65 35 62 37 30 34 30 62 32 39 62 64 37 39 35 30 37 65 38 30 37 31 64 30 64 32 36 38 37 31 34 36 63 37 38 66 61 31 61 30 62 37 36 32 35 65 36 65 63 62 66 65 36 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 5f 83 0f d9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9848.6168384552, - "thread": 140534747334400, + "relativeCreated": 9870.721817016602, + "thread": 140137899009792, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-12-21 22:32:59,306", - "created": 1608586379.306386, + "asctime": "2020-12-25 15:03:33,440", + "created": 1608905013.44035, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", + "lineno": 71, + "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 32 30 31 64 36 32 32 34 66 63 64 35 63 61 31 63 35 63 31 30 66 32 33 64 35 63 61 30 30 30 36 32 30 62 30 39 35 33 65 33 32 39 30 66 32 62 33 65 62 61 35 61 30 66 36 37 63 66 65 66 34 31 32 36 65 39 62 35 63 63 38 62 38 65 35 62 37 30 34 30 62 32 39 62 64 37 39 35 30 37 65 38 30 37 31 64 30 64 32 36 38 37 31 34 36 63 37 38 66 61 31 61 30 62 37 36 32 35 65 36 65 63 62 66 65 36 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 5f 83 0f d9", "module": "test_helpers", - "msecs": 306.38599395751953, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", + "msecs": 440.3500556945801, + "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 32 30 31 64 36 32 32 34 66 63 64 35 63 61 31 63 35 63 31 30 66 32 33 64 35 63 61 30 30 30 36 32 30 62 30 39 35 33 65 33 32 39 30 66 32 62 33 65 62 61 35 61 30 66 36 37 63 66 65 66 34 31 32 36 65 39 62 35 63 63 38 62 38 65 35 62 37 30 34 30 62 32 39 62 64 37 39 35 30 37 65 38 30 37 31 64 30 64 32 36 38 37 31 34 36 63 37 38 66 61 31 61 30 62 37 36 32 35 65 36 65 63 62 66 65 36 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 5f 83 0f d9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10000.12493133545, - "thread": 140534738941696, + "relativeCreated": 10022.166967391968, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "3", "0", - "u'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'" + "u'201d6224fcd5ca1c5c10f23d5ca000620b0953e3290f2b3eba5a0f67cfef4126e9b5cc8b8e5b7040b29bd79507e8071d0d2687146c78fa1a0b7625e6ecbfe6f2'" ], - "asctime": "2020-12-21 22:32:59,306", - "created": 1608586379.306862, + "asctime": "2020-12-25 15:03:33,440", + "created": 1608905013.440687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 3, data_id: 0, data: \"u'201d6224fcd5ca1c5c10f23d5ca000620b0953e3290f2b3eba5a0f67cfef4126e9b5cc8b8e5b7040b29bd79507e8071d0d2687146c78fa1a0b7625e6ecbfe6f2'\"", "module": "__init__", - "msecs": 306.86211585998535, + "msecs": 440.6869411468506, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10000.601053237915, - "thread": 140534738941696, + "relativeCreated": 10022.503852844238, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_check_key__" ], - "asctime": "2020-12-21 22:32:59,307", - "created": 1608586379.307104, + "asctime": "2020-12-25 15:03:33,440", + "created": 1608905013.440863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_check_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 307.10411071777344, + "msecs": 440.86289405822754, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10000.843048095703, - "thread": 140534738941696, + "relativeCreated": 10022.679805755615, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:59,307", - "created": 1608586379.307331, + "asctime": "2020-12-25 15:03:33,441", + "created": 1608905013.441109, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SJP: Got incorrect key, sending negative authentification feedback", + "lineno": 476, + "message": "socket_protocol (server): Got incorrect key, sending negative authentification feedback", "module": "__init__", - "msecs": 307.3310852050781, + "msecs": 441.10894203186035, "msg": "%s Got incorrect key, sending negative authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10001.070022583008, - "thread": 140534738941696, + "relativeCreated": 10022.925853729248, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 4, 0, "False" ], - "asctime": "2020-12-21 22:32:59,307", - "created": 1608586379.307561, + "asctime": "2020-12-25 15:03:33,441", + "created": 1608905013.441278, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 307.56092071533203, + "msecs": 441.27798080444336, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10001.299858093262, - "thread": 140534738941696, + "relativeCreated": 10023.094892501831, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-12-21 22:32:59,308", - "created": 1608586379.308051, + "asctime": "2020-12-25 15:03:33,441", + "created": 1608905013.441588, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "module": "test_helpers", - "msecs": 308.05110931396484, + "msecs": 441.5879249572754, "msg": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10001.790046691895, - "thread": 140534738941696, + "relativeCreated": 10023.404836654663, + "thread": 140137890617088, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-12-21 22:32:59,458", - "created": 1608586379.458941, + "asctime": "2020-12-25 15:03:33,592", + "created": 1608905013.592494, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "module": "test_helpers", - "msecs": 458.9409828186035, + "msecs": 592.494010925293, "msg": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10152.679920196533, - "thread": 140534747334400, + "relativeCreated": 10174.31092262268, + "thread": 140137899009792, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "4", "0", "False" ], - "asctime": "2020-12-21 22:32:59,459", - "created": 1608586379.459161, + "asctime": "2020-12-25 15:03:33,592", + "created": 1608905013.592805, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 459.16104316711426, + "msecs": 592.8049087524414, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10152.899980545044, - "thread": 140534747334400, + "relativeCreated": 10174.62182044983, + "thread": 140137899009792, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_process_feedback__" ], - "asctime": "2020-12-21 22:32:59,459", - "created": 1608586379.459272, + "asctime": "2020-12-25 15:03:33,592", + "created": 1608905013.592962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 459.2719078063965, + "msecs": 592.9620265960693, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10153.010845184326, - "thread": 140534747334400, + "relativeCreated": 10174.778938293457, + "thread": 140137899009792, "threadName": "Thread-29" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:59,459", - "created": 1608586379.459355, + "asctime": "2020-12-25 15:03:33,593", + "created": 1608905013.593083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 455, - "message": "SJP: Got negative authentification feedback", + "lineno": 486, + "message": "socket_protocol (server): Got negative authentification feedback", "module": "__init__", - "msecs": 459.35511589050293, + "msecs": 593.0829048156738, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10153.094053268433, - "thread": 140534747334400, + "relativeCreated": 10174.899816513062, + "thread": 140137899009792, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:59,550", - "created": 1608586379.550235, + "asctime": "2020-12-25 15:03:33,684", + "created": 1608905013.684937, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 550.2350330352783, + "msecs": 684.9370002746582, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10243.973970413208, - "thread": 140534768363328, + "relativeCreated": 10266.753911972046, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:59,550", - "created": 1608586379.550509, + "asctime": "2020-12-25 15:03:33,685", + "created": 1608905013.685622, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 550.508975982666, + "msecs": 685.621976852417, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10244.247913360596, - "thread": 140534768363328, + "relativeCreated": 10267.438888549805, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:59,701", - "created": 1608586379.701693, + "asctime": "2020-12-25 15:03:33,836", + "created": 1608905013.836949, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 701.693058013916, + "msecs": 836.9491100311279, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10395.431995391846, - "thread": 140534747334400, + "relativeCreated": 10418.766021728516, + "thread": 140137899009792, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:59,702", - "created": 1608586379.702219, + "asctime": "2020-12-25 15:03:33,837", + "created": 1608905013.837431, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 702.2190093994141, + "msecs": 837.4309539794922, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10395.957946777344, - "thread": 140534747334400, + "relativeCreated": 10419.24786567688, + "thread": 140137899009792, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Unknown Client" ], - "asctime": "2020-12-21 22:32:59,702", - "created": 1608586379.702649, + "asctime": "2020-12-25 15:03:33,837", + "created": 1608905013.83772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 275, - "message": "SJP: Received message needs authentification: Unknown Client. Sending negative response.", + "lineno": 306, + "message": "socket_protocol (server): Received message needs authentification: Unknown Client. Sending negative response.", "module": "__init__", - "msecs": 702.6491165161133, + "msecs": 837.7199172973633, "msg": "%s Received message needs authentification: %s. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10396.388053894043, - "thread": 140534747334400, + "relativeCreated": 10419.536828994751, + "thread": 140137899009792, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", 2, 11, 45054, "None" ], - "asctime": "2020-12-21 22:32:59,702", - "created": 1608586379.702851, + "asctime": "2020-12-25 15:03:33,837", + "created": 1608905013.837925, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 702.8510570526123, + "msecs": 837.9249572753906, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10396.589994430542, - "thread": 140534747334400, + "relativeCreated": 10419.741868972778, + "thread": 140137899009792, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-12-21 22:32:59,703", - "created": 1608586379.703333, + "asctime": "2020-12-25 15:03:33,838", + "created": 1608905013.838403, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "module": "test_helpers", - "msecs": 703.3329010009766, + "msecs": 838.4029865264893, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10397.071838378906, - "thread": 140534747334400, + "relativeCreated": 10420.219898223877, + "thread": 140137899009792, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-12-21 22:32:59,854", - "created": 1608586379.854762, + "asctime": "2020-12-25 15:03:33,989", + "created": 1608905013.989658, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "module": "test_helpers", - "msecs": 854.762077331543, + "msecs": 989.6581172943115, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10548.501014709473, - "thread": 140534738941696, + "relativeCreated": 10571.4750289917, + "thread": 140137890617088, "threadName": "Thread-31" }, { "args": [ - "SJP:", + "socket_protocol (server):", "2", "11", "45054", "None" ], - "asctime": "2020-12-21 22:32:59,855", - "created": 1608586379.855211, + "asctime": "2020-12-25 15:03:33,990", + "created": 1608905013.990123, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 855.2110195159912, + "msecs": 990.1230335235596, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10548.94995689392, - "thread": 140534738941696, + "relativeCreated": 10571.939945220947, + "thread": 140137890617088, "threadName": "Thread-31" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Authentification required" ], - "asctime": "2020-12-21 22:32:59,855", - "created": 1608586379.855496, + "asctime": "2020-12-25 15:03:33,990", + "created": 1608905013.990417, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Authentification required", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Authentification required", "module": "__init__", - "msecs": 855.4959297180176, + "msecs": 990.4170036315918, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10549.234867095947, - "thread": 140534738941696, + "relativeCreated": 10572.23391532898, + "thread": 140137890617088, "threadName": "Thread-31" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:59,855", - "created": 1608586379.85571, + "asctime": "2020-12-25 15:03:33,990", + "created": 1608905013.990646, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 855.7100296020508, + "msecs": 990.6458854675293, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10549.44896697998, - "thread": 140534738941696, + "relativeCreated": 10572.462797164917, + "thread": 140137890617088, "threadName": "Thread-31" } ], - "msecs": 52.38795280456543, + "msecs": 187.96396255493164, "msg": "Authentification with different secrets for request and response instance (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.126890182495, - "thread": 140534768363328, + "relativeCreated": 10769.78087425232, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19667792320251465 + "time_consumption": 0.19731807708740234 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.052771, + "asctime": "2020-12-25 15:03:34,188", + "created": 1608905014.188913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2172,8 +2220,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.05262, + "asctime": "2020-12-25 15:03:34,188", + "created": 1608905014.188487, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2183,14 +2231,14 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 52.61993408203125, + "msecs": 188.48705291748047, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.358871459961, - "thread": 140534768363328, + "relativeCreated": 10770.303964614868, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2199,8 +2247,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.05269, + "asctime": "2020-12-25 15:03:34,188", + "created": 1608905014.188729, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2210,35 +2258,35 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 52.69002914428711, + "msecs": 188.72904777526855, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.428966522217, - "thread": 140534768363328, + "relativeCreated": 10770.545959472656, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 52.77109146118164, + "msecs": 188.91310691833496, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.510028839111, - "thread": 140534768363328, + "relativeCreated": 10770.730018615723, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 8.106231689453125e-05 + "time_consumption": 0.00018405914306640625 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.052973, + "asctime": "2020-12-25 15:03:34,189", + "created": 1608905014.189513, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2255,8 +2303,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.052864, + "asctime": "2020-12-25 15:03:34,189", + "created": 1608905014.18919, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2266,14 +2314,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 52.86407470703125, + "msecs": 189.18991088867188, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.603012084961, - "thread": 140534768363328, + "relativeCreated": 10771.00682258606, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2282,8 +2330,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,052", - "created": 1608586380.05292, + "asctime": "2020-12-25 15:03:34,189", + "created": 1608905014.189353, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2293,35 +2341,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 52.92010307312012, + "msecs": 189.35298919677734, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.65904045105, - "thread": 140534768363328, + "relativeCreated": 10771.169900894165, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 52.973031997680664, + "msecs": 189.5129680633545, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.71196937561, - "thread": 140534768363328, + "relativeCreated": 10771.329879760742, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 0.00015997886657714844 }, { "args": [ "2", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053168, + "asctime": "2020-12-25 15:03:34,190", + "created": 1608905014.190117, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2338,8 +2386,8 @@ "2", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053061, + "asctime": "2020-12-25 15:03:34,189", + "created": 1608905014.189798, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2349,14 +2397,14 @@ "lineno": 22, "message": "Result (Response Status (Authentification required) transfered via pure_json_protocol): 2 ()", "module": "test", - "msecs": 53.06100845336914, + "msecs": 189.79811668395996, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.799945831299, - "thread": 140534768363328, + "relativeCreated": 10771.615028381348, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2365,8 +2413,8 @@ "2", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053115, + "asctime": "2020-12-25 15:03:34,189", + "created": 1608905014.189959, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2376,35 +2424,35 @@ "lineno": 26, "message": "Expectation (Response Status (Authentification required) transfered via pure_json_protocol): result = 2 ()", "module": "test", - "msecs": 53.114891052246094, + "msecs": 189.95904922485352, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.853828430176, - "thread": 140534768363328, + "relativeCreated": 10771.775960922241, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 53.16805839538574, + "msecs": 190.11688232421875, "msg": "Response Status (Authentification required) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10746.906995773315, - "thread": 140534768363328, + "relativeCreated": 10771.933794021606, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 5.316734313964844e-05 + "time_consumption": 0.00015783309936523438 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053375, + "asctime": "2020-12-25 15:03:34,190", + "created": 1608905014.190696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2421,8 +2469,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053264, + "asctime": "2020-12-25 15:03:34,190", + "created": 1608905014.190378, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2432,14 +2480,14 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 53.26390266418457, + "msecs": 190.37795066833496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10747.002840042114, - "thread": 140534768363328, + "relativeCreated": 10772.194862365723, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2448,8 +2496,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,053", - "created": 1608586380.053317, + "asctime": "2020-12-25 15:03:34,190", + "created": 1608905014.190539, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2459,35 +2507,35 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 53.31707000732422, + "msecs": 190.53888320922852, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10747.056007385254, - "thread": 140534768363328, + "relativeCreated": 10772.355794906616, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 53.3750057220459, + "msecs": 190.69600105285645, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10747.113943099976, - "thread": 140534768363328, + "relativeCreated": 10772.512912750244, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 0.0001571178436279297 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,154", - "created": 1608586380.154158, + "asctime": "2020-12-25 15:03:34,292", + "created": 1608905014.292065, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2500,30 +2548,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:00,153", - "created": 1608586380.153691, + "asctime": "2020-12-25 15:03:34,291", + "created": 1608905014.291324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 153.69105339050293, + "msecs": 291.3239002227783, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10847.429990768433, - "thread": 140534768363328, + "relativeCreated": 10873.140811920166, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2532,8 +2580,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,153", - "created": 1608586380.153923, + "asctime": "2020-12-25 15:03:34,291", + "created": 1608905014.291683, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2543,14 +2591,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 153.92303466796875, + "msecs": 291.6829586029053, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10847.661972045898, - "thread": 140534768363328, + "relativeCreated": 10873.499870300293, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2559,8 +2607,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,154", - "created": 1608586380.15405, + "asctime": "2020-12-25 15:03:34,291", + "created": 1608905014.291884, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2570,35 +2618,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 154.05011177062988, + "msecs": 291.8839454650879, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10847.78904914856, - "thread": 140534768363328, + "relativeCreated": 10873.700857162476, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 154.1581153869629, + "msecs": 292.064905166626, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10847.897052764893, - "thread": 140534768363328, + "relativeCreated": 10873.881816864014, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00010800361633300781 + "time_consumption": 0.00018095970153808594 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,255", - "created": 1608586380.255072, + "asctime": "2020-12-25 15:03:34,393", + "created": 1608905014.393455, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2611,30 +2659,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:00,254", - "created": 1608586380.254627, + "asctime": "2020-12-25 15:03:34,392", + "created": 1608905014.392721, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 254.62698936462402, + "msecs": 392.72093772888184, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10948.365926742554, - "thread": 140534768363328, + "relativeCreated": 10974.53784942627, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2643,8 +2691,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,254", - "created": 1608586380.254854, + "asctime": "2020-12-25 15:03:34,393", + "created": 1608905014.393069, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2654,14 +2702,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 254.8539638519287, + "msecs": 393.0690288543701, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10948.592901229858, - "thread": 140534768363328, + "relativeCreated": 10974.885940551758, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -2670,8 +2718,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,254", - "created": 1608586380.254964, + "asctime": "2020-12-25 15:03:34,393", + "created": 1608905014.393269, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2681,61 +2729,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 254.96411323547363, + "msecs": 393.2690620422363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10948.703050613403, - "thread": 140534768363328, + "relativeCreated": 10975.085973739624, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 255.07211685180664, + "msecs": 393.45502853393555, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10948.811054229736, - "thread": 140534768363328, + "relativeCreated": 10975.271940231323, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00010800361633300781 + "time_consumption": 0.00018596649169921875 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 1.4090850353240967, - "time_finished": "2020-12-21 22:33:00,255", - "time_start": "2020-12-21 22:32:58,845" + "time_consumption": 1.414358139038086, + "time_finished": "2020-12-25 15:03:34,393", + "time_start": "2020-12-25 15:03:32,979" }, "socket_protocol.pure_json_protocol: Checksum corumpation while sending.": { "args": null, - "asctime": "2020-12-21 22:32:56,220", - "created": 1608586376.220752, + "asctime": "2020-12-25 15:03:30,348", + "created": 1608905010.34847, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 36, + "lineno": 37, "message": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "module": "__init__", "moduleLogger": [], - "msecs": 220.75200080871582, + "msecs": 348.46997261047363, "msg": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6914.4909381866455, + "relativeCreated": 6930.286884307861, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:56,524", - "created": 1608586376.524177, + "asctime": "2020-12-25 15:03:30,652", + "created": 1608905010.652152, "exc_info": null, "exc_text": null, "filename": "test_communication_errors.py", @@ -2748,224 +2796,224 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,221", - "created": 1608586376.221096, + "asctime": "2020-12-25 15:03:30,348", + "created": 1608905010.348825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 221.09603881835938, + "msecs": 348.82497787475586, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6914.834976196289, - "thread": 140534768363328, + "relativeCreated": 6930.641889572144, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,221", - "created": 1608586376.221474, + "asctime": "2020-12-25 15:03:30,349", + "created": 1608905010.34931, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 221.47393226623535, + "msecs": 349.30992126464844, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6915.212869644165, - "thread": 140534768363328, + "relativeCreated": 6931.126832962036, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,221", - "created": 1608586376.221696, + "asctime": "2020-12-25 15:03:30,349", + "created": 1608905010.34955, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 221.6958999633789, + "msecs": 349.5500087738037, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6915.434837341309, - "thread": 140534768363328, + "relativeCreated": 6931.366920471191, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,222", - "created": 1608586376.222016, + "asctime": "2020-12-25 15:03:30,349", + "created": 1608905010.349999, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 222.0160961151123, + "msecs": 349.99895095825195, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6915.755033493042, - "thread": 140534768363328, + "relativeCreated": 6931.81586265564, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:56,222", - "created": 1608586376.222273, + "asctime": "2020-12-25 15:03:30,350", + "created": 1608905010.350278, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 222.2731113433838, + "msecs": 350.2779006958008, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6916.0120487213135, - "thread": 140534768363328, + "relativeCreated": 6932.0948123931885, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:56,222", - "created": 1608586376.222794, + "asctime": "2020-12-25 15:03:30,350", + "created": 1608905010.350898, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 222.7940559387207, + "msecs": 350.89802742004395, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6916.53299331665, - "thread": 140534768363328, + "relativeCreated": 6932.714939117432, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:56,374", - "created": 1608586376.374005, + "asctime": "2020-12-25 15:03:30,502", + "created": 1608905010.502029, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25", "module": "test_helpers", - "msecs": 374.0050792694092, + "msecs": 502.0289421081543, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7067.744016647339, - "thread": 140534747334400, + "relativeCreated": 7083.845853805542, + "thread": 140137899009792, "threadName": "Thread-23" }, { "args": [ - "SJP:", + "socket_protocol (server):", "(79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25" ], - "asctime": "2020-12-21 22:32:56,374", - "created": 1608586376.374546, + "asctime": "2020-12-25 15:03:30,502", + "created": 1608905010.502326, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 256, - "message": "SJP: Received message has a wrong checksum and will be ignored: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25.", + "lineno": 287, + "message": "socket_protocol (server): Received message has a wrong checksum and will be ignored: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25.", "module": "__init__", - "msecs": 374.5460510253906, + "msecs": 502.32601165771484, "msg": "%s Received message has a wrong checksum and will be ignored: %s.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7068.28498840332, - "thread": 140534747334400, + "relativeCreated": 7084.1429233551025, + "thread": 140137899009792, "threadName": "Thread-23" } ], - "msecs": 524.177074432373, + "msecs": 652.1520614624023, "msg": "Send data with wrong checksum by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_communication_errors.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7217.916011810303, - "thread": 140534768363328, + "relativeCreated": 7233.96897315979, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.14963102340698242 + "time_consumption": 0.1498260498046875 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525582, + "asctime": "2020-12-25 15:03:30,652", + "created": 1608905010.652879, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2982,8 +3030,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525032, + "asctime": "2020-12-25 15:03:30,652", + "created": 1608905010.65256, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2993,14 +3041,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 525.0320434570312, + "msecs": 652.5599956512451, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7218.770980834961, - "thread": 140534768363328, + "relativeCreated": 7234.376907348633, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3009,8 +3057,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525279, + "asctime": "2020-12-25 15:03:30,652", + "created": 1608905010.652721, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3020,35 +3068,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 525.2790451049805, + "msecs": 652.7209281921387, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7219.01798248291, - "thread": 140534768363328, + "relativeCreated": 7234.537839889526, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 525.5820751190186, + "msecs": 652.878999710083, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7219.321012496948, - "thread": 140534768363328, + "relativeCreated": 7234.695911407471, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00030303001403808594 + "time_consumption": 0.00015807151794433594 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525837, + "asctime": "2020-12-25 15:03:30,653", + "created": 1608905010.653504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3065,8 +3113,8 @@ "False", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525723, + "asctime": "2020-12-25 15:03:30,653", + "created": 1608905010.653098, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3076,14 +3124,14 @@ "lineno": 22, "message": "Result (Callback executed variable): False ()", "module": "test", - "msecs": 525.7229804992676, + "msecs": 653.0981063842773, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7219.461917877197, - "thread": 140534768363328, + "relativeCreated": 7234.915018081665, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3092,8 +3140,8 @@ "False", "" ], - "asctime": "2020-12-21 22:32:56,525", - "created": 1608586376.525781, + "asctime": "2020-12-25 15:03:30,653", + "created": 1608905010.653231, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3103,35 +3151,35 @@ "lineno": 26, "message": "Expectation (Callback executed variable): result = False ()", "module": "test", - "msecs": 525.7809162139893, + "msecs": 653.2309055328369, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7219.519853591919, - "thread": 140534768363328, + "relativeCreated": 7235.047817230225, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 525.8369445800781, + "msecs": 653.5038948059082, "msg": "Callback executed variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7219.575881958008, - "thread": 140534768363328, + "relativeCreated": 7235.320806503296, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 0.00027298927307128906 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:56,626", - "created": 1608586376.626423, + "asctime": "2020-12-25 15:03:30,754", + "created": 1608905010.754886, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3144,30 +3192,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:56,626", - "created": 1608586376.626153, + "asctime": "2020-12-25 15:03:30,754", + "created": 1608905010.754089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 626.1529922485352, + "msecs": 754.0891170501709, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7319.891929626465, - "thread": 140534768363328, + "relativeCreated": 7335.906028747559, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3176,8 +3224,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,626", - "created": 1608586376.626297, + "asctime": "2020-12-25 15:03:30,754", + "created": 1608905010.754446, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3187,14 +3235,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 626.2969970703125, + "msecs": 754.4460296630859, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7320.035934448242, - "thread": 140534768363328, + "relativeCreated": 7336.262941360474, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3203,8 +3251,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,626", - "created": 1608586376.626357, + "asctime": "2020-12-25 15:03:30,754", + "created": 1608905010.754667, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3214,35 +3262,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 626.3570785522461, + "msecs": 754.6670436859131, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7320.096015930176, - "thread": 140534768363328, + "relativeCreated": 7336.483955383301, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 626.4228820800781, + "msecs": 754.8859119415283, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7320.161819458008, - "thread": 140534768363328, + "relativeCreated": 7336.702823638916, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 0.00021886825561523438 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727201, + "asctime": "2020-12-25 15:03:30,856", + "created": 1608905010.856511, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3255,30 +3303,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:56,726", - "created": 1608586376.72679, + "asctime": "2020-12-25 15:03:30,855", + "created": 1608905010.855537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 726.7899513244629, + "msecs": 855.536937713623, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7420.528888702393, - "thread": 140534768363328, + "relativeCreated": 7437.353849411011, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3287,8 +3335,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,726", - "created": 1608586376.726986, + "asctime": "2020-12-25 15:03:30,855", + "created": 1608905010.855892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3298,14 +3346,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 726.9859313964844, + "msecs": 855.8919429779053, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7420.724868774414, - "thread": 140534768363328, + "relativeCreated": 7437.708854675293, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3314,8 +3362,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727111, + "asctime": "2020-12-25 15:03:30,856", + "created": 1608905010.856115, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3325,39 +3373,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 727.1111011505127, + "msecs": 856.1151027679443, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7420.850038528442, - "thread": 140534768363328, + "relativeCreated": 7437.932014465332, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 727.200984954834, + "msecs": 856.511116027832, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7420.939922332764, - "thread": 140534768363328, + "relativeCreated": 7438.32802772522, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 8.988380432128906e-05 + "time_consumption": 0.0003960132598876953 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.5064489841461182, - "time_finished": "2020-12-21 22:32:56,727", - "time_start": "2020-12-21 22:32:56,220" + "time_consumption": 0.5080411434173584, + "time_finished": "2020-12-25 15:03:30,856", + "time_start": "2020-12-25 15:03:30,348" }, "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).": { "args": null, - "asctime": "2020-12-21 22:33:00,257", - "created": 1608586380.257965, + "asctime": "2020-12-25 15:03:34,396", + "created": 1608905014.396775, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3368,562 +3416,562 @@ "message": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "module": "__init__", "moduleLogger": [], - "msecs": 257.965087890625, + "msecs": 396.7750072479248, "msg": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.704025268555, + "relativeCreated": 10978.591918945312, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261393, + "asctime": "2020-12-25 15:03:34,403", + "created": 1608905014.403289, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", "funcName": "callback_rv_error", "levelname": "DEBUG", "levelno": 10, - "lineno": 144, + "lineno": 125, "message": "Send and received data with incompatible callback (pure_json_protocol).", "module": "test_handling_errors", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,258", - "created": 1608586380.258136, + "asctime": "2020-12-25 15:03:34,397", + "created": 1608905014.397101, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 258.1360340118408, + "msecs": 397.10092544555664, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10951.87497138977, - "thread": 140534768363328, + "relativeCreated": 10978.917837142944, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,258", - "created": 1608586380.258327, + "asctime": "2020-12-25 15:03:34,397", + "created": 1608905014.39752, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 258.3270072937012, + "msecs": 397.5200653076172, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.06594467163, - "thread": 140534768363328, + "relativeCreated": 10979.336977005005, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,258", - "created": 1608586380.258441, + "asctime": "2020-12-25 15:03:34,397", + "created": 1608905014.39779, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 258.4409713745117, + "msecs": 397.78995513916016, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.179908752441, - "thread": 140534768363328, + "relativeCreated": 10979.606866836548, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,258", - "created": 1608586380.258618, + "asctime": "2020-12-25 15:03:34,398", + "created": 1608905014.398185, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 258.6181163787842, + "msecs": 398.18501472473145, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.357053756714, - "thread": 140534768363328, + "relativeCreated": 10980.00192642212, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "None" ], - "asctime": "2020-12-21 22:33:00,258", - "created": 1608586380.258776, + "asctime": "2020-12-25 15:03:34,398", + "created": 1608905014.398484, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 258.7759494781494, + "msecs": 398.4839916229248, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.51488685608, - "thread": 140534768363328, + "relativeCreated": 10980.300903320312, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259048, + "asctime": "2020-12-25 15:03:34,398", + "created": 1608905014.398986, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "module": "test_helpers", - "msecs": 259.0479850769043, + "msecs": 398.9861011505127, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.786922454834, - "thread": 140534768363328, + "relativeCreated": 10980.8030128479, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259249, + "asctime": "2020-12-25 15:03:34,399", + "created": 1608905014.399361, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "module": "test_helpers", - "msecs": 259.2489719390869, + "msecs": 399.36089515686035, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10952.987909317017, - "thread": 140534768363328, + "relativeCreated": 10981.177806854248, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "None" ], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259413, + "asctime": "2020-12-25 15:03:34,399", + "created": 1608905014.399653, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 259.4130039215088, + "msecs": 399.65295791625977, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.151941299438, - "thread": 140534768363328, + "relativeCreated": 10981.469869613647, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_fail" ], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259523, + "asctime": "2020-12-25 15:03:34,399", + "created": 1608905014.399858, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method_fail to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 259.5229148864746, + "msecs": 399.8579978942871, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.261852264404, - "thread": 140534768363328, + "relativeCreated": 10981.674909591675, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "None" ], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259642, + "asctime": "2020-12-25 15:03:34,400", + "created": 1608905014.400082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 259.6418857574463, + "msecs": 400.0821113586426, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.380823135376, - "thread": 140534768363328, + "relativeCreated": 10981.89902305603, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,259", - "created": 1608586380.259892, + "asctime": "2020-12-25 15:03:34,400", + "created": 1608905014.400534, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "module": "test_helpers", - "msecs": 259.8919868469238, + "msecs": 400.53391456604004, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.630924224854, - "thread": 140534768363328, + "relativeCreated": 10982.350826263428, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260099, + "asctime": "2020-12-25 15:03:34,400", + "created": 1608905014.400903, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "module": "test_helpers", - "msecs": 260.098934173584, + "msecs": 400.90298652648926, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.837871551514, - "thread": 140534768363328, + "relativeCreated": 10982.719898223877, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "None" ], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260239, + "asctime": "2020-12-25 15:03:34,401", + "created": 1608905014.401173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 260.2388858795166, + "msecs": 401.1731147766113, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10953.977823257446, - "thread": 140534768363328, + "relativeCreated": 10982.990026473999, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260371, + "asctime": "2020-12-25 15:03:34,401", + "created": 1608905014.401404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 277, - "message": "SJP: Received message with no registered callback. Sending negative response.", + "lineno": 308, + "message": "socket_protocol (server): Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 260.37096977233887, + "msecs": 401.40390396118164, "msg": "%s Received message with no registered callback. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.109907150269, - "thread": 140534768363328, + "relativeCreated": 10983.22081565857, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 1, 11, 48879, "None" ], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260481, + "asctime": "2020-12-25 15:03:34,401", + "created": 1608905014.401612, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 260.4811191558838, + "msecs": 401.6120433807373, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.220056533813, - "thread": 140534768363328, + "relativeCreated": 10983.428955078125, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260739, + "asctime": "2020-12-25 15:03:34,402", + "created": 1608905014.402076, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "module": "test_helpers", - "msecs": 260.7390880584717, + "msecs": 402.07600593566895, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.478025436401, - "thread": 140534768363328, + "relativeCreated": 10983.892917633057, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:00,260", - "created": 1608586380.260939, + "asctime": "2020-12-25 15:03:34,402", + "created": 1608905014.402451, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "module": "test_helpers", - "msecs": 260.9388828277588, + "msecs": 402.4510383605957, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.677820205688, - "thread": 140534768363328, + "relativeCreated": 10984.267950057983, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "1", "11", "48879", "None" ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261077, + "asctime": "2020-12-25 15:03:34,402", + "created": 1608905014.402715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 261.0769271850586, + "msecs": 402.71496772766113, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.815864562988, - "thread": 140534768363328, + "relativeCreated": 10984.531879425049, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Request has no callback. Data buffered." ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261186, + "asctime": "2020-12-25 15:03:34,402", + "created": 1608905014.40292, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 261.185884475708, + "msecs": 402.9200077056885, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10954.924821853638, - "thread": 140534768363328, + "relativeCreated": 10984.736919403076, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_fail" ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.26128, + "asctime": "2020-12-25 15:03:34,403", + "created": 1608905014.403086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback response_data_method_fail to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 261.2800598144531, + "msecs": 403.08594703674316, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10955.018997192383, - "thread": 140534768363328, + "relativeCreated": 10984.90285873413, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 261.39307022094727, + "msecs": 403.2890796661377, "msg": "Send and received data with incompatible callback (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10955.132007598877, - "thread": 140534768363328, + "relativeCreated": 10985.105991363525, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00011301040649414062 + "time_consumption": 0.00020313262939453125 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261753, + "asctime": "2020-12-25 15:03:34,403", + "created": 1608905014.403935, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3940,8 +3988,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261568, + "asctime": "2020-12-25 15:03:34,403", + "created": 1608905014.403605, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3951,14 +3999,14 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 261.5680694580078, + "msecs": 403.60498428344727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10955.307006835938, - "thread": 140534768363328, + "relativeCreated": 10985.421895980835, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -3967,8 +4015,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,261", - "created": 1608586380.261659, + "asctime": "2020-12-25 15:03:34,403", + "created": 1608905014.403772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3978,35 +4026,35 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 261.6589069366455, + "msecs": 403.77211570739746, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10955.397844314575, - "thread": 140534768363328, + "relativeCreated": 10985.589027404785, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 261.7530822753906, + "msecs": 403.9349555969238, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 10955.49201965332, - "thread": 140534768363328, + "relativeCreated": 10985.751867294312, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.417533874511719e-05 + "time_consumption": 0.0001628398895263672 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,362", - "created": 1608586380.362601, + "asctime": "2020-12-25 15:03:34,504", + "created": 1608905014.504909, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4019,30 +4067,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:00,362", - "created": 1608586380.362144, + "asctime": "2020-12-25 15:03:34,504", + "created": 1608905014.504449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 362.14399337768555, + "msecs": 504.44889068603516, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11055.882930755615, - "thread": 140534768363328, + "relativeCreated": 11086.265802383423, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4051,8 +4099,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,362", - "created": 1608586380.362371, + "asctime": "2020-12-25 15:03:34,504", + "created": 1608905014.504677, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4062,14 +4110,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 362.37096786499023, + "msecs": 504.67705726623535, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11056.10990524292, - "thread": 140534768363328, + "relativeCreated": 11086.493968963623, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4078,8 +4126,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,362", - "created": 1608586380.362481, + "asctime": "2020-12-25 15:03:34,504", + "created": 1608905014.504801, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4089,35 +4137,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 362.48111724853516, + "msecs": 504.80103492736816, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11056.220054626465, - "thread": 140534768363328, + "relativeCreated": 11086.617946624756, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 362.60104179382324, + "msecs": 504.9090385437012, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11056.339979171753, - "thread": 140534768363328, + "relativeCreated": 11086.725950241089, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00011992454528808594 + "time_consumption": 0.00010800361633300781 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,463", - "created": 1608586380.463856, + "asctime": "2020-12-25 15:03:34,606", + "created": 1608905014.606162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4130,30 +4178,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:00,463", - "created": 1608586380.463125, + "asctime": "2020-12-25 15:03:34,605", + "created": 1608905014.605439, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 463.12499046325684, + "msecs": 605.4389476776123, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11156.863927841187, - "thread": 140534768363328, + "relativeCreated": 11187.255859375, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4162,8 +4210,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,463", - "created": 1608586380.463486, + "asctime": "2020-12-25 15:03:34,605", + "created": 1608905014.605775, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4173,14 +4221,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 463.4859561920166, + "msecs": 605.7751178741455, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11157.224893569946, - "thread": 140534768363328, + "relativeCreated": 11187.592029571533, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4189,8 +4237,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,463", - "created": 1608586380.463677, + "asctime": "2020-12-25 15:03:34,605", + "created": 1608905014.605977, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4200,35 +4248,35 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 463.67692947387695, + "msecs": 605.9770584106445, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11157.415866851807, - "thread": 140534768363328, + "relativeCreated": 11187.793970108032, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 463.8559818267822, + "msecs": 606.1620712280273, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11157.594919204712, - "thread": 140534768363328, + "relativeCreated": 11187.978982925415, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017905235290527344 + "time_consumption": 0.0001850128173828125 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:00,464", - "created": 1608586380.464484, + "asctime": "2020-12-25 15:03:34,606", + "created": 1608905014.606738, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4245,8 +4293,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,464", - "created": 1608586380.464172, + "asctime": "2020-12-25 15:03:34,606", + "created": 1608905014.606427, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4256,14 +4304,14 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 464.1718864440918, + "msecs": 606.4269542694092, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11157.910823822021, - "thread": 140534768363328, + "relativeCreated": 11188.243865966797, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4272,8 +4320,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:00,464", - "created": 1608586380.464331, + "asctime": "2020-12-25 15:03:34,606", + "created": 1608905014.606576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4283,35 +4331,35 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 464.33091163635254, + "msecs": 606.5759658813477, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11158.069849014282, - "thread": 140534768363328, + "relativeCreated": 11188.392877578735, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 464.48397636413574, + "msecs": 606.7380905151367, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11158.222913742065, - "thread": 140534768363328, + "relativeCreated": 11188.555002212524, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.0001621246337890625 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,565", - "created": 1608586380.565509, + "asctime": "2020-12-25 15:03:34,707", + "created": 1608905014.707706, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4324,30 +4372,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:33:00,564", - "created": 1608586380.56498, + "asctime": "2020-12-25 15:03:34,707", + "created": 1608905014.707262, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 564.9800300598145, + "msecs": 707.2620391845703, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11258.718967437744, - "thread": 140534768363328, + "relativeCreated": 11289.078950881958, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4356,8 +4404,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,565", - "created": 1608586380.565227, + "asctime": "2020-12-25 15:03:34,707", + "created": 1608905014.707485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4367,14 +4415,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 565.2270317077637, + "msecs": 707.4849605560303, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11258.965969085693, - "thread": 140534768363328, + "relativeCreated": 11289.301872253418, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4383,8 +4431,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,565", - "created": 1608586380.565385, + "asctime": "2020-12-25 15:03:34,707", + "created": 1608905014.707599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4394,35 +4442,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 565.385103225708, + "msecs": 707.5989246368408, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11259.124040603638, - "thread": 140534768363328, + "relativeCreated": 11289.415836334229, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 565.5090808868408, + "msecs": 707.7059745788574, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11259.24801826477, - "thread": 140534768363328, + "relativeCreated": 11289.522886276245, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001239776611328125 + "time_consumption": 0.00010704994201660156 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:00,666", - "created": 1608586380.666766, + "asctime": "2020-12-25 15:03:34,808", + "created": 1608905014.808923, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4435,30 +4483,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:33:00,666", - "created": 1608586380.666028, + "asctime": "2020-12-25 15:03:34,808", + "created": 1608905014.808241, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 666.0280227661133, + "msecs": 808.2408905029297, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11359.766960144043, - "thread": 140534768363328, + "relativeCreated": 11390.057802200317, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4467,8 +4515,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,666", - "created": 1608586380.666389, + "asctime": "2020-12-25 15:03:34,808", + "created": 1608905014.808558, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4478,14 +4526,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 666.388988494873, + "msecs": 808.5579872131348, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11360.127925872803, - "thread": 140534768363328, + "relativeCreated": 11390.374898910522, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -4494,8 +4542,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:00,666", - "created": 1608586380.666584, + "asctime": "2020-12-25 15:03:34,808", + "created": 1608905014.808757, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4505,61 +4553,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 666.5840148925781, + "msecs": 808.7570667266846, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11360.322952270508, - "thread": 140534768363328, + "relativeCreated": 11390.573978424072, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 666.7659282684326, + "msecs": 808.9230060577393, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 11360.504865646362, - "thread": 140534768363328, + "relativeCreated": 11390.739917755127, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001819133758544922 + "time_consumption": 0.0001659393310546875 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.4088008403778076, - "time_finished": "2020-12-21 22:33:00,666", - "time_start": "2020-12-21 22:33:00,257" + "time_consumption": 0.41214799880981445, + "time_finished": "2020-12-25 15:03:34,808", + "time_start": "2020-12-25 15:03:34,396" }, "socket_protocol.pure_json_protocol: No Callback at response instance for the request.": { "args": null, - "asctime": "2020-12-21 22:32:58,136", - "created": 1608586378.13655, + "asctime": "2020-12-25 15:03:32,269", + "created": 1608905012.269091, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 41, + "lineno": 42, "message": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "module": "__init__", "moduleLogger": [], - "msecs": 136.5499496459961, + "msecs": 269.0908908843994, "msg": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8830.288887023926, + "relativeCreated": 8850.907802581787, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:58,640", - "created": 1608586378.640819, + "asctime": "2020-12-25 15:03:32,773", + "created": 1608905012.773656, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -4572,407 +4620,407 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,136", - "created": 1608586378.13694, + "asctime": "2020-12-25 15:03:32,269", + "created": 1608905012.269429, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 136.94000244140625, + "msecs": 269.42896842956543, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8830.678939819336, - "thread": 140534768363328, + "relativeCreated": 8851.245880126953, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,137", - "created": 1608586378.137322, + "asctime": "2020-12-25 15:03:32,269", + "created": 1608905012.269947, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 137.32194900512695, + "msecs": 269.9470520019531, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8831.060886383057, - "thread": 140534768363328, + "relativeCreated": 8851.76396369934, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,137", - "created": 1608586378.137546, + "asctime": "2020-12-25 15:03:32,270", + "created": 1608905012.270187, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 137.54606246948242, + "msecs": 270.1869010925293, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8831.284999847412, - "thread": 140534768363328, + "relativeCreated": 8852.003812789917, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,137", - "created": 1608586378.137873, + "asctime": "2020-12-25 15:03:32,270", + "created": 1608905012.270614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 137.87293434143066, + "msecs": 270.6139087677002, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8831.61187171936, - "thread": 140534768363328, + "relativeCreated": 8852.430820465088, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:58,138", - "created": 1608586378.138079, + "asctime": "2020-12-25 15:03:32,270", + "created": 1608905012.270848, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 138.0789279937744, + "msecs": 270.84803581237793, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8831.817865371704, - "thread": 140534768363328, + "relativeCreated": 8852.664947509766, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:58,138", - "created": 1608586378.138627, + "asctime": "2020-12-25 15:03:32,271", + "created": 1608905012.271394, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 138.6270523071289, + "msecs": 271.3940143585205, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8832.365989685059, - "thread": 140534768363328, + "relativeCreated": 8853.210926055908, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:58,289", - "created": 1608586378.289846, + "asctime": "2020-12-25 15:03:32,422", + "created": 1608905012.422864, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 289.84594345092773, + "msecs": 422.8639602661133, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8983.584880828857, - "thread": 140534747334400, + "relativeCreated": 9004.680871963501, + "thread": 140137899009792, "threadName": "Thread-24" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:58,290", - "created": 1608586378.290335, + "asctime": "2020-12-25 15:03:32,423", + "created": 1608905012.423324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 290.33493995666504, + "msecs": 423.3241081237793, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8984.073877334595, - "thread": 140534747334400, + "relativeCreated": 9005.141019821167, + "thread": 140137899009792, "threadName": "Thread-24" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,290", - "created": 1608586378.290654, + "asctime": "2020-12-25 15:03:32,423", + "created": 1608905012.423605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 277, - "message": "SJP: Received message with no registered callback. Sending negative response.", + "lineno": 308, + "message": "socket_protocol (server): Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 290.65394401550293, + "msecs": 423.60496520996094, "msg": "%s Received message with no registered callback. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8984.392881393433, - "thread": 140534747334400, + "relativeCreated": 9005.421876907349, + "thread": 140137899009792, "threadName": "Thread-24" }, { "args": [ - "SJP:", + "socket_protocol (server):", 1, 11, 45054, "None" ], - "asctime": "2020-12-21 22:32:58,290", - "created": 1608586378.290912, + "asctime": "2020-12-25 15:03:32,423", + "created": 1608905012.423871, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 290.9119129180908, + "msecs": 423.8710403442383, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8984.65085029602, - "thread": 140534747334400, + "relativeCreated": 9005.687952041626, + "thread": 140137899009792, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-12-21 22:32:58,291", - "created": 1608586378.291406, + "asctime": "2020-12-25 15:03:32,424", + "created": 1608905012.424366, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "module": "test_helpers", - "msecs": 291.40591621398926, + "msecs": 424.3659973144531, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8985.144853591919, - "thread": 140534747334400, + "relativeCreated": 9006.18290901184, + "thread": 140137899009792, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-12-21 22:32:58,442", - "created": 1608586378.442577, + "asctime": "2020-12-25 15:03:32,575", + "created": 1608905012.575659, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "module": "test_helpers", - "msecs": 442.5768852233887, + "msecs": 575.6590366363525, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9136.315822601318, - "thread": 140534738941696, + "relativeCreated": 9157.47594833374, + "thread": 140137890617088, "threadName": "Thread-25" }, { "args": [ - "SJP:", + "socket_protocol (server):", "1", "11", "45054", "None" ], - "asctime": "2020-12-21 22:32:58,443", - "created": 1608586378.44304, + "asctime": "2020-12-25 15:03:32,576", + "created": 1608905012.576153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 443.0398941040039, + "msecs": 576.153039932251, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9136.778831481934, - "thread": 140534738941696, + "relativeCreated": 9157.969951629639, + "thread": 140137890617088, "threadName": "Thread-25" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Request has no callback. Data buffered." ], - "asctime": "2020-12-21 22:32:58,443", - "created": 1608586378.443363, + "asctime": "2020-12-25 15:03:32,576", + "created": 1608905012.576449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 443.3629512786865, + "msecs": 576.448917388916, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9137.101888656616, - "thread": 140534738941696, + "relativeCreated": 9158.265829086304, + "thread": 140137890617088, "threadName": "Thread-25" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:58,443", - "created": 1608586378.443576, + "asctime": "2020-12-25 15:03:32,576", + "created": 1608905012.576697, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 443.5760974884033, + "msecs": 576.6971111297607, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9137.315034866333, - "thread": 140534738941696, + "relativeCreated": 9158.514022827148, + "thread": 140137890617088, "threadName": "Thread-25" } ], - "msecs": 640.8190727233887, + "msecs": 773.655891418457, "msg": "Send data, but no callback registered (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9334.558010101318, - "thread": 140534768363328, + "relativeCreated": 9355.472803115845, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19724297523498535 + "time_consumption": 0.1969587802886963 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:58,641", - "created": 1608586378.641639, + "asctime": "2020-12-25 15:03:32,774", + "created": 1608905012.774564, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4989,8 +5037,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:58,641", - "created": 1608586378.641295, + "asctime": "2020-12-25 15:03:32,774", + "created": 1608905012.774172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5000,14 +5048,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 641.2949562072754, + "msecs": 774.1720676422119, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.033893585205, - "thread": 140534768363328, + "relativeCreated": 9355.9889793396, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5016,8 +5064,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:58,641", - "created": 1608586378.641471, + "asctime": "2020-12-25 15:03:32,774", + "created": 1608905012.774379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5027,35 +5075,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 641.4709091186523, + "msecs": 774.3790149688721, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.209846496582, - "thread": 140534768363328, + "relativeCreated": 9356.19592666626, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 641.638994216919, + "msecs": 774.5640277862549, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.377931594849, - "thread": 140534768363328, + "relativeCreated": 9356.380939483643, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156 + "time_consumption": 0.0001850128173828125 }, { "args": [ "1", "" ], - "asctime": "2020-12-21 22:32:58,642", - "created": 1608586378.642172, + "asctime": "2020-12-25 15:03:32,775", + "created": 1608905012.775207, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5072,8 +5120,8 @@ "1", "" ], - "asctime": "2020-12-21 22:32:58,641", - "created": 1608586378.641889, + "asctime": "2020-12-25 15:03:32,774", + "created": 1608905012.774853, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5083,14 +5131,14 @@ "lineno": 22, "message": "Result (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): 1 ()", "module": "test", - "msecs": 641.8890953063965, + "msecs": 774.852991104126, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.628032684326, - "thread": 140534768363328, + "relativeCreated": 9356.669902801514, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5099,8 +5147,8 @@ "1", "" ], - "asctime": "2020-12-21 22:32:58,642", - "created": 1608586378.642032, + "asctime": "2020-12-25 15:03:32,775", + "created": 1608905012.775023, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5110,35 +5158,35 @@ "lineno": 26, "message": "Expectation (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): result = 1 ()", "module": "test", - "msecs": 642.0319080352783, + "msecs": 775.0229835510254, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.770845413208, - "thread": 140534768363328, + "relativeCreated": 9356.839895248413, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 642.17209815979, + "msecs": 775.2070426940918, "msg": "Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9335.91103553772, - "thread": 140534768363328, + "relativeCreated": 9357.02395439148, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00014019012451171875 + "time_consumption": 0.00018405914306640625 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:58,642", - "created": 1608586378.642671, + "asctime": "2020-12-25 15:03:32,775", + "created": 1608905012.775796, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5155,8 +5203,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,642", - "created": 1608586378.6424, + "asctime": "2020-12-25 15:03:32,775", + "created": 1608905012.775464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5166,14 +5214,14 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 642.4000263214111, + "msecs": 775.4640579223633, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9336.13896369934, - "thread": 140534768363328, + "relativeCreated": 9357.280969619751, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5182,8 +5230,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,642", - "created": 1608586378.642536, + "asctime": "2020-12-25 15:03:32,775", + "created": 1608905012.775625, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5193,35 +5241,35 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 642.535924911499, + "msecs": 775.6249904632568, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9336.274862289429, - "thread": 140534768363328, + "relativeCreated": 9357.441902160645, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 642.6711082458496, + "msecs": 775.7959365844727, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9336.41004562378, - "thread": 140534768363328, + "relativeCreated": 9357.61284828186, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00013518333435058594 + "time_consumption": 0.0001709461212158203 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:58,743", - "created": 1608586378.743909, + "asctime": "2020-12-25 15:03:32,877", + "created": 1608905012.8771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5234,30 +5282,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:58,743", - "created": 1608586378.743146, + "asctime": "2020-12-25 15:03:32,876", + "created": 1608905012.876335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 743.1459426879883, + "msecs": 876.3349056243896, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9436.884880065918, - "thread": 140534768363328, + "relativeCreated": 9458.151817321777, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5266,8 +5314,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,743", - "created": 1608586378.743499, + "asctime": "2020-12-25 15:03:32,876", + "created": 1608905012.876692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5277,14 +5325,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 743.4990406036377, + "msecs": 876.6920566558838, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9437.237977981567, - "thread": 140534768363328, + "relativeCreated": 9458.508968353271, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5293,8 +5341,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,743", - "created": 1608586378.743693, + "asctime": "2020-12-25 15:03:32,876", + "created": 1608905012.876914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5304,35 +5352,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 743.6931133270264, + "msecs": 876.9140243530273, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9437.432050704956, - "thread": 140534768363328, + "relativeCreated": 9458.730936050415, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 743.9088821411133, + "msecs": 877.0999908447266, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9437.647819519043, - "thread": 140534768363328, + "relativeCreated": 9458.916902542114, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00021576881408691406 + "time_consumption": 0.00018596649169921875 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:58,845", - "created": 1608586378.845366, + "asctime": "2020-12-25 15:03:32,978", + "created": 1608905012.978551, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5345,30 +5393,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:58,844", - "created": 1608586378.844539, + "asctime": "2020-12-25 15:03:32,977", + "created": 1608905012.977772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 844.5389270782471, + "msecs": 977.7719974517822, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9538.277864456177, - "thread": 140534768363328, + "relativeCreated": 9559.58890914917, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5377,8 +5425,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,844", - "created": 1608586378.84497, + "asctime": "2020-12-25 15:03:32,978", + "created": 1608905012.978149, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5388,14 +5436,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 844.9699878692627, + "msecs": 978.1489372253418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9538.708925247192, - "thread": 140534768363328, + "relativeCreated": 9559.96584892273, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -5404,8 +5452,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:58,845", - "created": 1608586378.845178, + "asctime": "2020-12-25 15:03:32,978", + "created": 1608905012.978352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5415,249 +5463,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 845.1778888702393, + "msecs": 978.3520698547363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9538.916826248169, - "thread": 140534768363328, + "relativeCreated": 9560.168981552124, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 845.3660011291504, + "msecs": 978.550910949707, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 9539.10493850708, - "thread": 140534768363328, + "relativeCreated": 9560.367822647095, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001881122589111328 + "time_consumption": 0.00019884109497070312 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7088160514831543, - "time_finished": "2020-12-21 22:32:58,845", - "time_start": "2020-12-21 22:32:58,136" - }, - "socket_protocol.pure_json_protocol: Register a Callback which is already defined.": { - "args": null, - "asctime": "2020-12-21 22:33:00,255", - "created": 1608586380.255399, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 43, - "message": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", - "module": "__init__", - "moduleLogger": [], - "msecs": 255.39898872375488, - "msg": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", - "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.137926101685, - "testcaseLogger": [ - { - "args": [], - "asctime": "2020-12-21 22:33:00,255", - "created": 1608586380.255975, - "exc_info": null, - "exc_text": null, - "filename": "test_handling_errors.py", - "funcName": "callback_conf_error", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 94, - "message": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", - "module": "test_handling_errors", - "moduleLogger": [ - { - "args": [ - "SJP:" - ], - "asctime": "2020-12-21 22:33:00,255", - "created": 1608586380.255582, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 255.58209419250488, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.321031570435, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "SJP:" - ], - "asctime": "2020-12-21 22:33:00,255", - "created": 1608586380.255808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "module": "__init__", - "msecs": 255.80811500549316, - "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.547052383423, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 255.97500801086426, - "msg": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", - "name": "__tLogger__", - "pathname": "src/tests/test_handling_errors.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.713945388794, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.00016689300537109375 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.256322, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Exception (RegistrationError) detection variable is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Exception (RegistrationError) detection variable", - "True", - "" - ], - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.256134, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Exception (RegistrationError) detection variable): True ()", - "module": "test", - "msecs": 256.134033203125, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.872970581055, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Exception (RegistrationError) detection variable", - "True", - "" - ], - "asctime": "2020-12-21 22:33:00,256", - "created": 1608586380.25623, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Exception (RegistrationError) detection variable): result = True ()", - "module": "test", - "msecs": 256.23011589050293, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10949.969053268433, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 256.32190704345703, - "msg": "Exception (RegistrationError) detection variable is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 10950.060844421387, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 9.179115295410156e-05 - } - ], - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.0009229183197021484, - "time_finished": "2020-12-21 22:33:00,256", - "time_start": "2020-12-21 22:33:00,255" + "time_consumption": 0.7094600200653076, + "time_finished": "2020-12-25 15:03:32,978", + "time_start": "2020-12-25 15:03:32,269" }, "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.": { "args": null, - "asctime": "2020-12-21 22:32:54,298", - "created": 1608586374.298348, + "asctime": "2020-12-25 15:03:28,422", + "created": 1608905008.422639, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 31, + "lineno": 32, "message": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 298.34794998168945, + "msecs": 422.6388931274414, "msg": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4992.086887359619, + "relativeCreated": 5004.455804824829, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:54,802", - "created": 1608586374.802384, + "asctime": "2020-12-25 15:03:28,927", + "created": 1608905008.927089, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -5670,408 +5530,408 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:54,298", - "created": 1608586374.298689, + "asctime": "2020-12-25 15:03:28,423", + "created": 1608905008.423, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 298.6888885498047, + "msecs": 423.0000972747803, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4992.427825927734, - "thread": 140534768363328, + "relativeCreated": 5004.817008972168, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:54,299", - "created": 1608586374.299083, + "asctime": "2020-12-25 15:03:28,423", + "created": 1608905008.423461, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 299.08299446105957, + "msecs": 423.4609603881836, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4992.821931838989, - "thread": 140534768363328, + "relativeCreated": 5005.277872085571, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:54,299", - "created": 1608586374.299315, + "asctime": "2020-12-25 15:03:28,423", + "created": 1608905008.423695, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 299.3149757385254, + "msecs": 423.6950874328613, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4993.053913116455, - "thread": 140534768363328, + "relativeCreated": 5005.511999130249, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:54,299", - "created": 1608586374.299633, + "asctime": "2020-12-25 15:03:28,424", + "created": 1608905008.424098, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 299.6330261230469, + "msecs": 424.09801483154297, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4993.371963500977, - "thread": 140534768363328, + "relativeCreated": 5005.914926528931, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:54,299", - "created": 1608586374.299925, + "asctime": "2020-12-25 15:03:28,424", + "created": 1608905008.4244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 299.9250888824463, + "msecs": 424.40009117126465, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4993.664026260376, - "thread": 140534768363328, + "relativeCreated": 5006.217002868652, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:54,300", - "created": 1608586374.300477, + "asctime": "2020-12-25 15:03:28,424", + "created": 1608905008.424941, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 300.4770278930664, + "msecs": 424.9410629272461, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4994.215965270996, - "thread": 140534768363328, + "relativeCreated": 5006.757974624634, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:54,451", - "created": 1608586374.451793, + "asctime": "2020-12-25 15:03:28,576", + "created": 1608905008.57619, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 451.79295539855957, + "msecs": 576.1899948120117, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5145.531892776489, - "thread": 140534738941696, + "relativeCreated": 5158.006906509399, + "thread": 140137890617088, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:54,452", - "created": 1608586374.452346, + "asctime": "2020-12-25 15:03:28,576", + "created": 1608905008.576659, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 452.3460865020752, + "msecs": 576.6589641571045, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5146.085023880005, - "thread": 140534738941696, + "relativeCreated": 5158.475875854492, + "thread": 140137890617088, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_2" ], - "asctime": "2020-12-21 22:32:54,452", - "created": 1608586374.452586, + "asctime": "2020-12-25 15:03:28,576", + "created": 1608905008.576904, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method_2 to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method_2 to process received data", "module": "__init__", - "msecs": 452.58593559265137, + "msecs": 576.9040584564209, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5146.324872970581, - "thread": 140534738941696, + "relativeCreated": 5158.720970153809, + "thread": 140137890617088, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:54,452", - "created": 1608586374.452831, + "asctime": "2020-12-25 15:03:28,577", + "created": 1608905008.577121, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 452.8310298919678, + "msecs": 577.1210193634033, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5146.5699672698975, - "thread": 140534738941696, + "relativeCreated": 5158.937931060791, + "thread": 140137890617088, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-12-21 22:32:54,453", - "created": 1608586374.45334, + "asctime": "2020-12-25 15:03:28,577", + "created": 1608905008.577617, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 453.3400535583496, + "msecs": 577.6169300079346, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5147.078990936279, - "thread": 140534738941696, + "relativeCreated": 5159.433841705322, + "thread": 140137890617088, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-12-21 22:32:54,607", - "created": 1608586374.607388, + "asctime": "2020-12-25 15:03:28,728", + "created": 1608905008.728882, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 607.3880195617676, + "msecs": 728.8820743560791, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5301.126956939697, - "thread": 140534747334400, + "relativeCreated": 5310.698986053467, + "thread": 140137899009792, "threadName": "Thread-18" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:54,607", - "created": 1608586374.607714, + "asctime": "2020-12-25 15:03:28,729", + "created": 1608905008.729337, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 607.7139377593994, + "msecs": 729.3369770050049, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5301.452875137329, - "thread": 140534747334400, + "relativeCreated": 5311.153888702393, + "thread": 140137899009792, "threadName": "Thread-18" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:54,607", - "created": 1608586374.607836, + "asctime": "2020-12-25 15:03:28,729", + "created": 1608905008.729662, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 607.8360080718994, + "msecs": 729.6619415283203, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5301.574945449829, - "thread": 140534747334400, + "relativeCreated": 5311.478853225708, + "thread": 140137899009792, "threadName": "Thread-18" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:54,607", - "created": 1608586374.607913, + "asctime": "2020-12-25 15:03:28,729", + "created": 1608905008.729898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 607.9130172729492, + "msecs": 729.8979759216309, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5301.651954650879, - "thread": 140534747334400, + "relativeCreated": 5311.714887619019, + "thread": 140137899009792, "threadName": "Thread-18" } ], - "msecs": 802.3838996887207, + "msecs": 927.0889759063721, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5496.12283706665, - "thread": 140534768363328, + "relativeCreated": 5508.90588760376, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19447088241577148 + "time_consumption": 0.1971909999847412 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803502, + "asctime": "2020-12-25 15:03:28,928", + "created": 1608905008.928026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6088,8 +5948,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803013, + "asctime": "2020-12-25 15:03:28,927", + "created": 1608905008.927611, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6099,14 +5959,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 803.0130863189697, + "msecs": 927.6111125946045, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5496.752023696899, - "thread": 140534768363328, + "relativeCreated": 5509.428024291992, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6115,8 +5975,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803247, + "asctime": "2020-12-25 15:03:28,927", + "created": 1608905008.927837, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6126,35 +5986,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 803.2469749450684, + "msecs": 927.8368949890137, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5496.985912322998, - "thread": 140534768363328, + "relativeCreated": 5509.653806686401, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 803.502082824707, + "msecs": 928.0259609222412, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.241020202637, - "thread": 140534768363328, + "relativeCreated": 5509.842872619629, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0002551078796386719 + "time_consumption": 0.00018906593322753906 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803914, + "asctime": "2020-12-25 15:03:28,928", + "created": 1608905008.928656, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6171,8 +6031,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803707, + "asctime": "2020-12-25 15:03:28,928", + "created": 1608905008.928329, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6182,14 +6042,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 803.7068843841553, + "msecs": 928.3289909362793, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.445821762085, - "thread": 140534768363328, + "relativeCreated": 5510.145902633667, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6198,8 +6058,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:54,803", - "created": 1608586374.803812, + "asctime": "2020-12-25 15:03:28,928", + "created": 1608905008.928497, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6209,35 +6069,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 803.8120269775391, + "msecs": 928.4970760345459, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.550964355469, - "thread": 140534768363328, + "relativeCreated": 5510.313987731934, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 803.9140701293945, + "msecs": 928.6561012268066, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.653007507324, - "thread": 140534768363328, + "relativeCreated": 5510.473012924194, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00010204315185546875 + "time_consumption": 0.0001590251922607422 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804308, + "asctime": "2020-12-25 15:03:28,929", + "created": 1608905008.92931, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6254,8 +6114,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804079, + "asctime": "2020-12-25 15:03:28,928", + "created": 1608905008.928935, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6265,14 +6125,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 804.0790557861328, + "msecs": 928.9350509643555, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.8179931640625, - "thread": 140534768363328, + "relativeCreated": 5510.751962661743, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6281,8 +6141,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804182, + "asctime": "2020-12-25 15:03:28,929", + "created": 1608905008.929107, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6292,35 +6152,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 804.1820526123047, + "msecs": 929.1069507598877, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5497.920989990234, - "thread": 140534768363328, + "relativeCreated": 5510.923862457275, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 804.3079376220703, + "msecs": 929.3100833892822, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.046875, - "thread": 140534768363328, + "relativeCreated": 5511.12699508667, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.000125885009765625 + "time_consumption": 0.00020313262939453125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.80467, + "asctime": "2020-12-25 15:03:28,929", + "created": 1608905008.929946, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6337,8 +6197,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804477, + "asctime": "2020-12-25 15:03:28,929", + "created": 1608905008.929584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6348,14 +6208,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 804.4769763946533, + "msecs": 929.5840263366699, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.215913772583, - "thread": 140534768363328, + "relativeCreated": 5511.400938034058, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6364,8 +6224,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804573, + "asctime": "2020-12-25 15:03:28,929", + "created": 1608905008.929785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6375,35 +6235,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 804.5730590820312, + "msecs": 929.7850131988525, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.311996459961, - "thread": 140534768363328, + "relativeCreated": 5511.60192489624, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 804.6700954437256, + "msecs": 929.9459457397461, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.409032821655, - "thread": 140534768363328, + "relativeCreated": 5511.762857437134, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.703636169433594e-05 + "time_consumption": 0.0001609325408935547 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:54,805", - "created": 1608586374.805125, + "asctime": "2020-12-25 15:03:28,930", + "created": 1608905008.930679, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6420,8 +6280,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804879, + "asctime": "2020-12-25 15:03:28,930", + "created": 1608905008.930246, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6431,14 +6291,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 804.8789501190186, + "msecs": 930.246114730835, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.617887496948, - "thread": 140534768363328, + "relativeCreated": 5512.063026428223, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6447,8 +6307,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:54,804", - "created": 1608586374.804988, + "asctime": "2020-12-25 15:03:28,930", + "created": 1608905008.930426, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6458,35 +6318,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 804.987907409668, + "msecs": 930.4258823394775, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.726844787598, - "thread": 140534768363328, + "relativeCreated": 5512.242794036865, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 805.1249980926514, + "msecs": 930.6790828704834, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5498.863935470581, - "thread": 140534768363328, + "relativeCreated": 5512.495994567871, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 + "time_consumption": 0.0002532005310058594 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:54,905", - "created": 1608586374.905841, + "asctime": "2020-12-25 15:03:29,032", + "created": 1608905009.032088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6499,30 +6359,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:54,905", - "created": 1608586374.905478, + "asctime": "2020-12-25 15:03:29,031", + "created": 1608905009.031351, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 905.4780006408691, + "msecs": 31.351089477539062, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5599.216938018799, - "thread": 140534768363328, + "relativeCreated": 5613.168001174927, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6531,8 +6391,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,905", - "created": 1608586374.905662, + "asctime": "2020-12-25 15:03:29,031", + "created": 1608905009.031705, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6542,14 +6402,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 905.6620597839355, + "msecs": 31.70490264892578, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5599.400997161865, - "thread": 140534768363328, + "relativeCreated": 5613.5218143463135, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6558,8 +6418,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,905", - "created": 1608586374.905753, + "asctime": "2020-12-25 15:03:29,031", + "created": 1608905009.031904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6569,35 +6429,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 905.7528972625732, + "msecs": 31.903982162475586, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5599.491834640503, - "thread": 140534768363328, + "relativeCreated": 5613.720893859863, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 905.8411121368408, + "msecs": 32.08804130554199, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5599.5800495147705, - "thread": 140534768363328, + "relativeCreated": 5613.90495300293, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 8.821487426757812e-05 + "time_consumption": 0.00018405914306640625 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:55,006", - "created": 1608586375.006916, + "asctime": "2020-12-25 15:03:29,133", + "created": 1608905009.133509, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6610,30 +6470,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:55,006", - "created": 1608586375.006312, + "asctime": "2020-12-25 15:03:29,132", + "created": 1608905009.132766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 6.311893463134766, + "msecs": 132.7660083770752, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5700.050830841064, - "thread": 140534768363328, + "relativeCreated": 5714.582920074463, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6642,8 +6502,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:55,006", - "created": 1608586375.006614, + "asctime": "2020-12-25 15:03:29,133", + "created": 1608905009.13312, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6653,14 +6513,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 6.613969802856445, + "msecs": 133.12005996704102, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5700.352907180786, - "thread": 140534768363328, + "relativeCreated": 5714.936971664429, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -6669,8 +6529,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:55,006", - "created": 1608586375.006771, + "asctime": "2020-12-25 15:03:29,133", + "created": 1608905009.133321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6680,61 +6540,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 6.771087646484375, + "msecs": 133.32104682922363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5700.510025024414, - "thread": 140534768363328, + "relativeCreated": 5715.137958526611, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 6.916046142578125, + "msecs": 133.50892066955566, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5700.654983520508, - "thread": 140534768363328, + "relativeCreated": 5715.325832366943, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00014495849609375 + "time_consumption": 0.00018787384033203125 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7085680961608887, - "time_finished": "2020-12-21 22:32:55,006", - "time_start": "2020-12-21 22:32:54,298" + "time_consumption": 0.7108700275421143, + "time_finished": "2020-12-25 15:03:29,133", + "time_start": "2020-12-25 15:03:28,422" }, "socket_protocol.pure_json_protocol: Send and receive check including authentification.": { "args": null, - "asctime": "2020-12-21 22:32:50,753", - "created": 1608586370.753642, + "asctime": "2020-12-25 15:03:24,869", + "created": 1608905004.869839, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 27, + "lineno": 28, "message": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "module": "__init__", "moduleLogger": [], - "msecs": 753.6420822143555, + "msecs": 869.8389530181885, "msg": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1447.3810195922852, + "relativeCreated": 1451.6558647155762, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:51,961", - "created": 1608586371.961391, + "asctime": "2020-12-25 15:03:26,077", + "created": 1608905006.077776, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -6747,1053 +6607,1053 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,753", - "created": 1608586370.75398, + "asctime": "2020-12-25 15:03:24,870", + "created": 1608905004.870202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 753.9799213409424, + "msecs": 870.2020645141602, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1447.718858718872, - "thread": 140534768363328, + "relativeCreated": 1452.0189762115479, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,754", - "created": 1608586370.754369, + "asctime": "2020-12-25 15:03:24,870", + "created": 1608905004.870678, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 754.3690204620361, + "msecs": 870.6779479980469, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1448.1079578399658, - "thread": 140534768363328, + "relativeCreated": 1452.4948596954346, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,754", - "created": 1608586370.754591, + "asctime": "2020-12-25 15:03:24,871", + "created": 1608905004.871003, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 754.5909881591797, + "msecs": 871.0029125213623, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1448.3299255371094, - "thread": 140534768363328, + "relativeCreated": 1452.81982421875, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,754", - "created": 1608586370.754915, + "asctime": "2020-12-25 15:03:24,871", + "created": 1608905004.87146, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 754.9149990081787, + "msecs": 871.4599609375, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1448.6539363861084, - "thread": 140534768363328, + "relativeCreated": 1453.2768726348877, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,755", - "created": 1608586370.755153, + "asctime": "2020-12-25 15:03:24,871", + "created": 1608905004.871743, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 755.1529407501221, + "msecs": 871.7429637908936, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1448.8918781280518, - "thread": 140534768363328, + "relativeCreated": 1453.5598754882812, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:32:50,755", - "created": 1608586370.755335, + "asctime": "2020-12-25 15:03:24,871", + "created": 1608905004.871941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 755.3350925445557, + "msecs": 871.941089630127, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1449.0740299224854, - "thread": 140534768363328, + "relativeCreated": 1453.7580013275146, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:50,755", - "created": 1608586370.755782, + "asctime": "2020-12-25 15:03:24,872", + "created": 1608905004.872419, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 755.781888961792, + "msecs": 872.4191188812256, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1449.5208263397217, - "thread": 140534768363328, + "relativeCreated": 1454.2360305786133, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:50,906", - "created": 1608586370.906828, + "asctime": "2020-12-25 15:03:25,023", + "created": 1608905005.023827, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 906.8279266357422, + "msecs": 23.827075958251953, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1600.5668640136719, - "thread": 140534747334400, + "relativeCreated": 1605.6439876556396, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "1", "0", "None" ], - "asctime": "2020-12-21 22:32:50,907", - "created": 1608586370.907002, + "asctime": "2020-12-25 15:03:25,024", + "created": 1608905005.024299, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 907.0019721984863, + "msecs": 24.298906326293945, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1600.740909576416, - "thread": 140534747334400, + "relativeCreated": 1606.1158180236816, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_seed__" ], - "asctime": "2020-12-21 22:32:50,907", - "created": 1608586370.907072, + "asctime": "2020-12-25 15:03:25,024", + "created": 1608905005.024582, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 907.0720672607422, + "msecs": 24.5819091796875, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1600.8110046386719, - "thread": 140534747334400, + "relativeCreated": 1606.3988208770752, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,907", - "created": 1608586370.907125, + "asctime": "2020-12-25 15:03:25,024", + "created": 1608905005.024789, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 422, - "message": "SJP: Got seed request, sending seed for authentification", + "lineno": 453, + "message": "socket_protocol (server): Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 907.1249961853027, + "msecs": 24.789094924926758, "msg": "%s Got seed request, sending seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1600.8639335632324, - "thread": 140534747334400, + "relativeCreated": 1606.6060066223145, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 2, 0, - "'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'" + "'912a5df14734d4547b824eea2ac78565f9c47e224d504156b990bdb30fc10ecc'" ], - "asctime": "2020-12-21 22:32:50,907", - "created": 1608586370.907196, + "asctime": "2020-12-25 15:03:25,025", + "created": 1608905005.025045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 2, data_id: 0, data: \"'912a5df14734d4547b824eea2ac78565f9c47e224d504156b990bdb30fc10ecc'\"", "module": "__init__", - "msecs": 907.196044921875, + "msecs": 25.044918060302734, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1600.9349822998047, - "thread": 140534747334400, + "relativeCreated": 1606.8618297576904, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-12-21 22:32:50,907", - "created": 1608586370.907368, + "asctime": "2020-12-25 15:03:25,025", + "created": 1608905005.025727, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", + "lineno": 60, + "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 39 31 32 61 35 64 66 31 34 37 33 34 64 34 35 34 37 62 38 32 34 65 65 61 32 61 63 37 38 35 36 35 66 39 63 34 37 65 32 32 34 64 35 30 34 31 35 36 62 39 39 30 62 64 62 33 30 66 63 31 30 65 63 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d ec f7 06", "module": "test_helpers", - "msecs": 907.3679447174072, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", + "msecs": 25.727033615112305, + "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 39 31 32 61 35 64 66 31 34 37 33 34 64 34 35 34 37 62 38 32 34 65 65 61 32 61 63 37 38 35 36 35 66 39 63 34 37 65 32 32 34 64 35 30 34 31 35 36 62 39 39 30 62 64 62 33 30 66 63 31 30 65 63 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d ec f7 06", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1601.106882095337, - "thread": 140534747334400, + "relativeCreated": 1607.5439453125, + "thread": 140137899009792, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-12-21 22:32:51,058", - "created": 1608586371.058338, + "asctime": "2020-12-25 15:03:25,176", + "created": 1608905005.176948, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", + "lineno": 71, + "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 39 31 32 61 35 64 66 31 34 37 33 34 64 34 35 34 37 62 38 32 34 65 65 61 32 61 63 37 38 35 36 35 66 39 63 34 37 65 32 32 34 64 35 30 34 31 35 36 62 39 39 30 62 64 62 33 30 66 63 31 30 65 63 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d ec f7 06", "module": "test_helpers", - "msecs": 58.33792686462402, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", + "msecs": 176.94807052612305, + "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 39 31 32 61 35 64 66 31 34 37 33 34 64 34 35 34 37 62 38 32 34 65 65 61 32 61 63 37 38 35 36 35 66 39 63 34 37 65 32 32 34 64 35 30 34 31 35 36 62 39 39 30 62 64 62 33 30 66 63 31 30 65 63 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d ec f7 06", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1752.0768642425537, - "thread": 140534738941696, + "relativeCreated": 1758.7649822235107, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "2", "0", - "u'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'" + "u'912a5df14734d4547b824eea2ac78565f9c47e224d504156b990bdb30fc10ecc'" ], - "asctime": "2020-12-21 22:32:51,058", - "created": 1608586371.058798, + "asctime": "2020-12-25 15:03:25,177", + "created": 1608905005.177276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 2, data_id: 0, data: \"u'912a5df14734d4547b824eea2ac78565f9c47e224d504156b990bdb30fc10ecc'\"", "module": "__init__", - "msecs": 58.79807472229004, + "msecs": 177.2758960723877, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1752.5370121002197, - "thread": 140534738941696, + "relativeCreated": 1759.0928077697754, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_key__" ], - "asctime": "2020-12-21 22:32:51,059", - "created": 1608586371.059039, + "asctime": "2020-12-25 15:03:25,177", + "created": 1608905005.177449, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 59.03911590576172, + "msecs": 177.44898796081543, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1752.7780532836914, - "thread": 140534738941696, + "relativeCreated": 1759.2658996582031, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:51,059", - "created": 1608586371.059212, + "asctime": "2020-12-25 15:03:25,177", + "created": 1608905005.177583, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 431, - "message": "SJP: Got seed, sending key for authentification", + "lineno": 462, + "message": "socket_protocol (server): Got seed, sending key for authentification", "module": "__init__", - "msecs": 59.21196937561035, + "msecs": 177.5829792022705, "msg": "%s Got seed, sending key for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1752.95090675354, - "thread": 140534738941696, + "relativeCreated": 1759.3998908996582, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 3, 0, - "'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'" + "'c3edbfa339b6a4812ad8aadc6aaf8a6f113d9bf1e7761064ed2a04c31ea94e8bea2caa40bec44bcced56c15048934cb57a856465d5b0d47d47dbdfa3aec505c0'" ], - "asctime": "2020-12-21 22:32:51,059", - "created": 1608586371.0595, + "asctime": "2020-12-25 15:03:25,178", + "created": 1608905005.178072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 3, data_id: 0, data: \"'c3edbfa339b6a4812ad8aadc6aaf8a6f113d9bf1e7761064ed2a04c31ea94e8bea2caa40bec44bcced56c15048934cb57a856465d5b0d47d47dbdfa3aec505c0'\"", "module": "__init__", - "msecs": 59.49997901916504, + "msecs": 178.0719757080078, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1753.2389163970947, - "thread": 140534738941696, + "relativeCreated": 1759.8888874053955, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-12-21 22:32:51,060", - "created": 1608586371.060293, + "asctime": "2020-12-25 15:03:25,178", + "created": 1608905005.178642, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", + "lineno": 60, + "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 63 33 65 64 62 66 61 33 33 39 62 36 61 34 38 31 32 61 64 38 61 61 64 63 36 61 61 66 38 61 36 66 31 31 33 64 39 62 66 31 65 37 37 36 31 30 36 34 65 64 32 61 30 34 63 33 31 65 61 39 34 65 38 62 65 61 32 63 61 61 34 30 62 65 63 34 34 62 63 63 65 64 35 36 63 31 35 30 34 38 39 33 34 63 62 35 37 61 38 35 36 34 36 35 64 35 62 30 64 34 37 64 34 37 64 62 64 66 61 33 61 65 63 35 30 35 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 e5 e1 72", "module": "test_helpers", - "msecs": 60.292959213256836, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", + "msecs": 178.64203453063965, + "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 63 33 65 64 62 66 61 33 33 39 62 36 61 34 38 31 32 61 64 38 61 61 64 63 36 61 61 66 38 61 36 66 31 31 33 64 39 62 66 31 65 37 37 36 31 30 36 34 65 64 32 61 30 34 63 33 31 65 61 39 34 65 38 62 65 61 32 63 61 61 34 30 62 65 63 34 34 62 63 63 65 64 35 36 63 31 35 30 34 38 39 33 34 63 62 35 37 61 38 35 36 34 36 35 64 35 62 30 64 34 37 64 34 37 64 62 64 66 61 33 61 65 63 35 30 35 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 e5 e1 72", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1754.0318965911865, - "thread": 140534738941696, + "relativeCreated": 1760.4589462280273, + "thread": 140137890617088, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-12-21 22:32:51,211", - "created": 1608586371.211903, + "asctime": "2020-12-25 15:03:25,329", + "created": 1608905005.329791, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", + "lineno": 71, + "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 63 33 65 64 62 66 61 33 33 39 62 36 61 34 38 31 32 61 64 38 61 61 64 63 36 61 61 66 38 61 36 66 31 31 33 64 39 62 66 31 65 37 37 36 31 30 36 34 65 64 32 61 30 34 63 33 31 65 61 39 34 65 38 62 65 61 32 63 61 61 34 30 62 65 63 34 34 62 63 63 65 64 35 36 63 31 35 30 34 38 39 33 34 63 62 35 37 61 38 35 36 34 36 35 64 35 62 30 64 34 37 64 34 37 64 62 64 66 61 33 61 65 63 35 30 35 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 e5 e1 72", "module": "test_helpers", - "msecs": 211.90309524536133, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", + "msecs": 329.7910690307617, + "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 63 33 65 64 62 66 61 33 33 39 62 36 61 34 38 31 32 61 64 38 61 61 64 63 36 61 61 66 38 61 36 66 31 31 33 64 39 62 66 31 65 37 37 36 31 30 36 34 65 64 32 61 30 34 63 33 31 65 61 39 34 65 38 62 65 61 32 63 61 61 34 30 62 65 63 34 34 62 63 63 65 64 35 36 63 31 35 30 34 38 39 33 34 63 62 35 37 61 38 35 36 34 36 35 64 35 62 30 64 34 37 64 34 37 64 62 64 66 61 33 61 65 63 35 30 35 63 30 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d d6 e5 e1 72", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1905.642032623291, - "thread": 140534747334400, + "relativeCreated": 1911.6079807281494, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "3", "0", - "u'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'" + "u'c3edbfa339b6a4812ad8aadc6aaf8a6f113d9bf1e7761064ed2a04c31ea94e8bea2caa40bec44bcced56c15048934cb57a856465d5b0d47d47dbdfa3aec505c0'" ], - "asctime": "2020-12-21 22:32:51,212", - "created": 1608586371.212393, + "asctime": "2020-12-25 15:03:25,330", + "created": 1608905005.330138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 3, data_id: 0, data: \"u'c3edbfa339b6a4812ad8aadc6aaf8a6f113d9bf1e7761064ed2a04c31ea94e8bea2caa40bec44bcced56c15048934cb57a856465d5b0d47d47dbdfa3aec505c0'\"", "module": "__init__", - "msecs": 212.39304542541504, + "msecs": 330.1379680633545, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1906.1319828033447, - "thread": 140534747334400, + "relativeCreated": 1911.9548797607422, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_check_key__" ], - "asctime": "2020-12-21 22:32:51,212", - "created": 1608586371.212639, + "asctime": "2020-12-25 15:03:25,330", + "created": 1608905005.33033, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_check_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 212.63909339904785, + "msecs": 330.32989501953125, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1906.3780307769775, - "thread": 140534747334400, + "relativeCreated": 1912.146806716919, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:51,212", - "created": 1608586371.21297, + "asctime": "2020-12-25 15:03:25,330", + "created": 1608905005.33051, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 441, - "message": "SJP: Got correct key, sending positive authentification feedback", + "lineno": 472, + "message": "socket_protocol (server): Got correct key, sending positive authentification feedback", "module": "__init__", - "msecs": 212.97001838684082, + "msecs": 330.50990104675293, "msg": "%s Got correct key, sending positive authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1906.7089557647705, - "thread": 140534747334400, + "relativeCreated": 1912.3268127441406, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 4, 0, "True" ], - "asctime": "2020-12-21 22:32:51,213", - "created": 1608586371.213197, + "asctime": "2020-12-25 15:03:25,330", + "created": 1608905005.330681, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 213.1969928741455, + "msecs": 330.68108558654785, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1906.9359302520752, - "thread": 140534747334400, + "relativeCreated": 1912.4979972839355, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-12-21 22:32:51,213", - "created": 1608586371.21365, + "asctime": "2020-12-25 15:03:25,331", + "created": 1608905005.331016, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "module": "test_helpers", - "msecs": 213.64998817443848, + "msecs": 331.01606369018555, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1907.3889255523682, - "thread": 140534747334400, + "relativeCreated": 1912.8329753875732, + "thread": 140137899009792, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-12-21 22:32:51,364", - "created": 1608586371.364903, + "asctime": "2020-12-25 15:03:25,482", + "created": 1608905005.482057, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "module": "test_helpers", - "msecs": 364.9029731750488, + "msecs": 482.0570945739746, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2058.6419105529785, - "thread": 140534738941696, + "relativeCreated": 2063.8740062713623, + "thread": 140137890617088, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "4", "0", "True" ], - "asctime": "2020-12-21 22:32:51,365", - "created": 1608586371.365429, + "asctime": "2020-12-25 15:03:25,482", + "created": 1608905005.482524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 365.4289245605469, + "msecs": 482.52391815185547, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2059.1678619384766, - "thread": 140534738941696, + "relativeCreated": 2064.340829849243, + "thread": 140137890617088, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_process_feedback__" ], - "asctime": "2020-12-21 22:32:51,365", - "created": 1608586371.365673, + "asctime": "2020-12-25 15:03:25,482", + "created": 1608905005.482775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 365.6730651855469, + "msecs": 482.7749729156494, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2059.4120025634766, - "thread": 140534738941696, + "relativeCreated": 2064.591884613037, + "thread": 140137890617088, "threadName": "Thread-8" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:51,366", - "created": 1608586371.366238, + "asctime": "2020-12-25 15:03:25,482", + "created": 1608905005.482973, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 452, - "message": "SJP: Got positive authentification feedback", + "lineno": 483, + "message": "socket_protocol (server): Got positive authentification feedback", "module": "__init__", - "msecs": 366.2381172180176, + "msecs": 482.9730987548828, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2059.9770545959473, - "thread": 140534738941696, + "relativeCreated": 2064.7900104522705, + "thread": 140137890617088, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:51,458", - "created": 1608586371.45834, + "asctime": "2020-12-25 15:03:25,574", + "created": 1608905005.574895, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 458.3399295806885, + "msecs": 574.894905090332, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2152.078866958618, - "thread": 140534768363328, + "relativeCreated": 2156.7118167877197, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:51,459", - "created": 1608586371.459155, + "asctime": "2020-12-25 15:03:25,575", + "created": 1608905005.575545, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 459.1550827026367, + "msecs": 575.545072555542, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2152.8940200805664, - "thread": 140534768363328, + "relativeCreated": 2157.3619842529297, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:51,610", - "created": 1608586371.610726, + "asctime": "2020-12-25 15:03:25,726", + "created": 1608905005.726647, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 610.7261180877686, + "msecs": 726.646900177002, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2304.4650554656982, - "thread": 140534738941696, + "relativeCreated": 2308.4638118743896, + "thread": 140137890617088, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:51,611", - "created": 1608586371.611235, + "asctime": "2020-12-25 15:03:25,727", + "created": 1608905005.727133, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 611.2349033355713, + "msecs": 727.13303565979, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2304.973840713501, - "thread": 140534738941696, + "relativeCreated": 2308.9499473571777, + "thread": 140137890617088, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:51,611", - "created": 1608586371.611478, + "asctime": "2020-12-25 15:03:25,727", + "created": 1608905005.727383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 611.4780902862549, + "msecs": 727.3828983306885, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2305.2170276641846, - "thread": 140534738941696, + "relativeCreated": 2309.199810028076, + "thread": 140137890617088, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:51,611", - "created": 1608586371.611682, + "asctime": "2020-12-25 15:03:25,727", + "created": 1608905005.7276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 611.6819381713867, + "msecs": 727.60009765625, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2305.4208755493164, - "thread": 140534738941696, + "relativeCreated": 2309.4170093536377, + "thread": 140137890617088, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-12-21 22:32:51,612", - "created": 1608586371.612177, + "asctime": "2020-12-25 15:03:25,728", + "created": 1608905005.728097, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 612.1768951416016, + "msecs": 728.0969619750977, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2305.9158325195312, - "thread": 140534738941696, + "relativeCreated": 2309.9138736724854, + "thread": 140137890617088, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-12-21 22:32:51,763", - "created": 1608586371.763441, + "asctime": "2020-12-25 15:03:25,879", + "created": 1608905005.879315, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 763.4410858154297, + "msecs": 879.3148994445801, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2457.1800231933594, - "thread": 140534747334400, + "relativeCreated": 2461.131811141968, + "thread": 140137899009792, "threadName": "Thread-10" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:51,763", - "created": 1608586371.763897, + "asctime": "2020-12-25 15:03:25,879", + "created": 1608905005.87977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 763.8969421386719, + "msecs": 879.770040512085, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2457.6358795166016, - "thread": 140534747334400, + "relativeCreated": 2461.5869522094727, + "thread": 140137899009792, "threadName": "Thread-10" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:51,764", - "created": 1608586371.764175, + "asctime": "2020-12-25 15:03:25,880", + "created": 1608905005.88006, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 764.1749382019043, + "msecs": 880.0599575042725, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2457.913875579834, - "thread": 140534747334400, + "relativeCreated": 2461.87686920166, + "thread": 140137899009792, "threadName": "Thread-10" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:51,764", - "created": 1608586371.764389, + "asctime": "2020-12-25 15:03:25,880", + "created": 1608905005.880288, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 764.3890380859375, + "msecs": 880.2878856658936, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2458.127975463867, - "thread": 140534747334400, + "relativeCreated": 2462.1047973632812, + "thread": 140137899009792, "threadName": "Thread-10" } ], - "msecs": 961.3909721374512, + "msecs": 77.77595520019531, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2655.129909515381, - "thread": 140534768363328, + "relativeCreated": 2659.592866897583, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19700193405151367 + "time_consumption": 0.19748806953430176 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:51,962", - "created": 1608586371.96234, + "asctime": "2020-12-25 15:03:26,078", + "created": 1608905006.078683, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7810,8 +7670,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:51,961", - "created": 1608586371.961962, + "asctime": "2020-12-25 15:03:26,078", + "created": 1608905006.0783, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7821,14 +7681,14 @@ "lineno": 22, "message": "Result (Return value of authentification): True ()", "module": "test", - "msecs": 961.9619846343994, + "msecs": 78.29999923706055, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2655.700922012329, - "thread": 140534768363328, + "relativeCreated": 2660.1169109344482, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -7837,8 +7697,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:51,962", - "created": 1608586371.962163, + "asctime": "2020-12-25 15:03:26,078", + "created": 1608905006.078504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7848,35 +7708,35 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = True ()", "module": "test", - "msecs": 962.162971496582, + "msecs": 78.50408554077148, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2655.9019088745117, - "thread": 140534768363328, + "relativeCreated": 2660.320997238159, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 962.3401165008545, + "msecs": 78.68289947509766, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2656.079053878784, - "thread": 140534768363328, + "relativeCreated": 2660.4998111724854, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017714500427246094 + "time_consumption": 0.00017881393432617188 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:51,962", - "created": 1608586371.962915, + "asctime": "2020-12-25 15:03:26,079", + "created": 1608905006.079294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7893,8 +7753,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:51,962", - "created": 1608586371.962606, + "asctime": "2020-12-25 15:03:26,078", + "created": 1608905006.078968, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7904,14 +7764,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 962.6059532165527, + "msecs": 78.96804809570312, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2656.3448905944824, - "thread": 140534768363328, + "relativeCreated": 2660.784959793091, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -7920,8 +7780,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:51,962", - "created": 1608586371.962762, + "asctime": "2020-12-25 15:03:26,079", + "created": 1608905006.079135, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7931,35 +7791,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 962.7621173858643, + "msecs": 79.13494110107422, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2656.501054763794, - "thread": 140534768363328, + "relativeCreated": 2660.951852798462, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 962.9149436950684, + "msecs": 79.29396629333496, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2656.653881072998, - "thread": 140534768363328, + "relativeCreated": 2661.1108779907227, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00015282630920410156 + "time_consumption": 0.0001590251922607422 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:51,963", - "created": 1608586371.963473, + "asctime": "2020-12-25 15:03:26,079", + "created": 1608905006.079871, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7976,8 +7836,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:51,963", - "created": 1608586371.963176, + "asctime": "2020-12-25 15:03:26,079", + "created": 1608905006.079553, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7987,14 +7847,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 963.1760120391846, + "msecs": 79.55288887023926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2656.9149494171143, - "thread": 140534768363328, + "relativeCreated": 2661.369800567627, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8003,8 +7863,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:51,963", - "created": 1608586371.963324, + "asctime": "2020-12-25 15:03:26,079", + "created": 1608905006.079714, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8014,35 +7874,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 963.3240699768066, + "msecs": 79.71405982971191, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2657.0630073547363, - "thread": 140534768363328, + "relativeCreated": 2661.5309715270996, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 963.4730815887451, + "msecs": 79.87093925476074, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2657.212018966675, - "thread": 140534768363328, + "relativeCreated": 2661.6878509521484, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 0.00015687942504882812 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:51,964", - "created": 1608586371.964079, + "asctime": "2020-12-25 15:03:26,080", + "created": 1608905006.080522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8059,8 +7919,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:51,963", - "created": 1608586371.96373, + "asctime": "2020-12-25 15:03:26,080", + "created": 1608905006.080147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8070,14 +7930,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 963.7300968170166, + "msecs": 80.14702796936035, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2657.4690341949463, - "thread": 140534768363328, + "relativeCreated": 2661.963939666748, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8086,8 +7946,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:51,963", - "created": 1608586371.963886, + "asctime": "2020-12-25 15:03:26,080", + "created": 1608905006.08032, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8097,35 +7957,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 963.886022567749, + "msecs": 80.31988143920898, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2657.6249599456787, - "thread": 140534768363328, + "relativeCreated": 2662.1367931365967, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 964.0789031982422, + "msecs": 80.52206039428711, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2657.817840576172, - "thread": 140534768363328, + "relativeCreated": 2662.338972091675, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00019288063049316406 + "time_consumption": 0.000202178955078125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:51,964", - "created": 1608586371.964635, + "asctime": "2020-12-25 15:03:26,081", + "created": 1608905006.081122, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8142,8 +8002,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:51,964", - "created": 1608586371.964336, + "asctime": "2020-12-25 15:03:26,080", + "created": 1608905006.080795, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8153,14 +8013,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 964.3359184265137, + "msecs": 80.7950496673584, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2658.0748558044434, - "thread": 140534768363328, + "relativeCreated": 2662.611961364746, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8169,8 +8029,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:51,964", - "created": 1608586371.964487, + "asctime": "2020-12-25 15:03:26,080", + "created": 1608905006.080966, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8180,35 +8040,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 964.4870758056641, + "msecs": 80.96599578857422, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2658.2260131835938, - "thread": 140534768363328, + "relativeCreated": 2662.782907485962, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 964.634895324707, + "msecs": 81.12192153930664, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2658.3738327026367, - "thread": 140534768363328, + "relativeCreated": 2662.9388332366943, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00014781951904296875 + "time_consumption": 0.00015592575073242188 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:51,965", - "created": 1608586371.965293, + "asctime": "2020-12-25 15:03:26,081", + "created": 1608905006.081836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8225,8 +8085,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:51,964", - "created": 1608586371.964921, + "asctime": "2020-12-25 15:03:26,081", + "created": 1608905006.081405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8236,14 +8096,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 964.9209976196289, + "msecs": 81.4049243927002, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2658.6599349975586, - "thread": 140534768363328, + "relativeCreated": 2663.221836090088, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8252,8 +8112,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:51,965", - "created": 1608586371.965083, + "asctime": "2020-12-25 15:03:26,081", + "created": 1608905006.081581, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8263,35 +8123,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 965.0828838348389, + "msecs": 81.58111572265625, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2658.8218212127686, - "thread": 140534768363328, + "relativeCreated": 2663.398027420044, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 965.2929306030273, + "msecs": 81.83598518371582, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2659.031867980957, - "thread": 140534768363328, + "relativeCreated": 2663.6528968811035, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00021004676818847656 + "time_consumption": 0.0002548694610595703 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:52,066", - "created": 1608586372.066667, + "asctime": "2020-12-25 15:03:26,183", + "created": 1608905006.18316, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8304,30 +8164,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:52,065", - "created": 1608586372.065905, + "asctime": "2020-12-25 15:03:26,182", + "created": 1608905006.182402, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 65.90509414672852, + "msecs": 182.4018955230713, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2759.644031524658, - "thread": 140534768363328, + "relativeCreated": 2764.218807220459, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8336,8 +8196,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,066", - "created": 1608586372.066262, + "asctime": "2020-12-25 15:03:26,182", + "created": 1608905006.182755, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8347,14 +8207,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 66.26200675964355, + "msecs": 182.7549934387207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2760.0009441375732, - "thread": 140534768363328, + "relativeCreated": 2764.5719051361084, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8363,8 +8223,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,066", - "created": 1608586372.066488, + "asctime": "2020-12-25 15:03:26,182", + "created": 1608905006.182954, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8374,35 +8234,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 66.48802757263184, + "msecs": 182.9540729522705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2760.2269649505615, - "thread": 140534768363328, + "relativeCreated": 2764.770984649658, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 66.66707992553711, + "msecs": 183.16006660461426, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2760.406017303467, - "thread": 140534768363328, + "relativeCreated": 2764.976978302002, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017905235290527344 + "time_consumption": 0.00020599365234375 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:52,168", - "created": 1608586372.168063, + "asctime": "2020-12-25 15:03:26,284", + "created": 1608905006.284591, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8415,30 +8275,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:52,167", - "created": 1608586372.167328, + "asctime": "2020-12-25 15:03:26,283", + "created": 1608905006.283829, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 167.327880859375, + "msecs": 283.8289737701416, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2861.0668182373047, - "thread": 140534768363328, + "relativeCreated": 2865.6458854675293, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8447,8 +8307,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,167", - "created": 1608586372.167689, + "asctime": "2020-12-25 15:03:26,284", + "created": 1608905006.284184, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8458,14 +8318,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 167.68908500671387, + "msecs": 284.1839790344238, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2861.4280223846436, - "thread": 140534768363328, + "relativeCreated": 2866.0008907318115, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8474,8 +8334,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,167", - "created": 1608586372.167884, + "asctime": "2020-12-25 15:03:26,284", + "created": 1608905006.284404, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8485,61 +8345,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 167.88411140441895, + "msecs": 284.40403938293457, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2861.6230487823486, - "thread": 140534768363328, + "relativeCreated": 2866.2209510803223, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 168.06292533874512, + "msecs": 284.5909595489502, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2861.801862716675, - "thread": 140534768363328, + "relativeCreated": 2866.407871246338, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017881393432617188 + "time_consumption": 0.000186920166015625 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 1.4144208431243896, - "time_finished": "2020-12-21 22:32:52,168", - "time_start": "2020-12-21 22:32:50,753" + "time_consumption": 1.4147520065307617, + "time_finished": "2020-12-25 15:03:26,284", + "time_start": "2020-12-25 15:03:24,869" }, "socket_protocol.pure_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-12-21 22:32:50,045", - "created": 1608586370.045864, + "asctime": "2020-12-25 15:03:24,158", + "created": 1608905004.158203, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 26, + "lineno": 27, "message": "socket_protocol.pure_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 45.864105224609375, + "msecs": 158.2028865814209, "msg": "socket_protocol.pure_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 739.6030426025391, + "relativeCreated": 740.0197982788086, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:50,548", - "created": 1608586370.548834, + "asctime": "2020-12-25 15:03:24,662", + "created": 1608905004.662693, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -8552,408 +8412,408 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,046", - "created": 1608586370.046062, + "asctime": "2020-12-25 15:03:24,158", + "created": 1608905004.158583, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 46.06199264526367, + "msecs": 158.5829257965088, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 739.8009300231934, - "thread": 140534768363328, + "relativeCreated": 740.3998374938965, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,046", - "created": 1608586370.046283, + "asctime": "2020-12-25 15:03:24,159", + "created": 1608905004.159069, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 46.28300666809082, + "msecs": 159.06906127929688, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 740.0219440460205, - "thread": 140534768363328, + "relativeCreated": 740.8859729766846, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,046", - "created": 1608586370.046414, + "asctime": "2020-12-25 15:03:24,159", + "created": 1608905004.159314, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 46.41389846801758, + "msecs": 159.31391716003418, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 740.1528358459473, - "thread": 140534768363328, + "relativeCreated": 741.1308288574219, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,046", - "created": 1608586370.046602, + "asctime": "2020-12-25 15:03:24,159", + "created": 1608905004.159739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 46.60201072692871, + "msecs": 159.73901748657227, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 740.3409481048584, - "thread": 140534768363328, + "relativeCreated": 741.55592918396, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:50,046", - "created": 1608586370.046755, + "asctime": "2020-12-25 15:03:24,160", + "created": 1608905004.16001, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 46.755075454711914, + "msecs": 160.01009941101074, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 740.4940128326416, - "thread": 140534768363328, + "relativeCreated": 741.8270111083984, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:50,047", - "created": 1608586370.047068, + "asctime": "2020-12-25 15:03:24,160", + "created": 1608905004.160552, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 47.068119049072266, + "msecs": 160.5520248413086, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 740.807056427002, - "thread": 140534768363328, + "relativeCreated": 742.3689365386963, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:50,198", - "created": 1608586370.198044, + "asctime": "2020-12-25 15:03:24,311", + "created": 1608905004.311791, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 198.0440616607666, + "msecs": 311.79094314575195, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 891.7829990386963, - "thread": 140534738941696, + "relativeCreated": 893.6078548431396, + "thread": 140137890617088, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:50,198", - "created": 1608586370.198512, + "asctime": "2020-12-25 15:03:24,312", + "created": 1608905004.312256, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 198.51207733154297, + "msecs": 312.2560977935791, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 892.2510147094727, - "thread": 140534738941696, + "relativeCreated": 894.0730094909668, + "thread": 140137890617088, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:50,198", - "created": 1608586370.198747, + "asctime": "2020-12-25 15:03:24,312", + "created": 1608905004.312504, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 198.746919631958, + "msecs": 312.5040531158447, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 892.4858570098877, - "thread": 140534738941696, + "relativeCreated": 894.3209648132324, + "thread": 140137890617088, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:50,198", - "created": 1608586370.198958, + "asctime": "2020-12-25 15:03:24,312", + "created": 1608905004.312729, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 198.9579200744629, + "msecs": 312.7288818359375, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 892.6968574523926, - "thread": 140534738941696, + "relativeCreated": 894.5457935333252, + "thread": 140137890617088, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-12-21 22:32:50,199", - "created": 1608586370.199438, + "asctime": "2020-12-25 15:03:24,313", + "created": 1608905004.313238, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 199.43809509277344, + "msecs": 313.23790550231934, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 893.1770324707031, - "thread": 140534738941696, + "relativeCreated": 895.054817199707, + "thread": 140137890617088, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-12-21 22:32:50,350", - "created": 1608586370.350448, + "asctime": "2020-12-25 15:03:24,464", + "created": 1608905004.464516, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 350.4478931427002, + "msecs": 464.51592445373535, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1044.1868305206299, - "thread": 140534747334400, + "relativeCreated": 1046.332836151123, + "thread": 140137899009792, "threadName": "Thread-4" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:50,350", - "created": 1608586370.350713, + "asctime": "2020-12-25 15:03:24,464", + "created": 1608905004.464995, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 350.71301460266113, + "msecs": 464.9949073791504, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1044.4519519805908, - "thread": 140534747334400, + "relativeCreated": 1046.811819076538, + "thread": 140137899009792, "threadName": "Thread-4" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:50,350", - "created": 1608586370.350876, + "asctime": "2020-12-25 15:03:24,465", + "created": 1608905004.465289, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 350.8760929107666, + "msecs": 465.2891159057617, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1044.6150302886963, - "thread": 140534747334400, + "relativeCreated": 1047.1060276031494, + "thread": 140137899009792, "threadName": "Thread-4" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:50,351", - "created": 1608586370.351005, + "asctime": "2020-12-25 15:03:24,465", + "created": 1608905004.465519, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 351.00507736206055, + "msecs": 465.5189514160156, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1044.7440147399902, - "thread": 140534747334400, + "relativeCreated": 1047.3358631134033, + "thread": 140137899009792, "threadName": "Thread-4" } ], - "msecs": 548.8340854644775, + "msecs": 662.6930236816406, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1242.5730228424072, - "thread": 140534768363328, + "relativeCreated": 1244.5099353790283, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.197829008102417 + "time_consumption": 0.197174072265625 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549259, + "asctime": "2020-12-25 15:03:24,663", + "created": 1608905004.663631, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8970,8 +8830,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549089, + "asctime": "2020-12-25 15:03:24,663", + "created": 1608905004.663212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8981,14 +8841,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 549.0889549255371, + "msecs": 663.2120609283447, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1242.8278923034668, - "thread": 140534768363328, + "relativeCreated": 1245.0289726257324, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -8997,8 +8857,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549181, + "asctime": "2020-12-25 15:03:24,663", + "created": 1608905004.663422, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9008,35 +8868,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 549.1809844970703, + "msecs": 663.4221076965332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1242.919921875, - "thread": 140534768363328, + "relativeCreated": 1245.239019393921, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 549.2589473724365, + "msecs": 663.6309623718262, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1242.9978847503662, - "thread": 140534768363328, + "relativeCreated": 1245.4478740692139, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 7.796287536621094e-05 + "time_consumption": 0.00020885467529296875 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549519, + "asctime": "2020-12-25 15:03:24,664", + "created": 1608905004.664245, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9053,8 +8913,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549379, + "asctime": "2020-12-25 15:03:24,663", + "created": 1608905004.663917, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9064,14 +8924,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 549.3791103363037, + "msecs": 663.917064666748, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.1180477142334, - "thread": 140534768363328, + "relativeCreated": 1245.7339763641357, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9080,8 +8940,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.54945, + "asctime": "2020-12-25 15:03:24,664", + "created": 1608905004.664086, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9091,35 +8951,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 549.4499206542969, + "msecs": 664.086103439331, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.1888580322266, - "thread": 140534768363328, + "relativeCreated": 1245.9030151367188, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 549.5190620422363, + "msecs": 664.2448902130127, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.257999420166, - "thread": 140534768363328, + "relativeCreated": 1246.0618019104004, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 6.914138793945312e-05 + "time_consumption": 0.00015878677368164062 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.54981, + "asctime": "2020-12-25 15:03:24,664", + "created": 1608905004.664894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9136,8 +8996,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549644, + "asctime": "2020-12-25 15:03:24,664", + "created": 1608905004.66452, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9147,14 +9007,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 549.6439933776855, + "msecs": 664.5200252532959, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.3829307556152, - "thread": 140534768363328, + "relativeCreated": 1246.3369369506836, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9163,8 +9023,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549716, + "asctime": "2020-12-25 15:03:24,664", + "created": 1608905004.664691, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9174,35 +9034,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 549.7159957885742, + "msecs": 664.6909713745117, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.454933166504, - "thread": 140534768363328, + "relativeCreated": 1246.5078830718994, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 549.8099327087402, + "msecs": 664.8941040039062, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.54887008667, - "thread": 140534768363328, + "relativeCreated": 1246.711015701294, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.393692016601562e-05 + "time_consumption": 0.00020313262939453125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:50,550", - "created": 1608586370.550062, + "asctime": "2020-12-25 15:03:24,665", + "created": 1608905004.665496, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9219,8 +9079,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549922, + "asctime": "2020-12-25 15:03:24,665", + "created": 1608905004.665167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9230,14 +9090,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 549.921989440918, + "msecs": 665.1670932769775, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.6609268188477, - "thread": 140534768363328, + "relativeCreated": 1246.9840049743652, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9246,8 +9106,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:50,549", - "created": 1608586370.549994, + "asctime": "2020-12-25 15:03:24,665", + "created": 1608905004.665338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9257,35 +9117,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 549.9939918518066, + "msecs": 665.3380393981934, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.7329292297363, - "thread": 140534768363328, + "relativeCreated": 1247.154951095581, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 550.0619411468506, + "msecs": 665.4961109161377, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.8008785247803, - "thread": 140534768363328, + "relativeCreated": 1247.3130226135254, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 6.794929504394531e-05 + "time_consumption": 0.00015807151794433594 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:50,550", - "created": 1608586370.550355, + "asctime": "2020-12-25 15:03:24,666", + "created": 1608905004.666229, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9302,8 +9162,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:50,550", - "created": 1608586370.550181, + "asctime": "2020-12-25 15:03:24,665", + "created": 1608905004.665816, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9313,14 +9173,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 550.1809120178223, + "msecs": 665.816068649292, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.919849395752, - "thread": 140534768363328, + "relativeCreated": 1247.6329803466797, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9329,8 +9189,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:50,550", - "created": 1608586370.550256, + "asctime": "2020-12-25 15:03:24,665", + "created": 1608905004.665994, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9340,35 +9200,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 550.2560138702393, + "msecs": 665.9939289093018, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1243.994951248169, - "thread": 140534768363328, + "relativeCreated": 1247.8108406066895, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 550.3549575805664, + "msecs": 666.2290096282959, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1244.093894958496, - "thread": 140534768363328, + "relativeCreated": 1248.0459213256836, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.894371032714844e-05 + "time_consumption": 0.00023508071899414062 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:50,651", - "created": 1608586370.65158, + "asctime": "2020-12-25 15:03:24,767", + "created": 1608905004.767748, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9381,30 +9241,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:50,650", - "created": 1608586370.650822, + "asctime": "2020-12-25 15:03:24,766", + "created": 1608905004.766914, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 650.8219242095947, + "msecs": 766.913890838623, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1344.5608615875244, - "thread": 140534768363328, + "relativeCreated": 1348.7308025360107, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9413,8 +9273,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:50,651", - "created": 1608586370.65118, + "asctime": "2020-12-25 15:03:24,767", + "created": 1608905004.767326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9424,14 +9284,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 651.1800289154053, + "msecs": 767.3261165618896, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1344.918966293335, - "thread": 140534768363328, + "relativeCreated": 1349.1430282592773, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9440,8 +9300,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:50,651", - "created": 1608586370.651375, + "asctime": "2020-12-25 15:03:24,767", + "created": 1608905004.767557, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9451,35 +9311,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 651.3750553131104, + "msecs": 767.55690574646, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1345.11399269104, - "thread": 140534768363328, + "relativeCreated": 1349.3738174438477, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 651.5800952911377, + "msecs": 767.7481174468994, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1345.3190326690674, - "thread": 140534768363328, + "relativeCreated": 1349.565029144287, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00020503997802734375 + "time_consumption": 0.00019121170043945312 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:50,753", - "created": 1608586370.753045, + "asctime": "2020-12-25 15:03:24,869", + "created": 1608905004.869207, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9492,30 +9352,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:50,752", - "created": 1608586370.752271, + "asctime": "2020-12-25 15:03:24,868", + "created": 1608905004.868428, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 752.2709369659424, + "msecs": 868.4279918670654, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1446.009874343872, - "thread": 140534768363328, + "relativeCreated": 1450.2449035644531, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9524,8 +9384,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:50,752", - "created": 1608586370.752635, + "asctime": "2020-12-25 15:03:24,868", + "created": 1608905004.868788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9535,14 +9395,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 752.6350021362305, + "msecs": 868.7880039215088, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1446.3739395141602, - "thread": 140534768363328, + "relativeCreated": 1450.6049156188965, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9551,8 +9411,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:50,752", - "created": 1608586370.752863, + "asctime": "2020-12-25 15:03:24,869", + "created": 1608905004.869011, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9562,66 +9422,66 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 752.8629302978516, + "msecs": 869.0109252929688, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1446.6018676757812, - "thread": 140534768363328, + "relativeCreated": 1450.8278369903564, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 753.0450820922852, + "msecs": 869.2069053649902, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 1446.7840194702148, - "thread": 140534768363328, + "relativeCreated": 1451.023817062378, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 + "time_consumption": 0.00019598007202148438 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7071809768676758, - "time_finished": "2020-12-21 22:32:50,753", - "time_start": "2020-12-21 22:32:50,045" + "time_consumption": 0.7110040187835693, + "time_finished": "2020-12-25 15:03:24,869", + "time_start": "2020-12-25 15:03:24,158" }, "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.": { "args": null, - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727479, + "asctime": "2020-12-25 15:03:30,857", + "created": 1608905010.857222, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 37, + "lineno": 38, "message": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "module": "__init__", "moduleLogger": [], - "msecs": 727.4789810180664, + "msecs": 857.2220802307129, "msg": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.217918395996, + "relativeCreated": 7439.038991928101, "testcaseLogger": [ { "args": [ - "0.20090699195861816", + "0.2013099193572998", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-12-21 22:32:56,930", - "created": 1608586376.930025, + "asctime": "2020-12-25 15:03:31,060", + "created": 1608905011.060976, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9629,194 +9489,194 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.20090699195861816 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.2013099193572998 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727661, + "asctime": "2020-12-25 15:03:30,857", + "created": 1608905010.857614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 727.6608943939209, + "msecs": 857.6140403747559, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.399831771851, - "thread": 140534768363328, + "relativeCreated": 7439.430952072144, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727858, + "asctime": "2020-12-25 15:03:30,858", + "created": 1608905010.858157, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 727.8580665588379, + "msecs": 858.1569194793701, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.597003936768, - "thread": 140534768363328, + "relativeCreated": 7439.973831176758, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,727", - "created": 1608586376.727974, + "asctime": "2020-12-25 15:03:30,858", + "created": 1608905010.858413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 727.9739379882812, + "msecs": 858.4129810333252, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.712875366211, - "thread": 140534768363328, + "relativeCreated": 7440.229892730713, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,728", - "created": 1608586376.728143, + "asctime": "2020-12-25 15:03:30,858", + "created": 1608905010.858865, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 728.1429767608643, + "msecs": 858.8650226593018, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.881914138794, - "thread": 140534768363328, + "relativeCreated": 7440.681934356689, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,728", - "created": 1608586376.728247, + "asctime": "2020-12-25 15:03:30,859", + "created": 1608905010.859098, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 728.2469272613525, + "msecs": 859.097957611084, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7421.985864639282, - "thread": 140534768363328, + "relativeCreated": 7440.914869308472, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:32:56,728", - "created": 1608586376.728332, + "asctime": "2020-12-25 15:03:30,859", + "created": 1608905010.85929, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 728.3320426940918, + "msecs": 859.2898845672607, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7422.0709800720215, - "thread": 140534768363328, + "relativeCreated": 7441.106796264648, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:56,728", - "created": 1608586376.728567, + "asctime": "2020-12-25 15:03:30,859", + "created": 1608905010.859775, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 728.5668849945068, + "msecs": 859.7750663757324, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7422.3058223724365, - "thread": 140534768363328, + "relativeCreated": 7441.59197807312, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.20090699195861816", + "0.2013099193572998", "" ], - "asctime": "2020-12-21 22:32:56,929", - "created": 1608586376.929325, + "asctime": "2020-12-25 15:03:31,060", + "created": 1608905011.060464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9824,16 +9684,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.20090699195861816 ()", + "message": "Result (Timeout for authentification): 0.2013099193572998 ()", "module": "test", - "msecs": 929.3251037597656, + "msecs": 60.463905334472656, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7623.064041137695, - "thread": 140534768363328, + "relativeCreated": 7642.28081703186, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -9842,8 +9702,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-12-21 22:32:56,929", - "created": 1608586376.929828, + "asctime": "2020-12-25 15:03:31,060", + "created": 1608905011.060779, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9853,37 +9713,37 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 929.8279285430908, + "msecs": 60.77909469604492, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7623.5668659210205, - "thread": 140534768363328, + "relativeCreated": 7642.596006393433, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 930.0251007080078, + "msecs": 60.97602844238281, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7623.7640380859375, - "thread": 140534768363328, + "relativeCreated": 7642.7929401397705, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001971721649169922 + "time_consumption": 0.00019693374633789062 }, { "args": [ - "0.5018911361694336", + "0.502190113067627", "0.5", "0.55", "" ], - "asctime": "2020-12-21 22:32:57,432", - "created": 1608586377.43245, + "asctime": "2020-12-25 15:03:31,564", + "created": 1608905011.564085, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9891,94 +9751,94 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.5018911361694336 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.502190113067627 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:56,930", - "created": 1608586376.930357, + "asctime": "2020-12-25 15:03:31,061", + "created": 1608905011.061285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 930.3569793701172, + "msecs": 61.28501892089844, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7624.095916748047, - "thread": 140534768363328, + "relativeCreated": 7643.101930618286, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:32:56,930", - "created": 1608586376.930521, + "asctime": "2020-12-25 15:03:31,061", + "created": 1608905011.06148, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 930.5210113525391, + "msecs": 61.480045318603516, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7624.259948730469, - "thread": 140534768363328, + "relativeCreated": 7643.296957015991, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:56,930", - "created": 1608586376.93085, + "asctime": "2020-12-25 15:03:31,061", + "created": 1608905011.061969, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 930.8500289916992, + "msecs": 61.96904182434082, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 7624.588966369629, - "thread": 140534768363328, + "relativeCreated": 7643.7859535217285, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.5018911361694336", + "0.502190113067627", "" ], - "asctime": "2020-12-21 22:32:57,432", - "created": 1608586377.43226, + "asctime": "2020-12-25 15:03:31,563", + "created": 1608905011.563529, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9986,16 +9846,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.5018911361694336 ()", + "message": "Result (Timeout for authentification): 0.502190113067627 ()", "module": "test", - "msecs": 432.26003646850586, + "msecs": 563.5290145874023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8125.998973846436, - "thread": 140534768363328, + "relativeCreated": 8145.34592628479, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10004,8 +9864,8 @@ "0.5", "0.55" ], - "asctime": "2020-12-21 22:32:57,432", - "created": 1608586377.432392, + "asctime": "2020-12-25 15:03:31,563", + "created": 1608905011.563867, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10015,37 +9875,37 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.5 <= result <= 0.55", "module": "test", - "msecs": 432.391881942749, + "msecs": 563.8670921325684, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8126.130819320679, - "thread": 140534768363328, + "relativeCreated": 8145.684003829956, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 432.4500560760498, + "msecs": 564.0850067138672, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8126.1889934539795, - "thread": 140534768363328, + "relativeCreated": 8145.901918411255, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 5.817413330078125e-05 + "time_consumption": 0.00021791458129882812 }, { "args": [ - "0.20077204704284668", + "0.20104289054870605", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-12-21 22:32:57,633", - "created": 1608586377.633755, + "asctime": "2020-12-25 15:03:31,765", + "created": 1608905011.765952, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10053,45 +9913,45 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.20077204704284668 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for send method is correct (Content 0.20104289054870605 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.2", "30", "0" ], - "asctime": "2020-12-21 22:32:57,633", - "created": 1608586377.633052, + "asctime": "2020-12-25 15:03:31,765", + "created": 1608905011.765128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 633.0521106719971, + "msecs": 765.1278972625732, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8326.791048049927, - "thread": 140534768363328, + "relativeCreated": 8346.944808959961, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.20077204704284668", + "0.20104289054870605", "" ], - "asctime": "2020-12-21 22:32:57,633", - "created": 1608586377.633384, + "asctime": "2020-12-25 15:03:31,765", + "created": 1608905011.765515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10099,16 +9959,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.20077204704284668 ()", + "message": "Result (Timeout for send method): 0.20104289054870605 ()", "module": "test", - "msecs": 633.3839893341064, + "msecs": 765.5150890350342, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8327.122926712036, - "thread": 140534768363328, + "relativeCreated": 8347.332000732422, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10117,8 +9977,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-12-21 22:32:57,633", - "created": 1608586377.633563, + "asctime": "2020-12-25 15:03:31,765", + "created": 1608905011.765753, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10128,37 +9988,37 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 633.5630416870117, + "msecs": 765.7530307769775, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8327.301979064941, - "thread": 140534768363328, + "relativeCreated": 8347.569942474365, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 633.7549686431885, + "msecs": 765.9521102905273, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8327.493906021118, - "thread": 140534768363328, + "relativeCreated": 8347.769021987915, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001919269561767578 + "time_consumption": 0.0001990795135498047 }, { "args": [ - "0.5015850067138672", + "0.501816987991333", "0.5", "0.55", "" ], - "asctime": "2020-12-21 22:32:58,136", - "created": 1608586378.136024, + "asctime": "2020-12-25 15:03:32,268", + "created": 1608905012.268559, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10166,45 +10026,45 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.5015850067138672 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for send method is correct (Content 0.501816987991333 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.5", "30", "0" ], - "asctime": "2020-12-21 22:32:58,135", - "created": 1608586378.13529, + "asctime": "2020-12-25 15:03:32,267", + "created": 1608905012.267744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 135.28990745544434, + "msecs": 267.7440643310547, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8829.028844833374, - "thread": 140534768363328, + "relativeCreated": 8849.560976028442, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.5015850067138672", + "0.501816987991333", "" ], - "asctime": "2020-12-21 22:32:58,135", - "created": 1608586378.135638, + "asctime": "2020-12-25 15:03:32,268", + "created": 1608905012.268103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10212,16 +10072,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.5015850067138672 ()", + "message": "Result (Timeout for send method): 0.501816987991333 ()", "module": "test", - "msecs": 135.63799858093262, + "msecs": 268.10288429260254, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8829.376935958862, - "thread": 140534768363328, + "relativeCreated": 8849.91979598999, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10230,8 +10090,8 @@ "0.5", "0.55" ], - "asctime": "2020-12-21 22:32:58,135", - "created": 1608586378.135837, + "asctime": "2020-12-25 15:03:32,268", + "created": 1608905012.268349, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10241,61 +10101,61 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.5 <= result <= 0.55", "module": "test", - "msecs": 135.83707809448242, + "msecs": 268.34893226623535, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8829.576015472412, - "thread": 140534768363328, + "relativeCreated": 8850.165843963623, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 136.02399826049805, + "msecs": 268.5589790344238, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 8829.762935638428, - "thread": 140534768363328, + "relativeCreated": 8850.375890731812, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.000186920166015625 + "time_consumption": 0.00021004676818847656 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 1.4085450172424316, - "time_finished": "2020-12-21 22:32:58,136", - "time_start": "2020-12-21 22:32:56,727" + "time_consumption": 1.411336898803711, + "time_finished": "2020-12-25 15:03:32,268", + "time_start": "2020-12-25 15:03:30,857" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.": { "args": null, - "asctime": "2020-12-21 22:32:53,587", - "created": 1608586373.587175, + "asctime": "2020-12-25 15:03:27,708", + "created": 1608905007.708108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 30, + "lineno": 31, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 587.1748924255371, + "msecs": 708.1079483032227, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4280.913829803467, + "relativeCreated": 4289.92486000061, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:54,091", - "created": 1608586374.091652, + "asctime": "2020-12-25 15:03:28,212", + "created": 1608905008.212812, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -10308,408 +10168,408 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,587", - "created": 1608586373.587508, + "asctime": "2020-12-25 15:03:27,708", + "created": 1608905007.708463, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 587.507963180542, + "msecs": 708.4629535675049, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4281.246900558472, - "thread": 140534768363328, + "relativeCreated": 4290.279865264893, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,587", - "created": 1608586373.587886, + "asctime": "2020-12-25 15:03:27,708", + "created": 1608905007.708951, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 587.8860950469971, + "msecs": 708.9509963989258, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4281.625032424927, - "thread": 140534768363328, + "relativeCreated": 4290.7679080963135, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,588", - "created": 1608586373.588108, + "asctime": "2020-12-25 15:03:27,709", + "created": 1608905007.709189, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 588.1080627441406, + "msecs": 709.1889381408691, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4281.84700012207, - "thread": 140534768363328, + "relativeCreated": 4291.005849838257, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,588", - "created": 1608586373.588432, + "asctime": "2020-12-25 15:03:27,709", + "created": 1608905007.709611, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 588.4320735931396, + "msecs": 709.6109390258789, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4282.171010971069, - "thread": 140534768363328, + "relativeCreated": 4291.427850723267, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:53,588", - "created": 1608586373.588694, + "asctime": "2020-12-25 15:03:27,709", + "created": 1608905007.709912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 588.6940956115723, + "msecs": 709.9120616912842, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4282.433032989502, - "thread": 140534768363328, + "relativeCreated": 4291.728973388672, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:53,589", - "created": 1608586373.589274, + "asctime": "2020-12-25 15:03:27,710", + "created": 1608905007.710481, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 589.2739295959473, + "msecs": 710.4809284210205, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4283.012866973877, - "thread": 140534768363328, + "relativeCreated": 4292.297840118408, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:53,740", - "created": 1608586373.740585, + "asctime": "2020-12-25 15:03:27,861", + "created": 1608905007.861751, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 740.5850887298584, + "msecs": 861.7510795593262, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4434.324026107788, - "thread": 140534747334400, + "relativeCreated": 4443.567991256714, + "thread": 140137899009792, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:53,741", - "created": 1608586373.74109, + "asctime": "2020-12-25 15:03:27,862", + "created": 1608905007.862234, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 741.0900592803955, + "msecs": 862.2341156005859, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4434.828996658325, - "thread": 140534747334400, + "relativeCreated": 4444.051027297974, + "thread": 140137899009792, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:53,741", - "created": 1608586373.741322, + "asctime": "2020-12-25 15:03:27,862", + "created": 1608905007.862481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 741.3220405578613, + "msecs": 862.4811172485352, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4435.060977935791, - "thread": 140534747334400, + "relativeCreated": 4444.298028945923, + "thread": 140137899009792, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:53,741", - "created": 1608586373.741524, + "asctime": "2020-12-25 15:03:27,862", + "created": 1608905007.862704, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 741.5239810943604, + "msecs": 862.7040386199951, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4435.26291847229, - "thread": 140534747334400, + "relativeCreated": 4444.520950317383, + "thread": 140137899009792, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-12-21 22:32:53,742", - "created": 1608586373.742017, + "asctime": "2020-12-25 15:03:27,863", + "created": 1608905007.863218, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 742.0170307159424, + "msecs": 863.2180690765381, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4435.755968093872, - "thread": 140534747334400, + "relativeCreated": 4445.034980773926, + "thread": 140137899009792, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-12-21 22:32:53,893", - "created": 1608586373.893307, + "asctime": "2020-12-25 15:03:28,014", + "created": 1608905008.014501, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 893.3069705963135, + "msecs": 14.501094818115234, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4587.045907974243, - "thread": 140534738941696, + "relativeCreated": 4596.318006515503, + "thread": 140137890617088, "threadName": "Thread-16" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:53,893", - "created": 1608586373.893776, + "asctime": "2020-12-25 15:03:28,014", + "created": 1608905008.014969, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 893.7759399414062, + "msecs": 14.969110488891602, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4587.514877319336, - "thread": 140534738941696, + "relativeCreated": 4596.786022186279, + "thread": 140137890617088, "threadName": "Thread-16" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:53,894", - "created": 1608586373.89406, + "asctime": "2020-12-25 15:03:28,015", + "created": 1608905008.015276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 894.0598964691162, + "msecs": 15.275955200195312, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4587.798833847046, - "thread": 140534738941696, + "relativeCreated": 4597.092866897583, + "thread": 140137890617088, "threadName": "Thread-16" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,894", - "created": 1608586373.89428, + "asctime": "2020-12-25 15:03:28,015", + "created": 1608905008.015508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 894.279956817627, + "msecs": 15.507936477661133, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4588.018894195557, - "thread": 140534738941696, + "relativeCreated": 4597.324848175049, + "thread": 140137890617088, "threadName": "Thread-16" } ], - "msecs": 91.65191650390625, + "msecs": 212.81194686889648, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for .", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4785.390853881836, - "thread": 140534768363328, + "relativeCreated": 4794.628858566284, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.1973719596862793 + "time_consumption": 0.19730401039123535 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:54,092", - "created": 1608586374.092538, + "asctime": "2020-12-25 15:03:28,213", + "created": 1608905008.213732, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10726,8 +10586,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:54,092", - "created": 1608586374.092162, + "asctime": "2020-12-25 15:03:28,213", + "created": 1608905008.213314, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10737,14 +10597,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 92.16189384460449, + "msecs": 213.31405639648438, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4785.900831222534, - "thread": 140534768363328, + "relativeCreated": 4795.130968093872, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10753,8 +10613,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:54,092", - "created": 1608586374.092363, + "asctime": "2020-12-25 15:03:28,213", + "created": 1608905008.213522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10764,35 +10624,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 92.36311912536621, + "msecs": 213.52195739746094, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4786.102056503296, - "thread": 140534768363328, + "relativeCreated": 4795.338869094849, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 92.53811836242676, + "msecs": 213.7320041656494, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4786.277055740356, - "thread": 140534768363328, + "relativeCreated": 4795.548915863037, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 0.00021004676818847656 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:54,093", - "created": 1608586374.093175, + "asctime": "2020-12-25 15:03:28,214", + "created": 1608905008.21436, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10809,8 +10669,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:54,092", - "created": 1608586374.092853, + "asctime": "2020-12-25 15:03:28,214", + "created": 1608905008.214028, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10820,14 +10680,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 92.85306930541992, + "msecs": 214.02788162231445, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4786.59200668335, - "thread": 140534768363328, + "relativeCreated": 4795.844793319702, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10836,8 +10696,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:54,093", - "created": 1608586374.09302, + "asctime": "2020-12-25 15:03:28,214", + "created": 1608905008.2142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10847,35 +10707,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 93.01996231079102, + "msecs": 214.20001983642578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4786.758899688721, - "thread": 140534768363328, + "relativeCreated": 4796.0169315338135, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 93.17493438720703, + "msecs": 214.35999870300293, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4786.913871765137, - "thread": 140534768363328, + "relativeCreated": 4796.176910400391, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00015497207641601562 + "time_consumption": 0.00015997886657714844 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:54,093", - "created": 1608586374.093803, + "asctime": "2020-12-25 15:03:28,215", + "created": 1608905008.215025, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10892,8 +10752,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:54,093", - "created": 1608586374.093439, + "asctime": "2020-12-25 15:03:28,214", + "created": 1608905008.214634, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10903,14 +10763,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 93.43910217285156, + "msecs": 214.63394165039062, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4787.178039550781, - "thread": 140534768363328, + "relativeCreated": 4796.450853347778, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -10919,8 +10779,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:54,093", - "created": 1608586374.093598, + "asctime": "2020-12-25 15:03:28,214", + "created": 1608905008.214808, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10930,35 +10790,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 93.5978889465332, + "msecs": 214.80798721313477, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4787.336826324463, - "thread": 140534768363328, + "relativeCreated": 4796.6248989105225, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 93.80292892456055, + "msecs": 215.0249481201172, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4787.54186630249, - "thread": 140534768363328, + "relativeCreated": 4796.841859817505, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00020503997802734375 + "time_consumption": 0.00021696090698242188 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:54,094", - "created": 1608586374.094372, + "asctime": "2020-12-25 15:03:28,215", + "created": 1608905008.215613, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10975,8 +10835,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:54,094", - "created": 1608586374.094051, + "asctime": "2020-12-25 15:03:28,215", + "created": 1608905008.215295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10986,14 +10846,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 94.05088424682617, + "msecs": 215.29507637023926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4787.789821624756, - "thread": 140534768363328, + "relativeCreated": 4797.111988067627, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11002,8 +10862,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:54,094", - "created": 1608586374.094201, + "asctime": "2020-12-25 15:03:28,215", + "created": 1608905008.215456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11013,35 +10873,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 94.20108795166016, + "msecs": 215.4560089111328, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4787.94002532959, - "thread": 140534768363328, + "relativeCreated": 4797.2729206085205, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 94.37203407287598, + "msecs": 215.61288833618164, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4788.110971450806, - "thread": 140534768363328, + "relativeCreated": 4797.429800033569, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001709461212158203 + "time_consumption": 0.00015687942504882812 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:54,095", - "created": 1608586374.095016, + "asctime": "2020-12-25 15:03:28,219", + "created": 1608905008.219249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11058,8 +10918,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:54,094", - "created": 1608586374.094645, + "asctime": "2020-12-25 15:03:28,218", + "created": 1608905008.218737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11069,14 +10929,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 94.64502334594727, + "msecs": 218.7368869781494, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4788.383960723877, - "thread": 140534768363328, + "relativeCreated": 4800.553798675537, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11085,8 +10945,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:54,094", - "created": 1608586374.094809, + "asctime": "2020-12-25 15:03:28,218", + "created": 1608905008.218996, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11096,35 +10956,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 94.80905532836914, + "msecs": 218.9960479736328, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4788.547992706299, - "thread": 140534768363328, + "relativeCreated": 4800.8129596710205, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 95.0160026550293, + "msecs": 219.24901008605957, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4788.754940032959, - "thread": 140534768363328, + "relativeCreated": 4801.065921783447, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00020694732666015625 + "time_consumption": 0.0002529621124267578 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:54,196", - "created": 1608586374.19635, + "asctime": "2020-12-25 15:03:28,320", + "created": 1608905008.320549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11137,30 +10997,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:32:54,195", - "created": 1608586374.195572, + "asctime": "2020-12-25 15:03:28,319", + "created": 1608905008.319806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 195.5718994140625, + "msecs": 319.8060989379883, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4889.310836791992, - "thread": 140534768363328, + "relativeCreated": 4901.623010635376, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11169,8 +11029,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,195", - "created": 1608586374.195904, + "asctime": "2020-12-25 15:03:28,320", + "created": 1608905008.320133, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11180,14 +11040,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 195.90401649475098, + "msecs": 320.1329708099365, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4889.642953872681, - "thread": 140534768363328, + "relativeCreated": 4901.949882507324, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11196,8 +11056,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,196", - "created": 1608586374.196136, + "asctime": "2020-12-25 15:03:28,320", + "created": 1608905008.320346, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11207,35 +11067,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 196.1359977722168, + "msecs": 320.3461170196533, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4889.8749351501465, - "thread": 140534768363328, + "relativeCreated": 4902.163028717041, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 196.35009765625, + "msecs": 320.54901123046875, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4890.08903503418, - "thread": 140534768363328, + "relativeCreated": 4902.365922927856, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00021409988403320312 + "time_consumption": 0.0002028942108154297 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:54,297", - "created": 1608586374.297795, + "asctime": "2020-12-25 15:03:28,422", + "created": 1608905008.422083, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11248,30 +11108,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:32:54,297", - "created": 1608586374.297006, + "asctime": "2020-12-25 15:03:28,421", + "created": 1608905008.421316, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 297.00589179992676, + "msecs": 421.31590843200684, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4990.744829177856, - "thread": 140534768363328, + "relativeCreated": 5003.1328201293945, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11280,8 +11140,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,297", - "created": 1608586374.297371, + "asctime": "2020-12-25 15:03:28,421", + "created": 1608905008.421698, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11291,14 +11151,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 297.37091064453125, + "msecs": 421.69809341430664, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4991.109848022461, - "thread": 140534768363328, + "relativeCreated": 5003.515005111694, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11307,8 +11167,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:54,297", - "created": 1608586374.297613, + "asctime": "2020-12-25 15:03:28,421", + "created": 1608905008.421898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11318,61 +11178,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 297.61290550231934, + "msecs": 421.89788818359375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4991.351842880249, - "thread": 140534768363328, + "relativeCreated": 5003.714799880981, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 297.79505729675293, + "msecs": 422.08290100097656, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4991.533994674683, - "thread": 140534768363328, + "relativeCreated": 5003.899812698364, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 + "time_consumption": 0.0001850128173828125 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7106201648712158, - "time_finished": "2020-12-21 22:32:54,297", - "time_start": "2020-12-21 22:32:53,587" + "time_consumption": 0.7139749526977539, + "time_finished": "2020-12-25 15:03:28,422", + "time_start": "2020-12-25 15:03:27,708" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.": { "args": null, - "asctime": "2020-12-21 22:32:52,168", - "created": 1608586372.168823, + "asctime": "2020-12-25 15:03:26,285", + "created": 1608905006.285171, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 28, + "lineno": 29, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 168.8230037689209, + "msecs": 285.1710319519043, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2862.5619411468506, + "relativeCreated": 2866.987943649292, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:52,672", - "created": 1608586372.672914, + "asctime": "2020-12-25 15:03:26,789", + "created": 1608905006.789791, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -11385,408 +11245,408 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,169", - "created": 1608586372.169187, + "asctime": "2020-12-25 15:03:26,285", + "created": 1608905006.285527, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 169.18706893920898, + "msecs": 285.52699089050293, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2862.9260063171387, - "thread": 140534768363328, + "relativeCreated": 2867.3439025878906, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,169", - "created": 1608586372.169619, + "asctime": "2020-12-25 15:03:26,286", + "created": 1608905006.286027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 169.61908340454102, + "msecs": 286.0269546508789, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2863.3580207824707, - "thread": 140534768363328, + "relativeCreated": 2867.8438663482666, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,169", - "created": 1608586372.169844, + "asctime": "2020-12-25 15:03:26,286", + "created": 1608905006.286285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 169.8439121246338, + "msecs": 286.2849235534668, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2863.5828495025635, - "thread": 140534768363328, + "relativeCreated": 2868.1018352508545, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,170", - "created": 1608586372.170179, + "asctime": "2020-12-25 15:03:26,286", + "created": 1608905006.286717, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 170.17889022827148, + "msecs": 286.7169380187988, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2863.917827606201, - "thread": 140534768363328, + "relativeCreated": 2868.5338497161865, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:52,170", - "created": 1608586372.170429, + "asctime": "2020-12-25 15:03:26,286", + "created": 1608905006.286979, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 170.42899131774902, + "msecs": 286.97896003723145, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2864.1679286956787, - "thread": 140534768363328, + "relativeCreated": 2868.795871734619, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:52,170", - "created": 1608586372.170959, + "asctime": "2020-12-25 15:03:26,287", + "created": 1608905006.28753, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 170.9589958190918, + "msecs": 287.52994537353516, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 2864.6979331970215, - "thread": 140534768363328, + "relativeCreated": 2869.346857070923, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:52,322", - "created": 1608586372.322128, + "asctime": "2020-12-25 15:03:26,438", + "created": 1608905006.438804, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 322.1280574798584, + "msecs": 438.80391120910645, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3015.866994857788, - "thread": 140534747334400, + "relativeCreated": 3020.620822906494, + "thread": 140137899009792, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:52,322", - "created": 1608586372.322777, + "asctime": "2020-12-25 15:03:26,439", + "created": 1608905006.439264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 322.77703285217285, + "msecs": 439.26405906677246, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3016.5159702301025, - "thread": 140534747334400, + "relativeCreated": 3021.08097076416, + "thread": 140137899009792, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:52,323", - "created": 1608586372.323027, + "asctime": "2020-12-25 15:03:26,439", + "created": 1608905006.439546, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 323.0268955230713, + "msecs": 439.5461082458496, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3016.765832901001, - "thread": 140534747334400, + "relativeCreated": 3021.3630199432373, + "thread": 140137899009792, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:52,323", - "created": 1608586372.323167, + "asctime": "2020-12-25 15:03:26,439", + "created": 1608905006.43977, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 323.167085647583, + "msecs": 439.769983291626, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3016.9060230255127, - "thread": 140534747334400, + "relativeCreated": 3021.5868949890137, + "thread": 140137899009792, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-12-21 22:32:52,323", - "created": 1608586372.323501, + "asctime": "2020-12-25 15:03:26,440", + "created": 1608905006.4403, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 323.5011100769043, + "msecs": 440.29998779296875, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3017.240047454834, - "thread": 140534747334400, + "relativeCreated": 3022.1168994903564, + "thread": 140137899009792, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-12-21 22:32:52,474", - "created": 1608586372.474705, + "asctime": "2020-12-25 15:03:26,591", + "created": 1608905006.591435, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 474.7049808502197, + "msecs": 591.4349555969238, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3168.4439182281494, - "thread": 140534738941696, + "relativeCreated": 3173.2518672943115, + "thread": 140137890617088, "threadName": "Thread-12" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:52,475", - "created": 1608586372.475013, + "asctime": "2020-12-25 15:03:26,591", + "created": 1608905006.591831, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 475.01301765441895, + "msecs": 591.8309688568115, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3168.7519550323486, - "thread": 140534738941696, + "relativeCreated": 3173.647880554199, + "thread": 140137890617088, "threadName": "Thread-12" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:52,475", - "created": 1608586372.475187, + "asctime": "2020-12-25 15:03:26,592", + "created": 1608905006.592071, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 475.1870632171631, + "msecs": 592.0710563659668, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3168.926000595093, - "thread": 140534738941696, + "relativeCreated": 3173.8879680633545, + "thread": 140137890617088, "threadName": "Thread-12" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,475", - "created": 1608586372.475322, + "asctime": "2020-12-25 15:03:26,592", + "created": 1608905006.592254, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 475.32200813293457, + "msecs": 592.2539234161377, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3169.0609455108643, - "thread": 140534738941696, + "relativeCreated": 3174.0708351135254, + "thread": 140137890617088, "threadName": "Thread-12" } ], - "msecs": 672.9140281677246, + "msecs": 789.7911071777344, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id and data_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3366.6529655456543, - "thread": 140534768363328, + "relativeCreated": 3371.608018875122, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19759202003479004 + "time_consumption": 0.19753718376159668 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.67341, + "asctime": "2020-12-25 15:03:26,790", + "created": 1608905006.790675, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11803,8 +11663,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673214, + "asctime": "2020-12-25 15:03:26,790", + "created": 1608905006.790289, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11814,14 +11674,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 673.2139587402344, + "msecs": 790.2889251708984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3366.952896118164, - "thread": 140534768363328, + "relativeCreated": 3372.105836868286, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11830,8 +11690,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673318, + "asctime": "2020-12-25 15:03:26,790", + "created": 1608905006.790493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11841,35 +11701,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 673.3179092407227, + "msecs": 790.4930114746094, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.0568466186523, - "thread": 140534768363328, + "relativeCreated": 3372.309923171997, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 673.4099388122559, + "msecs": 790.6749248504639, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.1488761901855, - "thread": 140534768363328, + "relativeCreated": 3372.4918365478516, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.202957153320312e-05 + "time_consumption": 0.0001819133758544922 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673737, + "asctime": "2020-12-25 15:03:26,791", + "created": 1608905006.7913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11886,8 +11746,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673555, + "asctime": "2020-12-25 15:03:26,790", + "created": 1608905006.790975, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11897,14 +11757,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 673.5548973083496, + "msecs": 790.9750938415527, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.2938346862793, - "thread": 140534768363328, + "relativeCreated": 3372.7920055389404, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11913,8 +11773,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673639, + "asctime": "2020-12-25 15:03:26,791", + "created": 1608905006.791141, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11924,35 +11784,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 673.6390590667725, + "msecs": 791.1410331726074, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.377996444702, - "thread": 140534768363328, + "relativeCreated": 3372.957944869995, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 673.7370491027832, + "msecs": 791.3000583648682, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.475986480713, - "thread": 140534768363328, + "relativeCreated": 3373.116970062256, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 9.799003601074219e-05 + "time_consumption": 0.0001590251922607422 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674069, + "asctime": "2020-12-25 15:03:26,791", + "created": 1608905006.791977, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11969,8 +11829,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673877, + "asctime": "2020-12-25 15:03:26,791", + "created": 1608905006.791578, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11980,14 +11840,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 673.8770008087158, + "msecs": 791.5780544281006, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.6159381866455, - "thread": 140534768363328, + "relativeCreated": 3373.3949661254883, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -11996,8 +11856,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:52,673", - "created": 1608586372.673964, + "asctime": "2020-12-25 15:03:26,791", + "created": 1608905006.791763, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12007,35 +11867,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 673.9640235900879, + "msecs": 791.7630672454834, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.7029609680176, - "thread": 140534768363328, + "relativeCreated": 3373.579978942871, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 674.0689277648926, + "msecs": 791.9769287109375, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.8078651428223, - "thread": 140534768363328, + "relativeCreated": 3373.793840408325, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001049041748046875 + "time_consumption": 0.00021386146545410156 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674367, + "asctime": "2020-12-25 15:03:26,792", + "created": 1608905006.792561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12052,8 +11912,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674207, + "asctime": "2020-12-25 15:03:26,792", + "created": 1608905006.792248, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12063,14 +11923,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 674.2069721221924, + "msecs": 792.248010635376, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3367.945909500122, - "thread": 140534768363328, + "relativeCreated": 3374.0649223327637, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12079,8 +11939,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674288, + "asctime": "2020-12-25 15:03:26,792", + "created": 1608905006.792406, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12090,35 +11950,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 674.2880344390869, + "msecs": 792.4060821533203, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3368.0269718170166, - "thread": 140534768363328, + "relativeCreated": 3374.222993850708, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 674.3669509887695, + "msecs": 792.5610542297363, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3368.105888366699, - "thread": 140534768363328, + "relativeCreated": 3374.377965927124, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 7.891654968261719e-05 + "time_consumption": 0.00015497207641601562 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674708, + "asctime": "2020-12-25 15:03:26,793", + "created": 1608905006.793231, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12135,8 +11995,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.67451, + "asctime": "2020-12-25 15:03:26,792", + "created": 1608905006.792844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12146,14 +12006,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 674.5100021362305, + "msecs": 792.8440570831299, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3368.24893951416, - "thread": 140534768363328, + "relativeCreated": 3374.6609687805176, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12162,8 +12022,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:52,674", - "created": 1608586372.674597, + "asctime": "2020-12-25 15:03:26,793", + "created": 1608905006.793019, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12173,35 +12033,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 674.5970249176025, + "msecs": 793.0190563201904, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3368.335962295532, - "thread": 140534768363328, + "relativeCreated": 3374.835968017578, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 674.7078895568848, + "msecs": 793.2310104370117, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3368.4468269348145, - "thread": 140534768363328, + "relativeCreated": 3375.0479221343994, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00011086463928222656 + "time_consumption": 0.00021195411682128906 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:52,775", - "created": 1608586372.775405, + "asctime": "2020-12-25 15:03:26,894", + "created": 1608905006.894659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12214,30 +12074,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:32:52,775", - "created": 1608586372.775036, + "asctime": "2020-12-25 15:03:26,893", + "created": 1608905006.893866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 775.036096572876, + "msecs": 893.8660621643066, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3468.7750339508057, - "thread": 140534768363328, + "relativeCreated": 3475.6829738616943, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12246,8 +12106,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,775", - "created": 1608586372.775214, + "asctime": "2020-12-25 15:03:26,894", + "created": 1608905006.894249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12257,14 +12117,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 775.2139568328857, + "msecs": 894.2489624023438, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3468.9528942108154, - "thread": 140534768363328, + "relativeCreated": 3476.0658740997314, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12273,8 +12133,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,775", - "created": 1608586372.775318, + "asctime": "2020-12-25 15:03:26,894", + "created": 1608905006.894462, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12284,35 +12144,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 775.317907333374, + "msecs": 894.4621086120605, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3469.0568447113037, - "thread": 140534768363328, + "relativeCreated": 3476.2790203094482, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 775.4049301147461, + "msecs": 894.6590423583984, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3469.143867492676, - "thread": 140534768363328, + "relativeCreated": 3476.475954055786, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 8.702278137207031e-05 + "time_consumption": 0.00019693374633789062 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:52,876", - "created": 1608586372.876433, + "asctime": "2020-12-25 15:03:26,996", + "created": 1608905006.996075, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12325,30 +12185,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:32:52,875", - "created": 1608586372.875867, + "asctime": "2020-12-25 15:03:26,995", + "created": 1608905006.995328, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 875.8668899536133, + "msecs": 995.3279495239258, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3569.605827331543, - "thread": 140534768363328, + "relativeCreated": 3577.1448612213135, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12357,8 +12217,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,876", - "created": 1608586372.876142, + "asctime": "2020-12-25 15:03:26,995", + "created": 1608905006.995683, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12368,14 +12228,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 876.1420249938965, + "msecs": 995.682954788208, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3569.880962371826, - "thread": 140534768363328, + "relativeCreated": 3577.4998664855957, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12384,8 +12244,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:52,876", - "created": 1608586372.876299, + "asctime": "2020-12-25 15:03:26,995", + "created": 1608905006.995888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12395,61 +12255,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 876.2989044189453, + "msecs": 995.8879947662354, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3570.037841796875, - "thread": 140534768363328, + "relativeCreated": 3577.704906463623, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 876.4328956604004, + "msecs": 996.074914932251, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3570.17183303833, - "thread": 140534768363328, + "relativeCreated": 3577.8918266296387, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00013399124145507812 + "time_consumption": 0.000186920166015625 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7076098918914795, - "time_finished": "2020-12-21 22:32:52,876", - "time_start": "2020-12-21 22:32:52,168" + "time_consumption": 0.7109038829803467, + "time_finished": "2020-12-25 15:03:26,996", + "time_start": "2020-12-25 15:03:26,285" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.": { "args": null, - "asctime": "2020-12-21 22:32:52,876", - "created": 1608586372.876881, + "asctime": "2020-12-25 15:03:26,996", + "created": 1608905006.996643, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 29, + "lineno": 30, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 876.8808841705322, + "msecs": 996.64306640625, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3570.619821548462, + "relativeCreated": 3578.4599781036377, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:53,380", - "created": 1608586373.380403, + "asctime": "2020-12-25 15:03:27,501", + "created": 1608905007.501232, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -12462,408 +12322,408 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,877", - "created": 1608586372.877129, + "asctime": "2020-12-25 15:03:26,997", + "created": 1608905006.997015, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 877.129077911377, + "msecs": 997.0149993896484, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3570.8680152893066, - "thread": 140534768363328, + "relativeCreated": 3578.831911087036, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,877", - "created": 1608586372.877433, + "asctime": "2020-12-25 15:03:26,997", + "created": 1608905006.997501, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 877.4330615997314, + "msecs": 997.5008964538574, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3571.171998977661, - "thread": 140534768363328, + "relativeCreated": 3579.317808151245, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,877", - "created": 1608586372.87759, + "asctime": "2020-12-25 15:03:26,997", + "created": 1608905006.997772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 877.5899410247803, + "msecs": 997.7719783782959, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3571.32887840271, - "thread": 140534768363328, + "relativeCreated": 3579.5888900756836, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:52,877", - "created": 1608586372.877828, + "asctime": "2020-12-25 15:03:26,998", + "created": 1608905006.998193, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 877.8278827667236, + "msecs": 998.1930255889893, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3571.5668201446533, - "thread": 140534768363328, + "relativeCreated": 3580.009937286377, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:52,878", - "created": 1608586372.878004, + "asctime": "2020-12-25 15:03:26,998", + "created": 1608905006.998463, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 878.0040740966797, + "msecs": 998.4629154205322, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3571.7430114746094, - "thread": 140534768363328, + "relativeCreated": 3580.27982711792, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:52,878", - "created": 1608586372.878397, + "asctime": "2020-12-25 15:03:26,999", + "created": 1608905006.999022, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 878.3969879150391, + "msecs": 999.0220069885254, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3572.1359252929688, - "thread": 140534768363328, + "relativeCreated": 3580.838918685913, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:53,029", - "created": 1608586373.02956, + "asctime": "2020-12-25 15:03:27,150", + "created": 1608905007.150376, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 29.560089111328125, + "msecs": 150.3760814666748, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3723.299026489258, - "thread": 140534738941696, + "relativeCreated": 3732.1929931640625, + "thread": 140137890617088, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:53,030", - "created": 1608586373.03003, + "asctime": "2020-12-25 15:03:27,150", + "created": 1608905007.150889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 30.030012130737305, + "msecs": 150.88891983032227, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3723.768949508667, - "thread": 140534738941696, + "relativeCreated": 3732.70583152771, + "thread": 140137890617088, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:53,030", - "created": 1608586373.030287, + "asctime": "2020-12-25 15:03:27,151", + "created": 1608905007.151165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 30.28702735900879, + "msecs": 151.16500854492188, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3724.0259647369385, - "thread": 140534738941696, + "relativeCreated": 3732.9819202423096, + "thread": 140137890617088, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:53,030", - "created": 1608586373.030511, + "asctime": "2020-12-25 15:03:27,151", + "created": 1608905007.151393, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 30.510902404785156, + "msecs": 151.39293670654297, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3724.249839782715, - "thread": 140534738941696, + "relativeCreated": 3733.2098484039307, + "thread": 140137890617088, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-12-21 22:32:53,030", - "created": 1608586373.030992, + "asctime": "2020-12-25 15:03:27,151", + "created": 1608905007.151925, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 30.99203109741211, + "msecs": 151.92508697509766, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3724.730968475342, - "thread": 140534738941696, + "relativeCreated": 3733.7419986724854, + "thread": 140137890617088, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-12-21 22:32:53,182", - "created": 1608586373.182278, + "asctime": "2020-12-25 15:03:27,303", + "created": 1608905007.303162, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 182.27791786193848, + "msecs": 303.1620979309082, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3876.016855239868, - "thread": 140534747334400, + "relativeCreated": 3884.979009628296, + "thread": 140137899009792, "threadName": "Thread-14" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:53,182", - "created": 1608586373.182744, + "asctime": "2020-12-25 15:03:27,303", + "created": 1608905007.303626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 182.74402618408203, + "msecs": 303.62606048583984, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3876.4829635620117, - "thread": 140534747334400, + "relativeCreated": 3885.4429721832275, + "thread": 140137899009792, "threadName": "Thread-14" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:53,183", - "created": 1608586373.183024, + "asctime": "2020-12-25 15:03:27,303", + "created": 1608905007.303919, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 183.02392959594727, + "msecs": 303.91907691955566, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3876.762866973877, - "thread": 140534747334400, + "relativeCreated": 3885.7359886169434, + "thread": 140137899009792, "threadName": "Thread-14" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:53,183", - "created": 1608586373.183236, + "asctime": "2020-12-25 15:03:27,304", + "created": 1608905007.304149, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 183.23588371276855, + "msecs": 304.14891242980957, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 3876.9748210906982, - "thread": 140534747334400, + "relativeCreated": 3885.9658241271973, + "thread": 140137899009792, "threadName": "Thread-14" } ], - "msecs": 380.4030418395996, + "msecs": 501.2319087982178, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4074.1419792175293, - "thread": 140534768363328, + "relativeCreated": 4083.0488204956055, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19716715812683105 + "time_consumption": 0.1970829963684082 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:53,381", - "created": 1608586373.381309, + "asctime": "2020-12-25 15:03:27,502", + "created": 1608905007.502169, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12880,8 +12740,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:53,380", - "created": 1608586373.380939, + "asctime": "2020-12-25 15:03:27,501", + "created": 1608905007.501767, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12891,14 +12751,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 380.9390068054199, + "msecs": 501.7669200897217, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4074.6779441833496, - "thread": 140534768363328, + "relativeCreated": 4083.5838317871094, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12907,8 +12767,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:53,381", - "created": 1608586373.381136, + "asctime": "2020-12-25 15:03:27,501", + "created": 1608905007.501972, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12918,35 +12778,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 381.1359405517578, + "msecs": 501.971960067749, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4074.8748779296875, - "thread": 140534768363328, + "relativeCreated": 4083.7888717651367, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 381.30903244018555, + "msecs": 502.1688938140869, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4075.0479698181152, - "thread": 140534768363328, + "relativeCreated": 4083.9858055114746, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00017309188842773438 + "time_consumption": 0.00019693374633789062 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:32:53,381", - "created": 1608586373.381897, + "asctime": "2020-12-25 15:03:27,502", + "created": 1608905007.502778, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12963,8 +12823,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:53,381", - "created": 1608586373.381577, + "asctime": "2020-12-25 15:03:27,502", + "created": 1608905007.502448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12974,14 +12834,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 381.5770149230957, + "msecs": 502.44808197021484, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4075.3159523010254, - "thread": 140534768363328, + "relativeCreated": 4084.2649936676025, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -12990,8 +12850,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:53,381", - "created": 1608586373.381734, + "asctime": "2020-12-25 15:03:27,502", + "created": 1608905007.502616, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13001,35 +12861,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 381.73389434814453, + "msecs": 502.61592864990234, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4075.472831726074, - "thread": 140534768363328, + "relativeCreated": 4084.43284034729, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 381.89697265625, + "msecs": 502.7780532836914, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4075.6359100341797, - "thread": 140534768363328, + "relativeCreated": 4084.594964981079, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00016307830810546875 + "time_consumption": 0.0001621246337890625 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:53,382", - "created": 1608586373.382515, + "asctime": "2020-12-25 15:03:27,503", + "created": 1608905007.503433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13046,8 +12906,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:53,382", - "created": 1608586373.382159, + "asctime": "2020-12-25 15:03:27,503", + "created": 1608905007.503058, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13057,14 +12917,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 382.1589946746826, + "msecs": 503.05795669555664, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4075.8979320526123, - "thread": 140534768363328, + "relativeCreated": 4084.8748683929443, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13073,8 +12933,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:53,382", - "created": 1608586373.38232, + "asctime": "2020-12-25 15:03:27,503", + "created": 1608905007.503231, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13084,35 +12944,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 382.3199272155762, + "msecs": 503.2310485839844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4076.058864593506, - "thread": 140534768363328, + "relativeCreated": 4085.047960281372, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 382.51495361328125, + "msecs": 503.4329891204834, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4076.253890991211, - "thread": 140534768363328, + "relativeCreated": 4085.249900817871, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00019502639770507812 + "time_consumption": 0.00020194053649902344 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:53,383", - "created": 1608586373.383078, + "asctime": "2020-12-25 15:03:27,504", + "created": 1608905007.504041, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13129,8 +12989,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:53,382", - "created": 1608586373.382769, + "asctime": "2020-12-25 15:03:27,503", + "created": 1608905007.503719, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13140,14 +13000,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 382.7691078186035, + "msecs": 503.7190914154053, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4076.508045196533, - "thread": 140534768363328, + "relativeCreated": 4085.536003112793, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13156,8 +13016,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:53,382", - "created": 1608586373.38292, + "asctime": "2020-12-25 15:03:27,503", + "created": 1608905007.503881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13167,35 +13027,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 382.9200267791748, + "msecs": 503.88097763061523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4076.6589641571045, - "thread": 140534768363328, + "relativeCreated": 4085.697889328003, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 383.07809829711914, + "msecs": 504.0409564971924, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4076.817035675049, - "thread": 140534768363328, + "relativeCreated": 4085.85786819458, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00015807151794433594 + "time_consumption": 0.00015997886657714844 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:53,383", - "created": 1608586373.383708, + "asctime": "2020-12-25 15:03:27,504", + "created": 1608905007.504735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13212,8 +13072,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:53,383", - "created": 1608586373.383343, + "asctime": "2020-12-25 15:03:27,504", + "created": 1608905007.504338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13223,14 +13083,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 383.342981338501, + "msecs": 504.33802604675293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4077.0819187164307, - "thread": 140534768363328, + "relativeCreated": 4086.1549377441406, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13239,8 +13099,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:53,383", - "created": 1608586373.383504, + "asctime": "2020-12-25 15:03:27,504", + "created": 1608905007.50451, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13250,35 +13110,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 383.50391387939453, + "msecs": 504.50992584228516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4077.242851257324, - "thread": 140534768363328, + "relativeCreated": 4086.326837539673, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 383.70800018310547, + "msecs": 504.73499298095703, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4077.446937561035, - "thread": 140534768363328, + "relativeCreated": 4086.5519046783447, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0002040863037109375 + "time_consumption": 0.000225067138671875 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:53,485", - "created": 1608586373.485143, + "asctime": "2020-12-25 15:03:27,606", + "created": 1608905007.606174, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13291,30 +13151,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:32:53,484", - "created": 1608586373.484328, + "asctime": "2020-12-25 15:03:27,605", + "created": 1608905007.605379, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 484.328031539917, + "msecs": 605.3791046142578, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4178.066968917847, - "thread": 140534768363328, + "relativeCreated": 4187.1960163116455, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13323,8 +13183,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:53,484", - "created": 1608586373.484686, + "asctime": "2020-12-25 15:03:27,605", + "created": 1608905007.605764, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13334,14 +13194,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 484.68589782714844, + "msecs": 605.7639122009277, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4178.424835205078, - "thread": 140534768363328, + "relativeCreated": 4187.580823898315, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13350,8 +13210,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:53,484", - "created": 1608586373.484959, + "asctime": "2020-12-25 15:03:27,605", + "created": 1608905007.605988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13361,35 +13221,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 484.9588871002197, + "msecs": 605.9880256652832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4178.697824478149, - "thread": 140534768363328, + "relativeCreated": 4187.804937362671, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 485.14294624328613, + "msecs": 606.1739921569824, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4178.881883621216, - "thread": 140534768363328, + "relativeCreated": 4187.99090385437, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00018405914306640625 + "time_consumption": 0.00018596649169921875 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:53,586", - "created": 1608586373.586616, + "asctime": "2020-12-25 15:03:27,707", + "created": 1608905007.707566, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13402,30 +13262,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:32:53,585", - "created": 1608586373.585879, + "asctime": "2020-12-25 15:03:27,706", + "created": 1608905007.706801, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 585.8790874481201, + "msecs": 706.8009376525879, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4279.61802482605, - "thread": 140534768363328, + "relativeCreated": 4288.617849349976, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13434,8 +13294,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:53,586", - "created": 1608586373.586239, + "asctime": "2020-12-25 15:03:27,707", + "created": 1608905007.707154, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13445,14 +13305,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 586.2390995025635, + "msecs": 707.1540355682373, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4279.978036880493, - "thread": 140534768363328, + "relativeCreated": 4288.970947265625, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -13461,8 +13321,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:53,586", - "created": 1608586373.586433, + "asctime": "2020-12-25 15:03:27,707", + "created": 1608905007.707355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13472,61 +13332,61 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 586.432933807373, + "msecs": 707.3550224304199, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4280.171871185303, - "thread": 140534768363328, + "relativeCreated": 4289.171934127808, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 586.616039276123, + "msecs": 707.5660228729248, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 4280.354976654053, - "thread": 140534768363328, + "relativeCreated": 4289.3829345703125, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.0002110004425048828 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7097351551055908, - "time_finished": "2020-12-21 22:32:53,586", - "time_start": "2020-12-21 22:32:52,876" + "time_consumption": 0.7109229564666748, + "time_finished": "2020-12-25 15:03:27,707", + "time_start": "2020-12-25 15:03:26,996" }, "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).": { "args": null, - "asctime": "2020-12-21 22:32:55,007", - "created": 1608586375.007368, + "asctime": "2020-12-25 15:03:29,134", + "created": 1608905009.134106, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 32, + "lineno": 33, "message": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "module": "__init__", "moduleLogger": [], - "msecs": 7.3680877685546875, + "msecs": 134.10592079162598, "msg": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5701.107025146484, + "relativeCreated": 5715.922832489014, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:56,013", - "created": 1608586376.013852, + "asctime": "2020-12-25 15:03:30,141", + "created": 1608905010.141509, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -13539,693 +13399,693 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,007", - "created": 1608586375.007639, + "asctime": "2020-12-25 15:03:29,134", + "created": 1608905009.134471, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 7.6389312744140625, + "msecs": 134.47093963623047, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5701.377868652344, - "thread": 140534768363328, + "relativeCreated": 5716.287851333618, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,007", - "created": 1608586375.007949, + "asctime": "2020-12-25 15:03:29,134", + "created": 1608905009.134933, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 7.949113845825195, + "msecs": 134.9329948425293, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5701.688051223755, - "thread": 140534768363328, + "relativeCreated": 5716.749906539917, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,008", - "created": 1608586375.008118, + "asctime": "2020-12-25 15:03:29,135", + "created": 1608905009.135173, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 8.117914199829102, + "msecs": 135.17308235168457, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5701.856851577759, - "thread": 140534768363328, + "relativeCreated": 5716.989994049072, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,008", - "created": 1608586375.008373, + "asctime": "2020-12-25 15:03:29,135", + "created": 1608905009.135575, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 8.373022079467773, + "msecs": 135.5750560760498, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5702.1119594573975, - "thread": 140534768363328, + "relativeCreated": 5717.3919677734375, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:55,008", - "created": 1608586375.008577, + "asctime": "2020-12-25 15:03:29,135", + "created": 1608905009.135837, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 8.577108383178711, + "msecs": 135.83707809448242, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5702.316045761108, - "thread": 140534768363328, + "relativeCreated": 5717.65398979187, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:55,008", - "created": 1608586375.008947, + "asctime": "2020-12-25 15:03:29,136", + "created": 1608905009.136287, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 8.946895599365234, + "msecs": 136.28697395324707, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5702.685832977295, - "thread": 140534768363328, + "relativeCreated": 5718.103885650635, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:55,159", - "created": 1608586375.15974, + "asctime": "2020-12-25 15:03:29,287", + "created": 1608905009.287632, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 159.73997116088867, + "msecs": 287.6319885253906, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5853.478908538818, - "thread": 140534747334400, + "relativeCreated": 5869.448900222778, + "thread": 140137899009792, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:55,160", - "created": 1608586375.16, + "asctime": "2020-12-25 15:03:29,288", + "created": 1608905009.28818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 160.00008583068848, + "msecs": 288.1801128387451, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5853.739023208618, - "thread": 140534747334400, + "relativeCreated": 5869.997024536133, + "thread": 140137899009792, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:55,160", - "created": 1608586375.160105, + "asctime": "2020-12-25 15:03:29,288", + "created": 1608905009.288424, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 160.10499000549316, + "msecs": 288.424015045166, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5853.843927383423, - "thread": 140534747334400, + "relativeCreated": 5870.240926742554, + "thread": 140137899009792, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:55,160", - "created": 1608586375.160197, + "asctime": "2020-12-25 15:03:29,288", + "created": 1608905009.288641, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 160.19701957702637, + "msecs": 288.64097595214844, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5853.935956954956, - "thread": 140534747334400, + "relativeCreated": 5870.457887649536, + "thread": 140137899009792, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-12-21 22:32:55,160", - "created": 1608586375.160382, + "asctime": "2020-12-25 15:03:29,289", + "created": 1608905009.289032, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 160.38203239440918, + "msecs": 289.031982421875, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 5854.120969772339, - "thread": 140534747334400, + "relativeCreated": 5870.848894119263, + "thread": 140137899009792, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-12-21 22:32:55,311", - "created": 1608586375.311285, + "asctime": "2020-12-25 15:03:29,440", + "created": 1608905009.440122, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 311.28501892089844, + "msecs": 440.1218891143799, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6005.023956298828, - "thread": 140534738941696, + "relativeCreated": 6021.938800811768, + "thread": 140137890617088, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:55,311", - "created": 1608586375.311786, + "asctime": "2020-12-25 15:03:29,440", + "created": 1608905009.44065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 311.7859363555908, + "msecs": 440.64998626708984, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6005.5248737335205, - "thread": 140534738941696, + "relativeCreated": 6022.4668979644775, + "thread": 140137890617088, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:55,312", - "created": 1608586375.312057, + "asctime": "2020-12-25 15:03:29,440", + "created": 1608905009.440937, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 312.0570182800293, + "msecs": 440.9370422363281, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6005.795955657959, - "thread": 140534738941696, + "relativeCreated": 6022.753953933716, + "thread": 140137890617088, "threadName": "Thread-20" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,312", - "created": 1608586375.31227, + "asctime": "2020-12-25 15:03:29,441", + "created": 1608905009.441175, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 312.269926071167, + "msecs": 441.1749839782715, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6006.008863449097, - "thread": 140534738941696, + "relativeCreated": 6022.991895675659, + "thread": 140137890617088, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:55,510", - "created": 1608586375.510958, + "asctime": "2020-12-25 15:03:29,638", + "created": 1608905009.638661, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 510.9579563140869, + "msecs": 638.6609077453613, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6204.696893692017, - "thread": 140534768363328, + "relativeCreated": 6220.477819442749, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:55,511", - "created": 1608586375.511563, + "asctime": "2020-12-25 15:03:29,639", + "created": 1608905009.639273, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 511.5630626678467, + "msecs": 639.272928237915, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6205.302000045776, - "thread": 140534768363328, + "relativeCreated": 6221.089839935303, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:55,662", - "created": 1608586375.662705, + "asctime": "2020-12-25 15:03:29,790", + "created": 1608905009.790568, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 662.7049446105957, + "msecs": 790.5681133270264, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6356.443881988525, - "thread": 140534738941696, + "relativeCreated": 6372.385025024414, + "thread": 140137890617088, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{u'test': u'test'}" ], - "asctime": "2020-12-21 22:32:55,663", - "created": 1608586375.663232, + "asctime": "2020-12-25 15:03:29,791", + "created": 1608905009.791115, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 663.2320880889893, + "msecs": 791.1150455474854, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6356.971025466919, - "thread": 140534738941696, + "relativeCreated": 6372.931957244873, + "thread": 140137890617088, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:32:55,663", - "created": 1608586375.663504, + "asctime": "2020-12-25 15:03:29,791", + "created": 1608905009.791362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 663.503885269165, + "msecs": 791.3620471954346, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6357.242822647095, - "thread": 140534738941696, + "relativeCreated": 6373.178958892822, + "thread": 140137890617088, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:55,663", - "created": 1608586375.663712, + "asctime": "2020-12-25 15:03:29,791", + "created": 1608905009.791577, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 663.7120246887207, + "msecs": 791.5771007537842, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6357.45096206665, - "thread": 140534738941696, + "relativeCreated": 6373.394012451172, + "thread": 140137890617088, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-12-21 22:32:55,664", - "created": 1608586375.664093, + "asctime": "2020-12-25 15:03:29,791", + "created": 1608905009.791986, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 664.093017578125, + "msecs": 791.9859886169434, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6357.831954956055, - "thread": 140534738941696, + "relativeCreated": 6373.802900314331, + "thread": 140137890617088, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-12-21 22:32:55,815", - "created": 1608586375.815239, + "asctime": "2020-12-25 15:03:29,943", + "created": 1608905009.943089, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 815.2389526367188, + "msecs": 943.0890083312988, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6508.977890014648, - "thread": 140534747334400, + "relativeCreated": 6524.9059200286865, + "thread": 140137899009792, "threadName": "Thread-22" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, u's']" ], - "asctime": "2020-12-21 22:32:55,815", - "created": 1608586375.815756, + "asctime": "2020-12-25 15:03:29,943", + "created": 1608905009.943568, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 815.75608253479, + "msecs": 943.5679912567139, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6509.49501991272, - "thread": 140534747334400, + "relativeCreated": 6525.384902954102, + "thread": 140137899009792, "threadName": "Thread-22" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:32:55,816", - "created": 1608586375.816028, + "asctime": "2020-12-25 15:03:29,943", + "created": 1608905009.943826, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 816.0281181335449, + "msecs": 943.8259601593018, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6509.767055511475, - "thread": 140534747334400, + "relativeCreated": 6525.642871856689, + "thread": 140137899009792, "threadName": "Thread-22" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:55,816", - "created": 1608586375.816241, + "asctime": "2020-12-25 15:03:29,944", + "created": 1608905009.944022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 816.2410259246826, + "msecs": 944.0219402313232, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6509.979963302612, - "thread": 140534747334400, + "relativeCreated": 6525.838851928711, + "thread": 140137899009792, "threadName": "Thread-22" } ], - "msecs": 13.85188102722168, + "msecs": 141.5090560913086, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6707.590818405151, - "thread": 140534768363328, + "relativeCreated": 6723.325967788696, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19761085510253906 + "time_consumption": 0.19748711585998535 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:32:56,014", - "created": 1608586376.014769, + "asctime": "2020-12-25 15:03:30,142", + "created": 1608905010.142461, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14242,8 +14102,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:56,014", - "created": 1608586376.014382, + "asctime": "2020-12-25 15:03:30,142", + "created": 1608905010.142067, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14253,14 +14113,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 14.381885528564453, + "msecs": 142.06695556640625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6708.120822906494, - "thread": 140534768363328, + "relativeCreated": 6723.883867263794, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14269,8 +14129,8 @@ "True", "" ], - "asctime": "2020-12-21 22:32:56,014", - "created": 1608586376.014584, + "asctime": "2020-12-25 15:03:30,142", + "created": 1608905010.142275, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14280,25 +14140,1102 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 14.584064483642578, + "msecs": 142.2750949859619, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6708.323001861572, - "thread": 140534768363328, + "relativeCreated": 6724.09200668335, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 14.76907730102539, + "msecs": 142.46106147766113, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6708.508014678955, - "thread": 140534768363328, + "relativeCreated": 6724.277973175049, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00018596649169921875 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2020-12-25 15:03:30,143", + "created": 1608905010.143074, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Request Status (Okay) transfered via struct_json_protocol is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Request Status (Okay) transfered via struct_json_protocol", + "0", + "" + ], + "asctime": "2020-12-25 15:03:30,142", + "created": 1608905010.142744, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", + "module": "test", + "msecs": 142.7440643310547, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6724.560976028442, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Request Status (Okay) transfered via struct_json_protocol", + "0", + "" + ], + "asctime": "2020-12-25 15:03:30,142", + "created": 1608905010.142913, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", + "module": "test", + "msecs": 142.9131031036377, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6724.730014801025, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 143.07403564453125, + "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6724.890947341919, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.0001609325408935547 + }, + { + "args": [ + "{u'test': u'test'}", + "" + ], + "asctime": "2020-12-25 15:03:30,143", + "created": 1608905010.143749, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Request Data transfered via struct_json_protocol is correct (Content {u'test': u'test'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Request Data transfered via struct_json_protocol", + "{ u'test': u'test' }", + "" + ], + "asctime": "2020-12-25 15:03:30,143", + "created": 1608905010.143358, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Request Data transfered via struct_json_protocol): { u'test': u'test' } ()", + "module": "test", + "msecs": 143.3579921722412, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6725.174903869629, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Request Data transfered via struct_json_protocol", + "{ u'test': u'test' }", + "" + ], + "asctime": "2020-12-25 15:03:30,143", + "created": 1608905010.143531, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Request Data transfered via struct_json_protocol): result = { u'test': u'test' } ()", + "module": "test", + "msecs": 143.53108406066895, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6725.347995758057, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 143.74899864196777, + "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6725.5659103393555, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00021791458129882812 + }, + { + "args": [ + "5", + "" + ], + "asctime": "2020-12-25 15:03:30,144", + "created": 1608905010.144335, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content 5 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Response Status (Operation not permitted) transfered via struct_json_protocol", + "5", + "" + ], + "asctime": "2020-12-25 15:03:30,144", + "created": 1608905010.14402, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", + "module": "test", + "msecs": 144.02008056640625, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6725.836992263794, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Response Status (Operation not permitted) transfered via struct_json_protocol", + "5", + "" + ], + "asctime": "2020-12-25 15:03:30,144", + "created": 1608905010.144179, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", + "module": "test", + "msecs": 144.179105758667, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6725.996017456055, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 144.3350315093994, + "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6726.151943206787, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00015592575073242188 + }, + { + "args": [ + "[1, 3, u's']", + "" + ], + "asctime": "2020-12-25 15:03:30,145", + "created": 1608905010.145016, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Response Data transfered via struct_json_protocol is correct (Content [1, 3, u's'] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Response Data transfered via struct_json_protocol", + "[ 1, 3, u's' ]", + "" + ], + "asctime": "2020-12-25 15:03:30,144", + "created": 1608905010.144623, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, u's' ] ()", + "module": "test", + "msecs": 144.6230411529541, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6726.439952850342, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Response Data transfered via struct_json_protocol", + "[ 1, 3, u's' ]", + "" + ], + "asctime": "2020-12-25 15:03:30,144", + "created": 1608905010.144799, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, u's' ] ()", + "module": "test", + "msecs": 144.79899406433105, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6726.615905761719, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 145.01595497131348, + "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6726.832866668701, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00021696090698242188 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,246", + "created": 1608905010.246465, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "socket_protocol (server):", + "0.1", + "11", + "45054" + ], + "asctime": "2020-12-25 15:03:30,245", + "created": 1608905010.245692, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "module": "__init__", + "msecs": 245.69201469421387, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6827.508926391602, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe", + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,246", + "created": 1608905010.246052, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", + "module": "test", + "msecs": 246.05202674865723, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6827.868938446045, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe", + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,246", + "created": 1608905010.246276, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", + "module": "test", + "msecs": 246.2759017944336, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6828.092813491821, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 246.46496772766113, + "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6828.281879425049, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00018906593322753906 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,347", + "created": 1608905010.347907, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "socket_protocol (server):", + "0.1", + "10", + "45054" + ], + "asctime": "2020-12-25 15:03:30,347", + "created": 1608905010.347142, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "module": "__init__", + "msecs": 347.14198112487793, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6928.958892822266, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe", + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,347", + "created": 1608905010.347517, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", + "module": "test", + "msecs": 347.5170135498047, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6929.333925247192, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe", + "None", + "" + ], + "asctime": "2020-12-25 15:03:30,347", + "created": 1608905010.347725, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", + "module": "test", + "msecs": 347.72491455078125, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6929.541826248169, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 347.90706634521484, + "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 6929.7239780426025, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00018215179443359375 + } + ], + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 1.2138011455535889, + "time_finished": "2020-12-25 15:03:30,347", + "time_start": "2020-12-25 15:03:29,134" + }, + "socket_protocol.struct_json_protocol: Send and receive check.": { + "args": null, + "asctime": "2020-12-25 15:03:23,448", + "created": 1608905003.448631, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 26, + "message": "socket_protocol.struct_json_protocol: Send and receive check.", + "module": "__init__", + "moduleLogger": [], + "msecs": 448.63104820251465, + "msg": "socket_protocol.struct_json_protocol: Send and receive check.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 30.447959899902344, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:23,951", + "created": 1608905003.951312, + "exc_info": null, + "exc_text": null, + "filename": "test_normal_operation.py", + "funcName": "send_n_receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Send and received data by struct_json_protocol.", + "module": "test_normal_operation", + "moduleLogger": [ + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:23,448", + "created": 1608905003.448836, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 448.836088180542, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 30.652999877929688, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:23,449", + "created": 1608905003.449034, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 449.0339756011963, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 30.850887298583984, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:23,449", + "created": 1608905003.449104, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 449.10407066345215, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 30.920982360839844, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:23,449", + "created": 1608905003.449308, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 449.307918548584, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 31.12483024597168, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):", + 0, + 10, + 45054, + "{u'test': u'test'}" + ], + "asctime": "2020-12-25 15:03:23,449", + "created": 1608905003.44939, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "module": "__init__", + "msecs": 449.3899345397949, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 31.206846237182617, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:23,449", + "created": 1608905003.449518, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "module": "test_helpers", + "msecs": 449.51796531677246, + "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 31.334877014160156, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:23,600", + "created": 1608905003.600323, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "module": "test_helpers", + "msecs": 600.322961807251, + "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 182.13987350463867, + "thread": 140137899009792, + "threadName": "Thread-1" + }, + { + "args": [ + "socket_protocol (server):", + "0", + "10", + "45054", + "{u'test': u'test'}" + ], + "asctime": "2020-12-25 15:03:23,600", + "created": 1608905003.600894, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "module": "__init__", + "msecs": 600.8939743041992, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 182.7108860015869, + "thread": 140137899009792, + "threadName": "Thread-1" + }, + { + "args": [ + "socket_protocol (server):", + "response_data_method" + ], + "asctime": "2020-12-25 15:03:23,601", + "created": 1608905003.601165, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", + "module": "__init__", + "msecs": 601.1650562286377, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 182.9819679260254, + "thread": 140137899009792, + "threadName": "Thread-1" + }, + { + "args": [ + "socket_protocol (server):", + 5, + 11, + 45054, + "[1, 3, u's']" + ], + "asctime": "2020-12-25 15:03:23,601", + "created": 1608905003.60139, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "module": "__init__", + "msecs": 601.3898849487305, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 183.20679664611816, + "thread": 140137899009792, + "threadName": "Thread-1" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:23,601", + "created": 1608905003.601825, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "module": "test_helpers", + "msecs": 601.8249988555908, + "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 183.64191055297852, + "thread": 140137899009792, + "threadName": "Thread-1" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:23,753", + "created": 1608905003.753079, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "module": "test_helpers", + "msecs": 753.0789375305176, + "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 334.8958492279053, + "thread": 140137890617088, + "threadName": "Thread-2" + }, + { + "args": [ + "socket_protocol (server):", + "5", + "11", + "45054", + "[1, 3, u's']" + ], + "asctime": "2020-12-25 15:03:23,753", + "created": 1608905003.753605, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "module": "__init__", + "msecs": 753.6048889160156, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 335.4218006134033, + "thread": 140137890617088, + "threadName": "Thread-2" + }, + { + "args": [ + "socket_protocol (server):", + "Operation not permitted" + ], + "asctime": "2020-12-25 15:03:23,753", + "created": 1608905003.75395, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", + "module": "__init__", + "msecs": 753.9501190185547, + "msg": "%s Received message has a peculiar status: %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 335.7670307159424, + "thread": 140137890617088, + "threadName": "Thread-2" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:23,754", + "created": 1608905003.754191, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 754.1909217834473, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 336.00783348083496, + "thread": 140137890617088, + "threadName": "Thread-2" + } + ], + "msecs": 951.3120651245117, + "msg": "Send and received data by struct_json_protocol.", + "name": "__tLogger__", + "pathname": "src/tests/test_normal_operation.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 533.1289768218994, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.19712114334106445 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2020-12-25 15:03:23,952", + "created": 1608905003.952222, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value of send method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value of send method", + "True", + "" + ], + "asctime": "2020-12-25 15:03:23,951", + "created": 1608905003.951807, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value of send method): True ()", + "module": "test", + "msecs": 951.8070220947266, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 533.6239337921143, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value of send method", + "True", + "" + ], + "asctime": "2020-12-25 15:03:23,952", + "created": 1608905003.952037, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value of send method): result = True ()", + "module": "test", + "msecs": 952.0370960235596, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 533.8540077209473, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 952.2221088409424, + "msg": "Return value of send method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 534.0390205383301, + "thread": 140137920038720, "threadName": "MainThread", "time_consumption": 0.0001850128173828125 }, @@ -14307,8 +15244,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015357, + "asctime": "2020-12-25 15:03:23,952", + "created": 1608905003.952826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14325,8 +15262,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015045, + "asctime": "2020-12-25 15:03:23,952", + "created": 1608905003.952495, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14336,14 +15273,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 15.044927597045898, + "msecs": 952.4950981140137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6708.783864974976, - "thread": 140534768363328, + "relativeCreated": 534.3120098114014, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14352,8 +15289,8 @@ "0", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015204, + "asctime": "2020-12-25 15:03:23,952", + "created": 1608905003.952663, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14363,35 +15300,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 15.20395278930664, + "msecs": 952.6629447937012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6708.942890167236, - "thread": 140534768363328, + "relativeCreated": 534.4798564910889, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 15.357017517089844, + "msecs": 952.8260231018066, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6709.0959548950195, - "thread": 140534768363328, + "relativeCreated": 534.6429347991943, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.00016307830810546875 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015977, + "asctime": "2020-12-25 15:03:23,953", + "created": 1608905003.953504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14408,8 +15345,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015619, + "asctime": "2020-12-25 15:03:23,953", + "created": 1608905003.953095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14419,14 +15356,14 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 15.619039535522461, + "msecs": 953.0949592590332, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6709.357976913452, - "thread": 140534768363328, + "relativeCreated": 534.9118709564209, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14435,8 +15372,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-12-21 22:32:56,015", - "created": 1608586376.015779, + "asctime": "2020-12-25 15:03:23,953", + "created": 1608905003.953285, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14446,35 +15383,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 15.77901840209961, + "msecs": 953.2849788665771, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6709.517955780029, - "thread": 140534768363328, + "relativeCreated": 535.1018905639648, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 15.976905822753906, + "msecs": 953.5040855407715, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6709.715843200684, - "thread": 140534768363328, + "relativeCreated": 535.3209972381592, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00019788742065429688 + "time_consumption": 0.00021910667419433594 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:32:56,016", - "created": 1608586376.016545, + "asctime": "2020-12-25 15:03:23,954", + "created": 1608905003.954141, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14491,8 +15428,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:56,016", - "created": 1608586376.016233, + "asctime": "2020-12-25 15:03:23,953", + "created": 1608905003.95382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14502,14 +15439,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 16.232967376708984, + "msecs": 953.819990158081, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6709.971904754639, - "thread": 140534768363328, + "relativeCreated": 535.6369018554688, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14518,8 +15455,8 @@ "5", "" ], - "asctime": "2020-12-21 22:32:56,016", - "created": 1608586376.016384, + "asctime": "2020-12-25 15:03:23,953", + "created": 1608905003.953983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14529,35 +15466,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 16.383886337280273, + "msecs": 953.9830684661865, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6710.12282371521, - "thread": 140534768363328, + "relativeCreated": 535.7999801635742, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 16.54505729675293, + "msecs": 954.1409015655518, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6710.283994674683, - "thread": 140534768363328, + "relativeCreated": 535.9578132629395, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.00015783309936523438 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-12-21 22:32:56,017", - "created": 1608586376.017232, + "asctime": "2020-12-25 15:03:23,954", + "created": 1608905003.954794, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14574,8 +15511,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:56,016", - "created": 1608586376.016857, + "asctime": "2020-12-25 15:03:23,954", + "created": 1608905003.954406, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14585,14 +15522,14 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 16.856908798217773, + "msecs": 954.4060230255127, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6710.5958461761475, - "thread": 140534768363328, + "relativeCreated": 536.2229347229004, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14601,8 +15538,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-12-21 22:32:56,017", - "created": 1608586376.017023, + "asctime": "2020-12-25 15:03:23,954", + "created": 1608905003.954578, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14612,35 +15549,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 17.023086547851562, + "msecs": 954.5779228210449, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6710.762023925781, - "thread": 140534768363328, + "relativeCreated": 536.3948345184326, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 17.23194122314453, + "msecs": 954.7939300537109, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6710.970878601074, - "thread": 140534768363328, + "relativeCreated": 536.6108417510986, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00020885467529296875 + "time_consumption": 0.00021600723266601562 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:56,118", - "created": 1608586376.118748, + "asctime": "2020-12-25 15:03:24,056", + "created": 1608905004.056221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14653,30 +15590,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:32:56,117", - "created": 1608586376.117847, + "asctime": "2020-12-25 15:03:24,055", + "created": 1608905004.05543, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 117.84696578979492, + "msecs": 55.429935455322266, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6811.585903167725, - "thread": 140534768363328, + "relativeCreated": 637.24684715271, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14685,8 +15622,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,118", - "created": 1608586376.11826, + "asctime": "2020-12-25 15:03:24,055", + "created": 1608905004.055788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14696,14 +15633,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 118.25990676879883, + "msecs": 55.78804016113281, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6811.9988441467285, - "thread": 140534768363328, + "relativeCreated": 637.6049518585205, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14712,8 +15649,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,118", - "created": 1608586376.118561, + "asctime": "2020-12-25 15:03:24,056", + "created": 1608905004.056021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14723,35 +15660,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 118.5610294342041, + "msecs": 56.02097511291504, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6812.299966812134, - "thread": 140534768363328, + "relativeCreated": 637.8378868103027, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 118.74794960021973, + "msecs": 56.22100830078125, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6812.486886978149, - "thread": 140534768363328, + "relativeCreated": 638.037919998169, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.000186920166015625 + "time_consumption": 0.00020003318786621094 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:32:56,220", - "created": 1608586376.220166, + "asctime": "2020-12-25 15:03:24,157", + "created": 1608905004.157651, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14764,30 +15701,30 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:32:56,219", - "created": 1608586376.21941, + "asctime": "2020-12-25 15:03:24,156", + "created": 1608905004.156885, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 219.40994262695312, + "msecs": 156.88490867614746, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6913.148880004883, - "thread": 140534768363328, + "relativeCreated": 738.7018203735352, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14796,8 +15733,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,219", - "created": 1608586376.219769, + "asctime": "2020-12-25 15:03:24,157", + "created": 1608905004.157238, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14807,14 +15744,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 219.76900100708008, + "msecs": 157.23800659179688, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6913.50793838501, - "thread": 140534768363328, + "relativeCreated": 739.0549182891846, + "thread": 140137920038720, "threadName": "MainThread" }, { @@ -14823,8 +15760,8 @@ "None", "" ], - "asctime": "2020-12-21 22:32:56,219", - "created": 1608586376.219986, + "asctime": "2020-12-25 15:03:24,157", + "created": 1608905004.157438, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14834,475 +15771,554 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 219.9859619140625, + "msecs": 157.4380397796631, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6913.724899291992, - "thread": 140534768363328, + "relativeCreated": 739.2549514770508, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 220.16596794128418, + "msecs": 157.65094757080078, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 6913.904905319214, - "thread": 140534768363328, + "relativeCreated": 739.4678592681885, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.0002129077911376953 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 1.2127978801727295, - "time_finished": "2020-12-21 22:32:56,220", - "time_start": "2020-12-21 22:32:55,007" + "time_consumption": 0.7090198993682861, + "time_finished": "2020-12-25 15:03:24,157", + "time_start": "2020-12-25 15:03:23,448" }, - "socket_protocol.struct_json_protocol: Send and receive check.": { + "socket_protocol: Client setting the channel name.": { "args": null, - "asctime": "2020-12-21 22:32:49,336", - "created": 1608586369.336675, + "asctime": "2020-12-25 15:03:35,121", + "created": 1608905015.121032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 25, - "message": "socket_protocol.struct_json_protocol: Send and receive check.", + "lineno": 50, + "message": "socket_protocol: Client setting the channel name.", "module": "__init__", "moduleLogger": [], - "msecs": 336.67492866516113, - "msg": "socket_protocol.struct_json_protocol: Send and receive check.", + "msecs": 121.0319995880127, + "msg": "socket_protocol: Client setting the channel name.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 30.41386604309082, + "relativeCreated": 11702.8489112854, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:32:49,839", - "created": 1608586369.839372, + "asctime": "2020-12-25 15:03:35,430", + "created": 1608905015.430627, "exc_info": null, "exc_text": null, - "filename": "test_normal_operation.py", - "funcName": "send_n_receive", + "filename": "test_channel_name.py", + "funcName": "test_channel_name", "levelname": "DEBUG", "levelno": 10, - "lineno": 42, - "message": "Send and received data by struct_json_protocol.", - "module": "test_normal_operation", + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:49,336", - "created": 1608586369.336901, + "asctime": "2020-12-25 15:03:35,121", + "created": 1608905015.121378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 336.9009494781494, + "msecs": 121.37794494628906, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 30.6398868560791, - "thread": 140534768363328, + "relativeCreated": 11703.194856643677, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:32:49,337", - "created": 1608586369.337075, + "asctime": "2020-12-25 15:03:35,121", + "created": 1608905015.121914, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 337.07499504089355, + "msecs": 121.91390991210938, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 30.813932418823242, - "thread": 140534768363328, + "relativeCreated": 11703.730821609497, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" ], - "asctime": "2020-12-21 22:32:49,337", - "created": 1608586369.337135, + "asctime": "2020-12-25 15:03:35,122", + "created": 1608905015.12216, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 122.15995788574219, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11703.97686958313, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:35,122", + "created": 1608905015.122373, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "ut_client_set_channel_name (client): Cleaning up receive-buffer", "module": "__init__", - "msecs": 337.13507652282715, + "msecs": 122.37310409545898, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 30.874013900756836, - "thread": 140534768363328, + "relativeCreated": 11704.190015792847, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:" + "ut_client_set_channel_name (client):" ], - "asctime": "2020-12-21 22:32:49,337", - "created": 1608586369.337222, + "asctime": "2020-12-25 15:03:35,122", + "created": 1608905015.122823, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "ut_client_set_channel_name (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 337.2220993041992, + "msecs": 122.82299995422363, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 30.961036682128906, - "thread": 140534768363328, + "relativeCreated": 11704.639911651611, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:35,123", + "created": 1608905015.123072, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 123.07190895080566, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11704.888820648193, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):", 0, - 10, - 45054, - "{u'test': u'test'}" + 5, + 0, + "None" ], - "asctime": "2020-12-21 22:32:49,337", - "created": 1608586369.337291, + "asctime": "2020-12-25 15:03:35,123", + "created": 1608905015.123278, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 337.29100227355957, + "msecs": 123.27790260314941, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 31.029939651489258, - "thread": 140534768363328, + "relativeCreated": 11705.094814300537, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:49,337", - "created": 1608586369.337406, + "asctime": "2020-12-25 15:03:35,123", + "created": 1608905015.123739, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "lineno": 60, + "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 dd ae a2 7d", "module": "test_helpers", - "msecs": 337.4059200286865, - "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "msecs": 123.73900413513184, + "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 dd ae a2 7d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 31.14485740661621, - "thread": 140534768363328, + "relativeCreated": 11705.55591583252, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:35,124", + "created": 1608905015.124533, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 124.53293800354004, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11706.349849700928, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:32:49,488", - "created": 1608586369.488249, + "asctime": "2020-12-25 15:03:35,274", + "created": 1608905015.274944, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "lineno": 71, + "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 dd ae a2 7d", "module": "test_helpers", - "msecs": 488.2490634918213, - "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", + "msecs": 274.9440670013428, + "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 dd ae a2 7d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 181.98800086975098, - "thread": 140534747334400, - "threadName": "Thread-1" + "relativeCreated": 11856.76097869873, + "thread": 140137899009792, + "threadName": "Thread-34" }, { "args": [ - "SJP:", + "ut_client_set_channel_name (client):", "0", - "10", - "45054", - "{u'test': u'test'}" + "5", + "0", + "None" ], - "asctime": "2020-12-21 22:32:49,488", - "created": 1608586369.48885, + "asctime": "2020-12-25 15:03:35,275", + "created": 1608905015.275414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", + "lineno": 296, + "message": "ut_client_set_channel_name (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 488.8501167297363, + "msecs": 275.41399002075195, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 182.58905410766602, - "thread": 140534747334400, - "threadName": "Thread-1" + "relativeCreated": 11857.23090171814, + "thread": 140137899009792, + "threadName": "Thread-34" }, { "args": [ - "SJP:", - "response_data_method" + "ut_client_set_channel_name (client):", + "__channel_name_request__" ], - "asctime": "2020-12-21 22:32:49,489", - "created": 1608586369.489085, + "asctime": "2020-12-25 15:03:35,275", + "created": 1608905015.275677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "ut_client_set_channel_name (client): Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 489.08495903015137, + "msecs": 275.676965713501, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 182.82389640808105, - "thread": 140534747334400, - "threadName": "Thread-1" + "relativeCreated": 11857.493877410889, + "thread": 140137899009792, + "threadName": "Thread-34" }, { "args": [ - "SJP:", - 5, - 11, - 45054, - "[1, 3, u's']" + "ut_client_set_channel_name (client):", + 0, + 6, + 0, + "u'ut_client_set_channel_name'" ], - "asctime": "2020-12-21 22:32:49,489", - "created": 1608586369.48929, + "asctime": "2020-12-25 15:03:35,275", + "created": 1608905015.275915, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 383, + "message": "ut_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"u'ut_client_set_channel_name'\"", "module": "__init__", - "msecs": 489.2899990081787, + "msecs": 275.91490745544434, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 183.0289363861084, - "thread": 140534747334400, - "threadName": "Thread-1" + "relativeCreated": 11857.731819152832, + "thread": 140137899009792, + "threadName": "Thread-34" }, { "args": [], - "asctime": "2020-12-21 22:32:49,489", - "created": 1608586369.489674, + "asctime": "2020-12-25 15:03:35,276", + "created": 1608905015.276486, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "lineno": 60, + "message": "Send data: (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 71 b2 b8 9d", "module": "test_helpers", - "msecs": 489.6740913391113, - "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "msecs": 276.4859199523926, + "msg": "Send data: (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 71 b2 b8 9d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 183.41302871704102, - "thread": 140534747334400, - "threadName": "Thread-1" + "relativeCreated": 11858.30283164978, + "thread": 140137899009792, + "threadName": "Thread-34" }, { "args": [], - "asctime": "2020-12-21 22:32:49,640", - "created": 1608586369.640927, + "asctime": "2020-12-25 15:03:35,427", + "created": 1608905015.427782, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "lineno": 71, + "message": "Receive data (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 71 b2 b8 9d", "module": "test_helpers", - "msecs": 640.9270763397217, - "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", + "msecs": 427.7820587158203, + "msg": "Receive data (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 71 b2 b8 9d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 334.66601371765137, - "thread": 140534738941696, - "threadName": "Thread-2" + "relativeCreated": 12009.598970413208, + "thread": 140137890617088, + "threadName": "Thread-35" }, { "args": [ - "SJP:", - "5", - "11", - "45054", - "[1, 3, u's']" + "socket_protocol (server):", + "0", + "6", + "0", + "u'ut_client_set_channel_name'" ], - "asctime": "2020-12-21 22:32:49,641", - "created": 1608586369.641444, + "asctime": "2020-12-25 15:03:35,428", + "created": 1608905015.428217, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 265, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", + "lineno": 296, + "message": "socket_protocol (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"u'ut_client_set_channel_name'\"", "module": "__init__", - "msecs": 641.4439678192139, + "msecs": 428.21693420410156, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 335.18290519714355, - "thread": 140534738941696, - "threadName": "Thread-2" + "relativeCreated": 12010.03384590149, + "thread": 140137890617088, + "threadName": "Thread-35" }, { "args": [ - "SJP:", - "Operation not permitted" + "socket_protocol (server):", + "ut_response_callback" ], - "asctime": "2020-12-21 22:32:49,641", - "created": 1608586369.641723, + "asctime": "2020-12-25 15:03:35,428", + "created": 1608905015.428467, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "socket_protocol (server): Executing callback ut_response_callback to process received data", "module": "__init__", - "msecs": 641.7229175567627, - "msg": "%s Received message has a peculiar status: %s", + "msecs": 428.4670352935791, + "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 335.4618549346924, - "thread": 140534738941696, - "threadName": "Thread-2" + "relativeCreated": 12010.283946990967, + "thread": 140137890617088, + "threadName": "Thread-35" }, { "args": [ - "SJP:" + "ut_client_set_channel_name (server):", + "u'ut_client_set_channel_name'" ], - "asctime": "2020-12-21 22:32:49,641", - "created": 1608586369.641946, + "asctime": "2020-12-25 15:03:35,428", + "created": 1608905015.428671, "exc_info": null, "exc_text": null, "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "funcName": "__channel_name_response__", + "levelname": "INFO", + "levelno": 20, + "lineno": 244, + "message": "ut_client_set_channel_name (server): channel name is now u'ut_client_set_channel_name'", "module": "__init__", - "msecs": 641.9460773468018, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "msecs": 428.67088317871094, + "msg": "%s channel name is now %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 335.68501472473145, - "thread": 140534738941696, - "threadName": "Thread-2" + "relativeCreated": 12010.487794876099, + "thread": 140137890617088, + "threadName": "Thread-35" } ], - "msecs": 839.371919631958, - "msg": "Send and received data by struct_json_protocol.", + "msecs": 430.62710762023926, + "msg": "Initiating communication including channel_name exchange.", "name": "__tLogger__", - "pathname": "src/tests/test_normal_operation.py", - "process": 115431, + "pathname": "src/tests/test_channel_name.py", + "process": 219824, "processName": "MainProcess", - "relativeCreated": 533.1108570098877, - "thread": 140534768363328, + "relativeCreated": 12012.444019317627, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.19742584228515625 + "time_consumption": 0.0019562244415283203 }, { "args": [ - "True", - "" + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,840", - "created": 1608586369.840266, + "asctime": "2020-12-25 15:03:35,431", + "created": 1608905015.431541, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15310,17 +16326,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 142, - "message": "Return value of send method is correct (Content True and Type is ).", + "message": "Channel name for server is correct (Content u'ut_client_set_channel_name' and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Return value of send method", - "True", - "" + "Channel name for server", + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,839", - "created": 1608586369.839868, + "asctime": "2020-12-25 15:03:35,431", + "created": 1608905015.431147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15328,26 +16344,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Return value of send method): True ()", + "message": "Result (Channel name for server): u'ut_client_set_channel_name' ()", "module": "test", - "msecs": 839.8680686950684, + "msecs": 431.14709854125977, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 533.607006072998, - "thread": 140534768363328, + "relativeCreated": 12012.964010238647, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "Return value of send method", - "True", - "" + "Channel name for server", + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,840", - "created": 1608586369.840065, + "asctime": "2020-12-25 15:03:35,431", + "created": 1608905015.431355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15355,37 +16371,37 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Return value of send method): result = True ()", + "message": "Expectation (Channel name for server): result = u'ut_client_set_channel_name' ()", "module": "test", - "msecs": 840.0650024414062, + "msecs": 431.3549995422363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 533.8039398193359, - "thread": 140534768363328, + "relativeCreated": 12013.171911239624, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 840.2659893035889, - "msg": "Return value of send method is correct (Content %s and Type is %s).", + "msecs": 431.54096603393555, + "msg": "Channel name for server is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 534.0049266815186, - "thread": 140534768363328, + "relativeCreated": 12013.357877731323, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.0002009868621826172 + "time_consumption": 0.00018596649169921875 }, { "args": [ - "0", - "" + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,840", - "created": 1608586369.840878, + "asctime": "2020-12-25 15:03:35,432", + "created": 1608905015.432165, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15393,17 +16409,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 142, - "message": "Request Status (Okay) transfered via struct_json_protocol is correct (Content 0 and Type is ).", + "message": "Channel name for client is correct (Content u'ut_client_set_channel_name' and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "Request Status (Okay) transfered via struct_json_protocol", - "0", - "" + "Channel name for client", + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,840", - "created": 1608586369.840526, + "asctime": "2020-12-25 15:03:35,431", + "created": 1608905015.431819, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15411,26 +16427,26 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", + "message": "Result (Channel name for client): u'ut_client_set_channel_name' ()", "module": "test", - "msecs": 840.5261039733887, + "msecs": 431.81896209716797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 534.2650413513184, - "thread": 140534768363328, + "relativeCreated": 12013.635873794556, + "thread": 140137920038720, "threadName": "MainThread" }, { "args": [ - "Request Status (Okay) transfered via struct_json_protocol", - "0", - "" + "Channel name for client", + "u'ut_client_set_channel_name'", + "" ], - "asctime": "2020-12-21 22:32:49,840", - "created": 1608586369.840682, + "asctime": "2020-12-25 15:03:35,431", + "created": 1608905015.431989, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15438,511 +16454,2070 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 26, - "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", + "message": "Expectation (Channel name for client): result = u'ut_client_set_channel_name' ()", "module": "test", - "msecs": 840.6820297241211, + "msecs": 431.9889545440674, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 534.4209671020508, - "thread": 140534768363328, + "relativeCreated": 12013.805866241455, + "thread": 140137920038720, "threadName": "MainThread" } ], - "msecs": 840.8780097961426, - "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", + "msecs": 432.16490745544434, + "msg": "Channel name for client is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115431, + "process": 219824, "processName": "MainProcess", - "relativeCreated": 534.6169471740723, - "thread": 140534768363328, + "relativeCreated": 12013.981819152832, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.00019598007202148438 - }, - { - "args": [ - "{u'test': u'test'}", - "" - ], - "asctime": "2020-12-21 22:32:49,841", - "created": 1608586369.841519, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Request Data transfered via struct_json_protocol is correct (Content {u'test': u'test'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Request Data transfered via struct_json_protocol", - "{ u'test': u'test' }", - "" - ], - "asctime": "2020-12-21 22:32:49,841", - "created": 1608586369.84115, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Request Data transfered via struct_json_protocol): { u'test': u'test' } ()", - "module": "test", - "msecs": 841.1500453948975, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 534.8889827728271, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Request Data transfered via struct_json_protocol", - "{ u'test': u'test' }", - "" - ], - "asctime": "2020-12-21 22:32:49,841", - "created": 1608586369.841311, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Request Data transfered via struct_json_protocol): result = { u'test': u'test' } ()", - "module": "test", - "msecs": 841.310977935791, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 535.0499153137207, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 841.5191173553467, - "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 535.2580547332764, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.00020813941955566406 - }, - { - "args": [ - "5", - "" - ], - "asctime": "2020-12-21 22:32:49,842", - "created": 1608586369.842065, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content 5 and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Response Status (Operation not permitted) transfered via struct_json_protocol", - "5", - "" - ], - "asctime": "2020-12-21 22:32:49,841", - "created": 1608586369.841769, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", - "module": "test", - "msecs": 841.7689800262451, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 535.5079174041748, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Response Status (Operation not permitted) transfered via struct_json_protocol", - "5", - "" - ], - "asctime": "2020-12-21 22:32:49,841", - "created": 1608586369.841919, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", - "module": "test", - "msecs": 841.9189453125, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 535.6578826904297, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 842.0650959014893, - "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 535.804033279419, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.0001461505889892578 - }, - { - "args": [ - "[1, 3, u's']", - "" - ], - "asctime": "2020-12-21 22:32:49,842", - "created": 1608586369.842719, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Response Data transfered via struct_json_protocol is correct (Content [1, 3, u's'] and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Response Data transfered via struct_json_protocol", - "[ 1, 3, u's' ]", - "" - ], - "asctime": "2020-12-21 22:32:49,842", - "created": 1608586369.842329, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, u's' ] ()", - "module": "test", - "msecs": 842.3290252685547, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 536.0679626464844, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Response Data transfered via struct_json_protocol", - "[ 1, 3, u's' ]", - "" - ], - "asctime": "2020-12-21 22:32:49,842", - "created": 1608586369.842491, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, u's' ] ()", - "module": "test", - "msecs": 842.4909114837646, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 536.2298488616943, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 842.7190780639648, - "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 536.4580154418945, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.0002281665802001953 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2020-12-21 22:32:49,944", - "created": 1608586369.944515, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "SJP:", - "0.1", - "11", - "45054" - ], - "asctime": "2020-12-21 22:32:49,943", - "created": 1608586369.943269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", - "module": "__init__", - "msecs": 943.2690143585205, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 637.0079517364502, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe", - "None", - "" - ], - "asctime": "2020-12-21 22:32:49,943", - "created": 1608586369.943811, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", - "module": "test", - "msecs": 943.8109397888184, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 637.549877166748, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe", - "None", - "" - ], - "asctime": "2020-12-21 22:32:49,944", - "created": 1608586369.944175, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", - "module": "test", - "msecs": 944.1750049591064, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 637.9139423370361, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 944.5149898529053, - "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 638.253927230835, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.0003399848937988281 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2020-12-21 22:32:50,045", - "created": 1608586370.045552, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "SJP:", - "0.1", - "10", - "45054" - ], - "asctime": "2020-12-21 22:32:50,045", - "created": 1608586370.045087, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", - "module": "__init__", - "msecs": 45.08709907531738, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 738.8260364532471, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe", - "None", - "" - ], - "asctime": "2020-12-21 22:32:50,045", - "created": 1608586370.04533, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", - "module": "test", - "msecs": 45.330047607421875, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 739.0689849853516, - "thread": 140534768363328, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe", - "None", - "" - ], - "asctime": "2020-12-21 22:32:50,045", - "created": 1608586370.045448, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", - "module": "test", - "msecs": 45.44806480407715, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 739.1870021820068, - "thread": 140534768363328, - "threadName": "MainThread" - } - ], - "msecs": 45.55201530456543, - "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115431, - "processName": "MainProcess", - "relativeCreated": 739.2909526824951, - "thread": 140534768363328, - "threadName": "MainThread", - "time_consumption": 0.00010395050048828125 + "time_consumption": 0.00017595291137695312 } ], - "thread": 140534768363328, + "thread": 140137920038720, "threadName": "MainThread", - "time_consumption": 0.7088770866394043, - "time_finished": "2020-12-21 22:32:50,045", - "time_start": "2020-12-21 22:32:49,336" + "time_consumption": 0.31113290786743164, + "time_finished": "2020-12-25 15:03:35,432", + "time_start": "2020-12-25 15:03:35,121" + }, + "socket_protocol: Server and Client setting different channel names.": { + "args": null, + "asctime": "2020-12-25 15:03:35,432", + "created": 1608905015.432616, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 51, + "message": "socket_protocol: Server and Client setting different channel names.", + "module": "__init__", + "moduleLogger": [], + "msecs": 432.6159954071045, + "msg": "socket_protocol: Server and Client setting different channel names.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12014.432907104492, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:35,743", + "created": 1608905015.743026, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,432", + "created": 1608905015.432967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 432.966947555542, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12014.78385925293, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,433", + "created": 1608905015.433471, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 433.4709644317627, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12015.28787612915, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:35,433", + "created": 1608905015.433823, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 433.8231086730957, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12015.640020370483, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:35,434", + "created": 1608905015.434037, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "foo (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 434.0369701385498, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12015.853881835938, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:35,435", + "created": 1608905015.435235, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "foo (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 435.23502349853516, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12017.051935195923, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,435", + "created": 1608905015.435484, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 435.4839324951172, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12017.300844192505, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + 0, + 5, + 0, + "u'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:35,435", + "created": 1608905015.435716, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 435.715913772583, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12017.53282546997, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,436", + "created": 1608905015.436305, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "module": "test_helpers", + "msecs": 436.30504608154297, + "msg": "Send data: (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12018.12195777893, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:35,437", + "created": 1608905015.437063, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "foo (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 437.06297874450684, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12018.879890441895, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,587", + "created": 1608905015.587574, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "module": "test_helpers", + "msecs": 587.5740051269531, + "msg": "Receive data (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12169.39091682434, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [ + "foo (client):", + "0", + "5", + "0", + "u'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:35,588", + "created": 1608905015.588014, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "foo (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 588.0138874053955, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12169.830799102783, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [ + "foo (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:35,588", + "created": 1608905015.588256, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "foo (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 588.2558822631836, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12170.072793960571, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "'foo'", + "u'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:35,588", + "created": 1608905015.588459, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 235, + "message": "ut_server_and_client_set_channel_name (client): overwriting user defined channel name from 'foo' to u'ut_server_and_client_set_channel_name'", + "module": "__init__", + "msecs": 588.4590148925781, + "msg": "%s overwriting user defined channel name from %s to %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12170.275926589966, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:35,588", + "created": 1608905015.588699, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 588.6991024017334, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12170.516014099121, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,589", + "created": 1608905015.589197, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 589.1969203948975, + "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12171.013832092285, + "thread": 140137890617088, + "threadName": "Thread-36" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,740", + "created": 1608905015.740416, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 740.4160499572754, + "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12322.232961654663, + "thread": 140137899009792, + "threadName": "Thread-37" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:35,740", + "created": 1608905015.740946, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "ut_server_and_client_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 740.9460544586182, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12322.762966156006, + "thread": 140137899009792, + "threadName": "Thread-37" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:35,741", + "created": 1608905015.741262, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_and_client_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 741.2619590759277, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12323.078870773315, + "thread": 140137899009792, + "threadName": "Thread-37" + } + ], + "msecs": 743.0260181427002, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12324.842929840088, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.001764059066772461 + }, + { + "args": [ + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,743", + "created": 1608905015.743953, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content u'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,743", + "created": 1608905015.743558, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 743.5579299926758, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12325.374841690063, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,743", + "created": 1608905015.743768, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 743.7679767608643, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12325.584888458252, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 743.9529895782471, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12325.769901275635, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.0001850128173828125 + }, + { + "args": [ + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,744", + "created": 1608905015.744553, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content u'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,744", + "created": 1608905015.744221, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 744.2209720611572, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12326.037883758545, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,744", + "created": 1608905015.744388, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 744.3881034851074, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12326.205015182495, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 744.5530891418457, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12326.370000839233, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00016498565673828125 + } + ], + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.3119370937347412, + "time_finished": "2020-12-25 15:03:35,744", + "time_start": "2020-12-25 15:03:35,432" + }, + "socket_protocol: Server and Client setting the same channel name.": { + "args": null, + "asctime": "2020-12-25 15:03:35,745", + "created": 1608905015.745022, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 52, + "message": "socket_protocol: Server and Client setting the same channel name.", + "module": "__init__", + "moduleLogger": [], + "msecs": 745.0220584869385, + "msg": "socket_protocol: Server and Client setting the same channel name.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12326.838970184326, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:36,055", + "created": 1608905016.055325, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,745", + "created": 1608905015.745366, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 745.366096496582, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12327.18300819397, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,745", + "created": 1608905015.745986, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 745.9859848022461, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12327.802896499634, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:35,746", + "created": 1608905015.746326, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 746.3259696960449, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12328.142881393433, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:35,746", + "created": 1608905015.746538, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 746.5379238128662, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12328.354835510254, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:35,746", + "created": 1608905015.746995, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 746.9949722290039, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12328.811883926392, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:35,747", + "created": 1608905015.747284, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 747.283935546875, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12329.100847244263, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + 0, + 5, + 0, + "u'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:35,747", + "created": 1608905015.747538, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 747.5380897521973, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12329.355001449585, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,748", + "created": 1608905015.748201, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "module": "test_helpers", + "msecs": 748.2008934020996, + "msg": "Send data: (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12330.017805099487, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:35,749", + "created": 1608905015.749011, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 749.0110397338867, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12330.827951431274, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,899", + "created": 1608905015.89952, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "module": "test_helpers", + "msecs": 899.5199203491211, + "msg": "Receive data (97): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c6 3d f9 62", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12481.336832046509, + "thread": 140137899009792, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "0", + "5", + "0", + "u'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:35,899", + "created": 1608905015.89997, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "ut_server_and_client_set_channel_name (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 899.9700546264648, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12481.786966323853, + "thread": 140137899009792, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:35,900", + "created": 1608905015.900369, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "ut_server_and_client_set_channel_name (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 900.3689289093018, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12482.18584060669, + "thread": 140137899009792, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:35,900", + "created": 1608905015.900639, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 900.6390571594238, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12482.455968856812, + "thread": 140137899009792, + "threadName": "Thread-38" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,901", + "created": 1608905015.901128, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 901.1280536651611, + "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12482.944965362549, + "thread": 140137899009792, + "threadName": "Thread-38" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:36,052", + "created": 1608905016.052372, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 52.371978759765625, + "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12634.188890457153, + "thread": 140137890617088, + "threadName": "Thread-39" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:36,052", + "created": 1608905016.052837, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "ut_server_and_client_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 52.83689498901367, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12634.653806686401, + "thread": 140137890617088, + "threadName": "Thread-39" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:36,053", + "created": 1608905016.053108, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_and_client_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 53.10797691345215, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12634.92488861084, + "thread": 140137890617088, + "threadName": "Thread-39" + } + ], + "msecs": 55.32503128051758, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12637.141942977905, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.0022170543670654297 + }, + { + "args": [ + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,056", + "created": 1608905016.056228, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content u'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,055", + "created": 1608905016.055835, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 55.83500862121582, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12637.651920318604, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,056", + "created": 1608905016.056043, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 56.04290962219238, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12637.85982131958, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 56.227922439575195, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12638.044834136963, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.0001850128173828125 + }, + { + "args": [ + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,056", + "created": 1608905016.056856, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content u'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,056", + "created": 1608905016.056507, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 56.507110595703125, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12638.32402229309, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "u'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:36,056", + "created": 1608905016.056678, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = u'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 56.678056716918945, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12638.494968414307, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 56.85591697692871, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 12638.672828674316, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00017786026000976562 + } + ], + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.31183385848999023, + "time_finished": "2020-12-25 15:03:36,056", + "time_start": "2020-12-25 15:03:35,745" + }, + "socket_protocol: Server setting the channel name.": { + "args": null, + "asctime": "2020-12-25 15:03:34,809", + "created": 1608905014.809431, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 49, + "message": "socket_protocol: Server setting the channel name.", + "module": "__init__", + "moduleLogger": [], + "msecs": 809.4310760498047, + "msg": "socket_protocol: Server setting the channel name.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11391.247987747192, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:35,119", + "created": 1608905015.119019, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:34,809", + "created": 1608905014.809781, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 809.7810745239258, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11391.597986221313, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:34,810", + "created": 1608905014.810363, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 810.3630542755127, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11392.1799659729, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:34,810", + "created": 1608905014.810614, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 810.6141090393066, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11392.431020736694, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:34,810", + "created": 1608905014.810798, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 810.797929763794, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11392.614841461182, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:34,811", + "created": 1608905014.811172, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "socket_protocol (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 811.1720085144043, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11392.988920211792, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:34,811", + "created": 1608905014.811374, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 811.3739490509033, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11393.190860748291, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + 0, + 5, + 0, + "u'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:34,811", + "created": 1608905014.811557, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_set_channel_name'\"", + "module": "__init__", + "msecs": 811.5570545196533, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11393.373966217041, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:34,812", + "created": 1608905014.812043, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 81 c2 44 8c", + "module": "test_helpers", + "msecs": 812.0429515838623, + "msg": "Send data: (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 81 c2 44 8c", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11393.85986328125, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:34,812", + "created": 1608905014.812806, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 812.8058910369873, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11394.622802734375, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:34,963", + "created": 1608905014.963219, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 81 c2 44 8c", + "module": "test_helpers", + "msecs": 963.2189273834229, + "msg": "Receive data (86): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 22 75 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 81 c2 44 8c", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11545.03583908081, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [ + "socket_protocol (client):", + "0", + "5", + "0", + "u'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:34,963", + "created": 1608905014.963643, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "socket_protocol (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"u'ut_server_set_channel_name'\"", + "module": "__init__", + "msecs": 963.6430740356445, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11545.459985733032, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [ + "socket_protocol (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:34,963", + "created": 1608905014.963863, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "socket_protocol (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 963.8628959655762, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11545.679807662964, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [ + "ut_server_set_channel_name (client):", + "u'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:34,964", + "created": 1608905014.964043, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "INFO", + "levelno": 20, + "lineno": 237, + "message": "ut_server_set_channel_name (client): channel name is now u'ut_server_set_channel_name'", + "module": "__init__", + "msecs": 964.0429019927979, + "msg": "%s channel name is now %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11545.859813690186, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [ + "ut_server_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:34,964", + "created": 1608905014.964228, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 964.2279148101807, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11546.044826507568, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:34,964", + "created": 1608905014.964689, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 964.6890163421631, + "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11546.50592803955, + "thread": 140137890617088, + "threadName": "Thread-32" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:35,115", + "created": 1608905015.115841, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "module": "test_helpers", + "msecs": 115.84091186523438, + "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 99 0f 87 65", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11697.657823562622, + "thread": 140137899009792, + "threadName": "Thread-33" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:35,116", + "created": 1608905015.11631, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "ut_server_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 116.30988121032715, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11698.126792907715, + "thread": 140137899009792, + "threadName": "Thread-33" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:35,116", + "created": 1608905015.116585, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 116.58501625061035, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11698.401927947998, + "thread": 140137899009792, + "threadName": "Thread-33" + } + ], + "msecs": 119.0190315246582, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11700.835943222046, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.0024340152740478516 + }, + { + "args": [ + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,119", + "created": 1608905015.119945, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content u'ut_server_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,119", + "created": 1608905015.119553, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): u'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 119.5530891418457, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11701.370000839233, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,119", + "created": 1608905015.119762, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = u'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 119.76194381713867, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11701.578855514526, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 119.94504928588867, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11701.761960983276, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00018310546875 + }, + { + "args": [ + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,120", + "created": 1608905015.120567, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content u'ut_server_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,120", + "created": 1608905015.120232, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): u'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 120.23210525512695, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11702.049016952515, + "thread": 140137920038720, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "u'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:35,120", + "created": 1608905015.120402, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = u'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 120.40209770202637, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11702.219009399414, + "thread": 140137920038720, + "threadName": "MainThread" + } + ], + "msecs": 120.56708335876465, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219824, + "processName": "MainProcess", + "relativeCreated": 11702.383995056152, + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.00016498565673828125 + } + ], + "thread": 140137920038720, + "threadName": "MainThread", + "time_consumption": 0.31113600730895996, + "time_finished": "2020-12-25 15:03:35,120", + "time_start": "2020-12-25 15:03:34,809" } }, "testrun_id": "p2", - "time_consumption": 11.323579788208008, + "time_consumption": 12.59890604019165, "uid_list_sorted": [ "socket_protocol.struct_json_protocol: Send and receive check.", "socket_protocol.pure_json_protocol: Send and receive check.", @@ -15956,9 +18531,12 @@ "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", - "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "socket_protocol.pure_json_protocol: Authentification processed without secret.", - "socket_protocol.pure_json_protocol: Incompatible Callback return value(s)." + "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", + "socket_protocol: Server setting the channel name.", + "socket_protocol: Client setting the channel name.", + "socket_protocol: Server and Client setting different channel names.", + "socket_protocol: Server and Client setting the same channel name." ] }, { @@ -15967,8 +18545,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 15, - "number_of_tests": 15, + "number_of_successfull_tests": 18, + "number_of_tests": 18, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -15979,8 +18557,8 @@ "testcases": { "socket_protocol.pure_json_protocol: Authentification processed without secret.": { "args": null, - "asctime": "2020-12-21 22:33:12,089", - "created": 1608586392.0895512, + "asctime": "2020-12-25 15:03:47,476", + "created": 1608905027.4760745, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15991,153 +18569,153 @@ "message": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "module": "__init__", "moduleLogger": [], - "msecs": 89.55121040344238, + "msecs": 476.0744571685791, "msg": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11001.858234405518, + "relativeCreated": 10995.416641235352, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:12,090", - "created": 1608586392.090681, + "asctime": "2020-12-25 15:03:47,477", + "created": 1608905027.4774368, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", "funcName": "authentification_no_secret", "levelname": "DEBUG", "levelno": 10, - "lineno": 109, + "lineno": 90, "message": "Authentification with no secret definition (pure_json_protocol).", "module": "test_handling_errors", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,089", - "created": 1608586392.0898035, + "asctime": "2020-12-25 15:03:47,476", + "created": 1608905027.476374, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 89.80345726013184, + "msecs": 476.37391090393066, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11002.110481262207, + "relativeCreated": 10995.716094970703, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,090", - "created": 1608586392.0900793, + "asctime": "2020-12-25 15:03:47,476", + "created": 1608905027.4767544, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 90.07930755615234, + "msecs": 476.75442695617676, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11002.386331558228, + "relativeCreated": 10996.09661102295, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,090", - "created": 1608586392.0902584, + "asctime": "2020-12-25 15:03:47,476", + "created": 1608905027.4769511, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 90.25835990905762, + "msecs": 476.95112228393555, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11002.565383911133, + "relativeCreated": 10996.293306350708, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,090", - "created": 1608586392.090507, + "asctime": "2020-12-25 15:03:47,477", + "created": 1608905027.477274, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 90.50703048706055, + "msecs": 477.27394104003906, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11002.814054489136, + "relativeCreated": 10996.616125106812, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 90.68107604980469, + "msecs": 477.43678092956543, "msg": "Authentification with no secret definition (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11002.98810005188, + "relativeCreated": 10996.778964996338, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00017404556274414062 + "time_consumption": 0.0001628398895263672 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:33:12,091", - "created": 1608586392.0913703, + "asctime": "2020-12-25 15:03:47,477", + "created": 1608905027.477983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16154,8 +18732,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:12,090", - "created": 1608586392.0909271, + "asctime": "2020-12-25 15:03:47,477", + "created": 1608905027.4776971, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16165,15 +18743,15 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 90.9271240234375, + "msecs": 477.69713401794434, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11003.234148025513, + "relativeCreated": 10997.039318084717, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -16182,8 +18760,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:12,091", - "created": 1608586392.0911827, + "asctime": "2020-12-25 15:03:47,477", + "created": 1608905027.4778414, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16193,64 +18771,64 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 91.18270874023438, + "msecs": 477.8413772583008, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11003.48973274231, + "relativeCreated": 10997.183561325073, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 91.3703441619873, + "msecs": 477.9829978942871, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11003.677368164062, + "relativeCreated": 10997.32518196106, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001876354217529297 + "time_consumption": 0.00014162063598632812 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0018191337585449219, - "time_finished": "2020-12-21 22:33:12,091", - "time_start": "2020-12-21 22:33:12,089" + "time_consumption": 0.0019085407257080078, + "time_finished": "2020-12-25 15:03:47,477", + "time_start": "2020-12-25 15:03:47,476" }, "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.": { "args": null, - "asctime": "2020-12-21 22:33:10,675", - "created": 1608586390.675439, + "asctime": "2020-12-25 15:03:46,063", + "created": 1608905026.0630853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 42, + "lineno": 43, "message": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "module": "__init__", "moduleLogger": [], - "msecs": 675.4388809204102, + "msecs": 63.085317611694336, "msg": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9587.745904922485, + "relativeCreated": 9582.427501678467, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:11,882", - "created": 1608586391.882332, + "asctime": "2020-12-25 15:03:47,270", + "created": 1608905027.2707965, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -16263,1094 +18841,1094 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,675", - "created": 1608586390.6757958, + "asctime": "2020-12-25 15:03:46,063", + "created": 1608905026.0634058, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 675.7957935333252, + "msecs": 63.405752182006836, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9588.1028175354, + "relativeCreated": 9582.74793624878, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,676", - "created": 1608586390.6760828, + "asctime": "2020-12-25 15:03:46,063", + "created": 1608905026.0637796, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 676.0828495025635, + "msecs": 63.779592514038086, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9588.389873504639, + "relativeCreated": 9583.12177658081, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,676", - "created": 1608586390.6762457, + "asctime": "2020-12-25 15:03:46,064", + "created": 1608905026.0645163, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 676.2456893920898, + "msecs": 64.51630592346191, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9588.552713394165, + "relativeCreated": 9583.858489990234, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,676", - "created": 1608586390.67647, + "asctime": "2020-12-25 15:03:46,064", + "created": 1608905026.0648627, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 676.4700412750244, + "msecs": 64.86272811889648, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9588.7770652771, + "relativeCreated": 9584.204912185669, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,676", - "created": 1608586390.6766467, + "asctime": "2020-12-25 15:03:46,065", + "created": 1608905026.0650804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 676.6467094421387, + "msecs": 65.08040428161621, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9588.953733444214, + "relativeCreated": 9584.422588348389, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:33:10,676", - "created": 1608586390.6768377, + "asctime": "2020-12-25 15:03:46,065", + "created": 1608905026.0652378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 676.837682723999, + "msecs": 65.23776054382324, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9589.144706726074, + "relativeCreated": 9584.579944610596, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:10,677", - "created": 1608586390.6771688, + "asctime": "2020-12-25 15:03:46,065", + "created": 1608905026.0656123, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 677.1688461303711, + "msecs": 65.6123161315918, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9589.475870132446, + "relativeCreated": 9584.954500198364, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:10,827", - "created": 1608586390.8279712, + "asctime": "2020-12-25 15:03:46,216", + "created": 1608905026.2165337, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 827.9712200164795, + "msecs": 216.53366088867188, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9740.278244018555, + "relativeCreated": 9735.875844955444, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "1", "0", "None" ], - "asctime": "2020-12-21 22:33:10,828", - "created": 1608586390.828376, + "asctime": "2020-12-25 15:03:46,216", + "created": 1608905026.2169552, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 828.376054763794, + "msecs": 216.95518493652344, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9740.68307876587, + "relativeCreated": 9736.297369003296, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_seed__" ], - "asctime": "2020-12-21 22:33:10,828", - "created": 1608586390.8286057, + "asctime": "2020-12-25 15:03:46,217", + "created": 1608905026.2171986, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 828.6056518554688, + "msecs": 217.19861030578613, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9740.912675857544, + "relativeCreated": 9736.540794372559, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,828", - "created": 1608586390.828802, + "asctime": "2020-12-25 15:03:46,217", + "created": 1608905026.2174532, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 422, - "message": "SJP: Got seed request, sending seed for authentification", + "lineno": 453, + "message": "socket_protocol (server): Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 828.8021087646484, + "msecs": 217.4532413482666, "msg": "%s Got seed request, sending seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9741.109132766724, + "relativeCreated": 9736.795425415039, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 2, 0, - "'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'" + "'c40ab7346f50e5b60ae8910a9ec440251cf4dcc13c6ed66d766926bb96d02b92'" ], - "asctime": "2020-12-21 22:33:10,829", - "created": 1608586390.8290029, + "asctime": "2020-12-25 15:03:46,217", + "created": 1608905026.2177138, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 2, data_id: 0, data: \"'c40ab7346f50e5b60ae8910a9ec440251cf4dcc13c6ed66d766926bb96d02b92'\"", "module": "__init__", - "msecs": 829.002857208252, + "msecs": 217.7138328552246, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9741.309881210327, + "relativeCreated": 9737.056016921997, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-12-21 22:33:10,829", - "created": 1608586390.8294759, + "asctime": "2020-12-25 15:03:46,218", + "created": 1608905026.2181745, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", + "lineno": 60, + "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 34 30 61 62 37 33 34 36 66 35 30 65 35 62 36 30 61 65 38 39 31 30 61 39 65 63 34 34 30 32 35 31 63 66 34 64 63 63 31 33 63 36 65 64 36 36 64 37 36 36 39 32 36 62 62 39 36 64 30 32 62 39 32 22 7d 96 af 40 61", "module": "test_helpers", - "msecs": 829.4758796691895, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", + "msecs": 218.17445755004883, + "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 34 30 61 62 37 33 34 36 66 35 30 65 35 62 36 30 61 65 38 39 31 30 61 39 65 63 34 34 30 32 35 31 63 66 34 64 63 63 31 33 63 36 65 64 36 36 64 37 36 36 39 32 36 62 62 39 36 64 30 32 62 39 32 22 7d 96 af 40 61", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9741.782903671265, + "relativeCreated": 9737.516641616821, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-12-21 22:33:10,980", - "created": 1608586390.9806073, + "asctime": "2020-12-25 15:03:46,369", + "created": 1608905026.3692222, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", + "lineno": 71, + "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 34 30 61 62 37 33 34 36 66 35 30 65 35 62 36 30 61 65 38 39 31 30 61 39 65 63 34 34 30 32 35 31 63 66 34 64 63 63 31 33 63 36 65 64 36 36 64 37 36 36 39 32 36 62 62 39 36 64 30 32 62 39 32 22 7d 96 af 40 61", "module": "test_helpers", - "msecs": 980.607271194458, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", + "msecs": 369.22216415405273, + "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 34 30 61 62 37 33 34 36 66 35 30 65 35 62 36 30 61 65 38 39 31 30 61 39 65 63 34 34 30 32 35 31 63 66 34 64 63 63 31 33 63 36 65 64 36 36 64 37 36 36 39 32 36 62 62 39 36 64 30 32 62 39 32 22 7d 96 af 40 61", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9892.914295196533, + "relativeCreated": 9888.564348220825, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "2", "0", - "'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'" + "'c40ab7346f50e5b60ae8910a9ec440251cf4dcc13c6ed66d766926bb96d02b92'" ], - "asctime": "2020-12-21 22:33:10,981", - "created": 1608586390.981065, + "asctime": "2020-12-25 15:03:46,369", + "created": 1608905026.3696594, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 2, data_id: 0, data: \"'c40ab7346f50e5b60ae8910a9ec440251cf4dcc13c6ed66d766926bb96d02b92'\"", "module": "__init__", - "msecs": 981.065034866333, + "msecs": 369.659423828125, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9893.372058868408, + "relativeCreated": 9889.001607894897, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_key__" ], - "asctime": "2020-12-21 22:33:10,981", - "created": 1608586390.9812806, + "asctime": "2020-12-25 15:03:46,369", + "created": 1608905026.3699112, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 981.2805652618408, + "msecs": 369.91119384765625, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9893.587589263916, + "relativeCreated": 9889.253377914429, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,981", - "created": 1608586390.9814525, + "asctime": "2020-12-25 15:03:46,370", + "created": 1608905026.370072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 431, - "message": "SJP: Got seed, sending key for authentification", + "lineno": 462, + "message": "socket_protocol (server): Got seed, sending key for authentification", "module": "__init__", - "msecs": 981.452465057373, + "msecs": 370.0718879699707, "msg": "%s Got seed, sending key for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9893.759489059448, + "relativeCreated": 9889.414072036743, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 3, 0, - "'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'" + "'11d996b5b67233e7fca7b67415b64c59ddb91b794647d88b8fb6164e796bbfcaacadcb03e26fb1343585413357f3381d2e84a663942998b980bee671baa18b2f'" ], - "asctime": "2020-12-21 22:33:10,981", - "created": 1608586390.981671, + "asctime": "2020-12-25 15:03:46,370", + "created": 1608905026.3702958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 3, data_id: 0, data: \"'11d996b5b67233e7fca7b67415b64c59ddb91b794647d88b8fb6164e796bbfcaacadcb03e26fb1343585413357f3381d2e84a663942998b980bee671baa18b2f'\"", "module": "__init__", - "msecs": 981.6710948944092, + "msecs": 370.29576301574707, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9893.978118896484, + "relativeCreated": 9889.63794708252, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-12-21 22:33:10,982", - "created": 1608586390.9822643, + "asctime": "2020-12-25 15:03:46,370", + "created": 1608905026.370853, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", + "lineno": 60, + "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 31 64 39 39 36 62 35 62 36 37 32 33 33 65 37 66 63 61 37 62 36 37 34 31 35 62 36 34 63 35 39 64 64 62 39 31 62 37 39 34 36 34 37 64 38 38 62 38 66 62 36 31 36 34 65 37 39 36 62 62 66 63 61 61 63 61 64 63 62 30 33 65 32 36 66 62 31 33 34 33 35 38 35 34 31 33 33 35 37 66 33 33 38 31 64 32 65 38 34 61 36 36 33 39 34 32 39 39 38 62 39 38 30 62 65 65 36 37 31 62 61 61 31 38 62 32 66 22 7d 96 c4 04 92", "module": "test_helpers", - "msecs": 982.2642803192139, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", + "msecs": 370.8529472351074, + "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 31 64 39 39 36 62 35 62 36 37 32 33 33 65 37 66 63 61 37 62 36 37 34 31 35 62 36 34 63 35 39 64 64 62 39 31 62 37 39 34 36 34 37 64 38 38 62 38 66 62 36 31 36 34 65 37 39 36 62 62 66 63 61 61 63 61 64 63 62 30 33 65 32 36 66 62 31 33 34 33 35 38 35 34 31 33 33 35 37 66 33 33 38 31 64 32 65 38 34 61 36 36 33 39 34 32 39 39 38 62 39 38 30 62 65 65 36 37 31 62 61 61 31 38 62 32 66 22 7d 96 c4 04 92", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9894.571304321289, + "relativeCreated": 9890.19513130188, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-12-21 22:33:11,133", - "created": 1608586391.1333892, + "asctime": "2020-12-25 15:03:46,522", + "created": 1608905026.522071, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", + "lineno": 71, + "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 31 64 39 39 36 62 35 62 36 37 32 33 33 65 37 66 63 61 37 62 36 37 34 31 35 62 36 34 63 35 39 64 64 62 39 31 62 37 39 34 36 34 37 64 38 38 62 38 66 62 36 31 36 34 65 37 39 36 62 62 66 63 61 61 63 61 64 63 62 30 33 65 32 36 66 62 31 33 34 33 35 38 35 34 31 33 33 35 37 66 33 33 38 31 64 32 65 38 34 61 36 36 33 39 34 32 39 39 38 62 39 38 30 62 65 65 36 37 31 62 61 61 31 38 62 32 66 22 7d 96 c4 04 92", "module": "test_helpers", - "msecs": 133.38923454284668, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", + "msecs": 522.0708847045898, + "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 31 64 39 39 36 62 35 62 36 37 32 33 33 65 37 66 63 61 37 62 36 37 34 31 35 62 36 34 63 35 39 64 64 62 39 31 62 37 39 34 36 34 37 64 38 38 62 38 66 62 36 31 36 34 65 37 39 36 62 62 66 63 61 61 63 61 64 63 62 30 33 65 32 36 66 62 31 33 34 33 35 38 35 34 31 33 33 35 37 66 33 33 38 31 64 32 65 38 34 61 36 36 33 39 34 32 39 39 38 62 39 38 30 62 65 65 36 37 31 62 61 61 31 38 62 32 66 22 7d 96 c4 04 92", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10045.696258544922, + "relativeCreated": 10041.413068771362, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "3", "0", - "'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'" + "'11d996b5b67233e7fca7b67415b64c59ddb91b794647d88b8fb6164e796bbfcaacadcb03e26fb1343585413357f3381d2e84a663942998b980bee671baa18b2f'" ], - "asctime": "2020-12-21 22:33:11,133", - "created": 1608586391.133811, + "asctime": "2020-12-25 15:03:46,522", + "created": 1608905026.5225124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 3, data_id: 0, data: \"'11d996b5b67233e7fca7b67415b64c59ddb91b794647d88b8fb6164e796bbfcaacadcb03e26fb1343585413357f3381d2e84a663942998b980bee671baa18b2f'\"", "module": "__init__", - "msecs": 133.81099700927734, + "msecs": 522.5124359130859, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10046.118021011353, + "relativeCreated": 10041.854619979858, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_check_key__" ], - "asctime": "2020-12-21 22:33:11,134", - "created": 1608586391.1340733, + "asctime": "2020-12-25 15:03:46,522", + "created": 1608905026.522731, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_check_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 134.07325744628906, + "msecs": 522.7310657501221, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10046.380281448364, + "relativeCreated": 10042.073249816895, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:11,134", - "created": 1608586391.1342802, + "asctime": "2020-12-25 15:03:46,522", + "created": 1608905026.5229306, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 445, - "message": "SJP: Got incorrect key, sending negative authentification feedback", + "lineno": 476, + "message": "socket_protocol (server): Got incorrect key, sending negative authentification feedback", "module": "__init__", - "msecs": 134.28020477294922, + "msecs": 522.9306221008301, "msg": "%s Got incorrect key, sending negative authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10046.587228775024, + "relativeCreated": 10042.272806167603, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 4, 0, "False" ], - "asctime": "2020-12-21 22:33:11,134", - "created": 1608586391.1345766, + "asctime": "2020-12-25 15:03:46,523", + "created": 1608905026.5231128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 134.57655906677246, + "msecs": 523.1127738952637, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10046.883583068848, + "relativeCreated": 10042.454957962036, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-12-21 22:33:11,135", - "created": 1608586391.135165, + "asctime": "2020-12-25 15:03:46,523", + "created": 1608905026.5234663, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "module": "test_helpers", - "msecs": 135.16497611999512, + "msecs": 523.4663486480713, "msg": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10047.47200012207, + "relativeCreated": 10042.808532714844, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-12-21 22:33:11,286", - "created": 1608586391.2861924, + "asctime": "2020-12-25 15:03:46,674", + "created": 1608905026.6744676, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "module": "test_helpers", - "msecs": 286.1924171447754, + "msecs": 674.4675636291504, "msg": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10198.49944114685, + "relativeCreated": 10193.809747695923, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "4", "0", "False" ], - "asctime": "2020-12-21 22:33:11,286", - "created": 1608586391.286689, + "asctime": "2020-12-25 15:03:46,674", + "created": 1608905026.674899, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 286.68904304504395, + "msecs": 674.8991012573242, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10198.99606704712, + "relativeCreated": 10194.241285324097, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_process_feedback__" ], - "asctime": "2020-12-21 22:33:11,286", - "created": 1608586391.2869031, + "asctime": "2020-12-25 15:03:46,675", + "created": 1608905026.6751125, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 286.90314292907715, + "msecs": 675.1124858856201, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10199.210166931152, + "relativeCreated": 10194.454669952393, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-29" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:11,287", - "created": 1608586391.2870605, + "asctime": "2020-12-25 15:03:46,675", + "created": 1608905026.6752768, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 455, - "message": "SJP: Got negative authentification feedback", + "lineno": 486, + "message": "socket_protocol (server): Got negative authentification feedback", "module": "__init__", - "msecs": 287.0604991912842, + "msecs": 675.2767562866211, "msg": "%s Got negative authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10199.36752319336, + "relativeCreated": 10194.618940353394, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-29" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:11,379", - "created": 1608586391.3795815, + "asctime": "2020-12-25 15:03:46,768", + "created": 1608905026.7682824, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 379.5814514160156, + "msecs": 768.282413482666, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10291.88847541809, + "relativeCreated": 10287.624597549438, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:11,380", - "created": 1608586391.3801787, + "asctime": "2020-12-25 15:03:46,768", + "created": 1608905026.768846, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 380.17868995666504, + "msecs": 768.8460350036621, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10292.48571395874, + "relativeCreated": 10288.188219070435, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:11,531", - "created": 1608586391.5312803, + "asctime": "2020-12-25 15:03:46,919", + "created": 1608905026.9197857, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 531.2802791595459, + "msecs": 919.785737991333, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10443.587303161621, + "relativeCreated": 10439.127922058105, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:11,531", - "created": 1608586391.531724, + "asctime": "2020-12-25 15:03:46,920", + "created": 1608905026.9201288, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 531.7239761352539, + "msecs": 920.1288223266602, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10444.03100013733, + "relativeCreated": 10439.471006393433, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Unknown Client" ], - "asctime": "2020-12-21 22:33:11,531", - "created": 1608586391.5319405, + "asctime": "2020-12-25 15:03:46,920", + "created": 1608905026.9202793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 275, - "message": "SJP: Received message needs authentification: Unknown Client. Sending negative response.", + "lineno": 306, + "message": "socket_protocol (server): Received message needs authentification: Unknown Client. Sending negative response.", "module": "__init__", - "msecs": 531.9404602050781, + "msecs": 920.2792644500732, "msg": "%s Received message needs authentification: %s. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10444.247484207153, + "relativeCreated": 10439.621448516846, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-30" }, { "args": [ - "SJP:", + "socket_protocol (server):", 2, 11, 45054, "None" ], - "asctime": "2020-12-21 22:33:11,532", - "created": 1608586391.532117, + "asctime": "2020-12-25 15:03:46,920", + "created": 1608905026.920394, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 532.1168899536133, + "msecs": 920.3939437866211, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10444.423913955688, + "relativeCreated": 10439.736127853394, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-12-21 22:33:11,532", - "created": 1608586391.5324883, + "asctime": "2020-12-25 15:03:46,920", + "created": 1608905026.9206448, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "module": "test_helpers", - "msecs": 532.4883460998535, + "msecs": 920.6447601318359, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10444.795370101929, + "relativeCreated": 10439.986944198608, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-12-21 22:33:11,683", - "created": 1608586391.683534, + "asctime": "2020-12-25 15:03:47,071", + "created": 1608905027.0714946, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "module": "test_helpers", - "msecs": 683.5339069366455, + "msecs": 71.49457931518555, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10595.84093093872, + "relativeCreated": 10590.836763381958, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-31" }, { "args": [ - "SJP:", + "socket_protocol (server):", "2", "11", "45054", "None" ], - "asctime": "2020-12-21 22:33:11,683", - "created": 1608586391.6839418, + "asctime": "2020-12-25 15:03:47,071", + "created": 1608905027.0718975, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 683.9418411254883, + "msecs": 71.89750671386719, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10596.248865127563, + "relativeCreated": 10591.23969078064, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-31" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Authentification required" ], - "asctime": "2020-12-21 22:33:11,684", - "created": 1608586391.684196, + "asctime": "2020-12-25 15:03:47,072", + "created": 1608905027.0721354, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Authentification required", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Authentification required", "module": "__init__", - "msecs": 684.1959953308105, + "msecs": 72.13544845581055, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10596.503019332886, + "relativeCreated": 10591.477632522583, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-31" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:11,684", - "created": 1608586391.684379, + "asctime": "2020-12-25 15:03:47,072", + "created": 1608905027.0723238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 684.3791007995605, + "msecs": 72.32379913330078, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10596.686124801636, + "relativeCreated": 10591.665983200073, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-31" } ], - "msecs": 882.3320865631104, + "msecs": 270.796537399292, "msg": "Authentification with different secrets for request and response instance (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10794.639110565186, + "relativeCreated": 10790.138721466064, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.1979529857635498 + "time_consumption": 0.1984727382659912 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:33:11,883", - "created": 1608586391.883149, + "asctime": "2020-12-25 15:03:47,271", + "created": 1608905027.2715843, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17367,8 +19945,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:11,882", - "created": 1608586391.8828146, + "asctime": "2020-12-25 15:03:47,271", + "created": 1608905027.2712545, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17378,15 +19956,15 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 882.8146457672119, + "msecs": 271.2545394897461, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.121669769287, + "relativeCreated": 10790.596723556519, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17395,8 +19973,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:11,882", - "created": 1608586391.8829923, + "asctime": "2020-12-25 15:03:47,271", + "created": 1608905027.2714312, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17406,37 +19984,37 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 882.9922676086426, + "msecs": 271.43120765686035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.299291610718, + "relativeCreated": 10790.773391723633, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 883.1489086151123, + "msecs": 271.58427238464355, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.455932617188, + "relativeCreated": 10790.926456451416, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015664100646972656 + "time_consumption": 0.00015306472778320312 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:11,883", - "created": 1608586391.8836803, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.2721083, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17453,8 +20031,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:11,883", - "created": 1608586391.8833723, + "asctime": "2020-12-25 15:03:47,271", + "created": 1608905027.2718062, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17464,15 +20042,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 883.3723068237305, + "msecs": 271.8062400817871, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.679330825806, + "relativeCreated": 10791.14842414856, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17481,8 +20059,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:11,883", - "created": 1608586391.883515, + "asctime": "2020-12-25 15:03:47,271", + "created": 1608905027.271971, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17492,37 +20070,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 883.5148811340332, + "msecs": 271.9709873199463, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.821905136108, + "relativeCreated": 10791.313171386719, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 883.6803436279297, + "msecs": 272.1083164215088, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10795.987367630005, + "relativeCreated": 10791.450500488281, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016546249389648438 + "time_consumption": 0.0001373291015625 }, { "args": [ "2", "" ], - "asctime": "2020-12-21 22:33:11,884", - "created": 1608586391.8841856, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.2725983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17539,8 +20117,8 @@ "2", "" ], - "asctime": "2020-12-21 22:33:11,883", - "created": 1608586391.8839102, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.2723262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17550,15 +20128,15 @@ "lineno": 22, "message": "Result (Response Status (Authentification required) transfered via pure_json_protocol): 2 ()", "module": "test", - "msecs": 883.9101791381836, + "msecs": 272.3262310028076, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.217203140259, + "relativeCreated": 10791.66841506958, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17567,8 +20145,8 @@ "2", "" ], - "asctime": "2020-12-21 22:33:11,884", - "created": 1608586391.8840501, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.2724648, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17578,37 +20156,37 @@ "lineno": 26, "message": "Expectation (Response Status (Authentification required) transfered via pure_json_protocol): result = 2 ()", "module": "test", - "msecs": 884.0501308441162, + "msecs": 272.4647521972656, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.357154846191, + "relativeCreated": 10791.806936264038, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 884.1855525970459, + "msecs": 272.5982666015625, "msg": "Response Status (Authentification required) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.492576599121, + "relativeCreated": 10791.940450668335, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001354217529296875 + "time_consumption": 0.000133514404296875 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:11,884", - "created": 1608586391.8846774, + "asctime": "2020-12-25 15:03:47,273", + "created": 1608905027.2731059, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17625,8 +20203,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:11,884", - "created": 1608586391.8844066, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.272823, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17636,15 +20214,15 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 884.406566619873, + "msecs": 272.8230953216553, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.713590621948, + "relativeCreated": 10792.165279388428, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17653,8 +20231,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:11,884", - "created": 1608586391.8845446, + "asctime": "2020-12-25 15:03:47,272", + "created": 1608905027.2729607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17664,37 +20242,37 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 884.5446109771729, + "msecs": 272.9606628417969, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.851634979248, + "relativeCreated": 10792.30284690857, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 884.6774101257324, + "msecs": 273.1058597564697, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10796.984434127808, + "relativeCreated": 10792.448043823242, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 0.00014519691467285156 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:11,985", - "created": 1608586391.9859545, + "asctime": "2020-12-25 15:03:47,374", + "created": 1608905027.3743489, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17707,31 +20285,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:11,985", - "created": 1608586391.985235, + "asctime": "2020-12-25 15:03:47,373", + "created": 1608905027.3737113, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 985.2349758148193, + "msecs": 373.71134757995605, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10897.541999816895, + "relativeCreated": 10893.053531646729, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17740,8 +20318,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:11,985", - "created": 1608586391.9855933, + "asctime": "2020-12-25 15:03:47,374", + "created": 1608905027.374004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17751,15 +20329,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 985.593318939209, + "msecs": 374.0038871765137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10897.900342941284, + "relativeCreated": 10893.346071243286, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17768,8 +20346,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:11,985", - "created": 1608586391.9857929, + "asctime": "2020-12-25 15:03:47,374", + "created": 1608905027.37417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17779,37 +20357,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 985.792875289917, + "msecs": 374.17006492614746, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10898.099899291992, + "relativeCreated": 10893.51224899292, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 985.9545230865479, + "msecs": 374.34887886047363, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10898.261547088623, + "relativeCreated": 10893.691062927246, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016164779663085938 + "time_consumption": 0.00017881393432617188 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:12,087", - "created": 1608586392.0872252, + "asctime": "2020-12-25 15:03:47,475", + "created": 1608905027.4755607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17822,31 +20400,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:12,086", - "created": 1608586392.0865903, + "asctime": "2020-12-25 15:03:47,474", + "created": 1608905027.474936, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 86.59029006958008, + "msecs": 474.93600845336914, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10998.897314071655, + "relativeCreated": 10994.278192520142, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17855,8 +20433,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,086", - "created": 1608586392.086902, + "asctime": "2020-12-25 15:03:47,475", + "created": 1608905027.4752448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17866,15 +20444,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 86.90190315246582, + "msecs": 475.24476051330566, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10999.208927154541, + "relativeCreated": 10994.586944580078, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -17883,8 +20461,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,087", - "created": 1608586392.0870724, + "asctime": "2020-12-25 15:03:47,475", + "created": 1608905027.4754097, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17894,64 +20472,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 87.07237243652344, + "msecs": 475.40974617004395, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10999.379396438599, + "relativeCreated": 10994.751930236816, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 87.22519874572754, + "msecs": 475.56066513061523, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 10999.532222747803, + "relativeCreated": 10994.902849197388, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015282630920410156 + "time_consumption": 0.00015091896057128906 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 1.4117863178253174, - "time_finished": "2020-12-21 22:33:12,087", - "time_start": "2020-12-21 22:33:10,675" + "time_consumption": 1.412475347518921, + "time_finished": "2020-12-25 15:03:47,475", + "time_start": "2020-12-25 15:03:46,063" }, "socket_protocol.pure_json_protocol: Checksum corumpation while sending.": { "args": null, - "asctime": "2020-12-21 22:33:08,047", - "created": 1608586388.0475433, + "asctime": "2020-12-25 15:03:43,436", + "created": 1608905023.436486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 36, + "lineno": 37, "message": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "module": "__init__", "moduleLogger": [], - "msecs": 47.54328727722168, + "msecs": 436.48600578308105, "msg": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6959.850311279297, + "relativeCreated": 6955.8281898498535, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:08,353", - "created": 1608586388.353679, + "asctime": "2020-12-25 15:03:43,739", + "created": 1608905023.7394772, "exc_info": null, "exc_text": null, "filename": "test_communication_errors.py", @@ -17964,233 +20542,233 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,047", - "created": 1608586388.047835, + "asctime": "2020-12-25 15:03:43,436", + "created": 1608905023.4367802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 47.83511161804199, + "msecs": 436.7802143096924, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6960.142135620117, + "relativeCreated": 6956.122398376465, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,048", - "created": 1608586388.048151, + "asctime": "2020-12-25 15:03:43,437", + "created": 1608905023.43716, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 48.15101623535156, + "msecs": 437.1600151062012, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6960.458040237427, + "relativeCreated": 6956.502199172974, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,048", - "created": 1608586388.0483403, + "asctime": "2020-12-25 15:03:43,437", + "created": 1608905023.4373584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 48.3403205871582, + "msecs": 437.3583793640137, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6960.647344589233, + "relativeCreated": 6956.700563430786, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,051", - "created": 1608586388.0516574, + "asctime": "2020-12-25 15:03:43,437", + "created": 1608905023.437739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 51.65743827819824, + "msecs": 437.73889541625977, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6963.964462280273, + "relativeCreated": 6957.081079483032, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:08,052", - "created": 1608586388.0520065, + "asctime": "2020-12-25 15:03:43,437", + "created": 1608905023.4379668, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 52.00648307800293, + "msecs": 437.96682357788086, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6964.313507080078, + "relativeCreated": 6957.309007644653, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:08,052", - "created": 1608586388.0524678, + "asctime": "2020-12-25 15:03:43,438", + "created": 1608905023.4383688, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 52.46782302856445, + "msecs": 438.3687973022461, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6964.77484703064, + "relativeCreated": 6957.710981369019, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:08,203", - "created": 1608586388.2035697, + "asctime": "2020-12-25 15:03:43,589", + "created": 1608905023.5893836, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a", "module": "test_helpers", - "msecs": 203.5696506500244, + "msecs": 589.383602142334, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7115.8766746521, + "relativeCreated": 7108.725786209106, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-23" }, { "args": [ - "SJP:", + "socket_protocol (server):", "(79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a" ], - "asctime": "2020-12-21 22:33:08,203", - "created": 1608586388.2039897, + "asctime": "2020-12-25 15:03:43,589", + "created": 1608905023.5898273, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 256, - "message": "SJP: Received message has a wrong checksum and will be ignored: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a.", + "lineno": 287, + "message": "socket_protocol (server): Received message has a wrong checksum and will be ignored: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a.", "module": "__init__", - "msecs": 203.98974418640137, + "msecs": 589.827299118042, "msg": "%s Received message has a wrong checksum and will be ignored: %s.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7116.296768188477, + "relativeCreated": 7109.169483184814, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-23" } ], - "msecs": 353.67894172668457, + "msecs": 739.4771575927734, "msg": "Send data with wrong checksum by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_communication_errors.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7265.98596572876, + "relativeCreated": 7258.819341659546, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.1496891975402832 + "time_consumption": 0.14964985847473145 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:08,354", - "created": 1608586388.3544984, + "asctime": "2020-12-25 15:03:43,740", + "created": 1608905023.7402503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18207,8 +20785,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:08,354", - "created": 1608586388.3541205, + "asctime": "2020-12-25 15:03:43,739", + "created": 1608905023.7399085, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18218,15 +20796,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 354.12049293518066, + "msecs": 739.9084568023682, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7266.427516937256, + "relativeCreated": 7259.250640869141, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18235,8 +20813,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:08,354", - "created": 1608586388.354341, + "asctime": "2020-12-25 15:03:43,740", + "created": 1608905023.7400947, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18246,37 +20824,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 354.3410301208496, + "msecs": 740.0946617126465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7266.648054122925, + "relativeCreated": 7259.436845779419, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 354.49838638305664, + "msecs": 740.2503490447998, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7266.805410385132, + "relativeCreated": 7259.592533111572, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015735626220703125 + "time_consumption": 0.0001556873321533203 }, { "args": [ "False", "" ], - "asctime": "2020-12-21 22:33:08,355", - "created": 1608586388.3550136, + "asctime": "2020-12-25 15:03:43,740", + "created": 1608905023.7407682, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18293,8 +20871,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:08,354", - "created": 1608586388.354729, + "asctime": "2020-12-25 15:03:43,740", + "created": 1608905023.7404795, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18304,15 +20882,15 @@ "lineno": 22, "message": "Result (Callback executed variable): False ()", "module": "test", - "msecs": 354.72893714904785, + "msecs": 740.4794692993164, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7267.035961151123, + "relativeCreated": 7259.821653366089, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18321,8 +20899,8 @@ "False", "" ], - "asctime": "2020-12-21 22:33:08,354", - "created": 1608586388.354875, + "asctime": "2020-12-25 15:03:43,740", + "created": 1608905023.7406197, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18332,37 +20910,37 @@ "lineno": 26, "message": "Expectation (Callback executed variable): result = False ()", "module": "test", - "msecs": 354.8750877380371, + "msecs": 740.6196594238281, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7267.182111740112, + "relativeCreated": 7259.961843490601, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 355.0136089324951, + "msecs": 740.7681941986084, "msg": "Callback executed variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7267.32063293457, + "relativeCreated": 7260.110378265381, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001385211944580078 + "time_consumption": 0.00014853477478027344 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:08,456", - "created": 1608586388.4565601, + "asctime": "2020-12-25 15:03:43,841", + "created": 1608905023.841883, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18375,31 +20953,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:08,455", - "created": 1608586388.4556112, + "asctime": "2020-12-25 15:03:43,841", + "created": 1608905023.8413131, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 455.6112289428711, + "msecs": 841.3131237030029, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7367.918252944946, + "relativeCreated": 7360.655307769775, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18408,8 +20986,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,456", - "created": 1608586388.456077, + "asctime": "2020-12-25 15:03:43,841", + "created": 1608905023.8415992, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18419,15 +20997,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 456.07709884643555, + "msecs": 841.5992259979248, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7368.384122848511, + "relativeCreated": 7360.941410064697, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18436,8 +21014,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,456", - "created": 1608586388.4563124, + "asctime": "2020-12-25 15:03:43,841", + "created": 1608905023.8417594, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18447,37 +21025,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 456.3124179840088, + "msecs": 841.759443283081, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7368.619441986084, + "relativeCreated": 7361.1016273498535, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 456.5601348876953, + "msecs": 841.8829441070557, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7368.8671588897705, + "relativeCreated": 7361.225128173828, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00024771690368652344 + "time_consumption": 0.00012350082397460938 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:08,557", - "created": 1608586388.5578475, + "asctime": "2020-12-25 15:03:43,942", + "created": 1608905023.942997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18490,31 +21068,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:08,557", - "created": 1608586388.5571654, + "asctime": "2020-12-25 15:03:43,942", + "created": 1608905023.942383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 557.1653842926025, + "msecs": 942.3830509185791, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7469.472408294678, + "relativeCreated": 7461.725234985352, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18523,8 +21101,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,557", - "created": 1608586388.5574813, + "asctime": "2020-12-25 15:03:43,942", + "created": 1608905023.9426787, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18534,15 +21112,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 557.4812889099121, + "msecs": 942.678689956665, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7469.788312911987, + "relativeCreated": 7462.0208740234375, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -18551,8 +21129,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,557", - "created": 1608586388.5576532, + "asctime": "2020-12-25 15:03:43,942", + "created": 1608905023.9428444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18562,41 +21140,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 557.6531887054443, + "msecs": 942.8443908691406, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7469.9602127075195, + "relativeCreated": 7462.186574935913, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 557.8474998474121, + "msecs": 942.9969787597656, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7470.154523849487, + "relativeCreated": 7462.339162826538, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00019431114196777344 + "time_consumption": 0.000152587890625 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.5103042125701904, - "time_finished": "2020-12-21 22:33:08,557", - "time_start": "2020-12-21 22:33:08,047" + "time_consumption": 0.5065109729766846, + "time_finished": "2020-12-25 15:03:43,942", + "time_start": "2020-12-25 15:03:43,436" }, "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).": { "args": null, - "asctime": "2020-12-21 22:33:12,091", - "created": 1608586392.0917678, + "asctime": "2020-12-25 15:03:47,478", + "created": 1608905027.4783497, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18607,584 +21185,584 @@ "message": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "module": "__init__", "moduleLogger": [], - "msecs": 91.76778793334961, + "msecs": 478.3496856689453, "msg": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11004.074811935425, + "relativeCreated": 10997.691869735718, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:12,096", - "created": 1608586392.0969408, + "asctime": "2020-12-25 15:03:47,483", + "created": 1608905027.483471, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", "funcName": "callback_rv_error", "levelname": "DEBUG", "levelno": 10, - "lineno": 144, + "lineno": 125, "message": "Send and received data with incompatible callback (pure_json_protocol).", "module": "test_handling_errors", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,092", - "created": 1608586392.0920215, + "asctime": "2020-12-25 15:03:47,478", + "created": 1608905027.4786234, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 92.02146530151367, + "msecs": 478.6233901977539, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11004.328489303589, + "relativeCreated": 10997.965574264526, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,092", - "created": 1608586392.092329, + "asctime": "2020-12-25 15:03:47,478", + "created": 1608905027.4789982, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 92.32902526855469, + "msecs": 478.99818420410156, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11004.63604927063, + "relativeCreated": 10998.340368270874, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,092", - "created": 1608586392.0924988, + "asctime": "2020-12-25 15:03:47,479", + "created": 1608905027.4791887, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 92.498779296875, + "msecs": 479.1886806488037, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11004.80580329895, + "relativeCreated": 10998.530864715576, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,092", - "created": 1608586392.0927818, + "asctime": "2020-12-25 15:03:47,479", + "created": 1608905027.479506, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 92.78178215026855, + "msecs": 479.5060157775879, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11005.088806152344, + "relativeCreated": 10998.84819984436, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "None" ], - "asctime": "2020-12-21 22:33:12,093", - "created": 1608586392.0930116, + "asctime": "2020-12-25 15:03:47,479", + "created": 1608905027.4797387, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 93.01161766052246, + "msecs": 479.738712310791, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11005.318641662598, + "relativeCreated": 10999.080896377563, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,093", - "created": 1608586392.0933876, + "asctime": "2020-12-25 15:03:47,480", + "created": 1608905027.48011, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "module": "test_helpers", - "msecs": 93.38760375976562, + "msecs": 480.10993003845215, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11005.69462776184, + "relativeCreated": 10999.452114105225, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,093", - "created": 1608586392.0936453, + "asctime": "2020-12-25 15:03:47,480", + "created": 1608905027.4803758, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "module": "test_helpers", - "msecs": 93.64533424377441, + "msecs": 480.3757667541504, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11005.95235824585, + "relativeCreated": 10999.717950820923, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "None" ], - "asctime": "2020-12-21 22:33:12,093", - "created": 1608586392.093928, + "asctime": "2020-12-25 15:03:47,480", + "created": 1608905027.4806244, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 93.92809867858887, + "msecs": 480.6244373321533, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11006.235122680664, + "relativeCreated": 10999.966621398926, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_fail" ], - "asctime": "2020-12-21 22:33:12,094", - "created": 1608586392.0940957, + "asctime": "2020-12-25 15:03:47,480", + "created": 1608905027.4807956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method_fail to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 94.09570693969727, + "msecs": 480.79562187194824, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11006.402730941772, + "relativeCreated": 11000.13780593872, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "None" ], - "asctime": "2020-12-21 22:33:12,094", - "created": 1608586392.0943017, + "asctime": "2020-12-25 15:03:47,481", + "created": 1608905027.4810026, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 94.30170059204102, + "msecs": 481.0025691986084, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11006.608724594116, + "relativeCreated": 11000.34475326538, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,094", - "created": 1608586392.0946386, + "asctime": "2020-12-25 15:03:47,481", + "created": 1608905027.481336, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "module": "test_helpers", - "msecs": 94.63858604431152, + "msecs": 481.3361167907715, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11006.945610046387, + "relativeCreated": 11000.678300857544, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,094", - "created": 1608586392.0948892, + "asctime": "2020-12-25 15:03:47,481", + "created": 1608905027.481586, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "module": "test_helpers", - "msecs": 94.88916397094727, + "msecs": 481.5859794616699, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11007.196187973022, + "relativeCreated": 11000.928163528442, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "None" ], - "asctime": "2020-12-21 22:33:12,095", - "created": 1608586392.0951116, + "asctime": "2020-12-25 15:03:47,481", + "created": 1608905027.4818351, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 95.11160850524902, + "msecs": 481.83512687683105, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11007.418632507324, + "relativeCreated": 11001.177310943604, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:12,095", - "created": 1608586392.0952966, + "asctime": "2020-12-25 15:03:47,482", + "created": 1608905027.4820263, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 277, - "message": "SJP: Received message with no registered callback. Sending negative response.", + "lineno": 308, + "message": "socket_protocol (server): Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 95.29662132263184, + "msecs": 482.0263385772705, "msg": "%s Received message with no registered callback. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11007.603645324707, + "relativeCreated": 11001.368522644043, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 1, 11, 48879, "None" ], - "asctime": "2020-12-21 22:33:12,095", - "created": 1608586392.0954504, + "asctime": "2020-12-25 15:03:47,482", + "created": 1608905027.4821866, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 95.45040130615234, + "msecs": 482.18655586242676, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11007.757425308228, + "relativeCreated": 11001.5287399292, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,095", - "created": 1608586392.095791, + "asctime": "2020-12-25 15:03:47,482", + "created": 1608905027.4825041, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "module": "test_helpers", - "msecs": 95.79110145568848, + "msecs": 482.50412940979004, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11008.098125457764, + "relativeCreated": 11001.846313476562, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:12,096", - "created": 1608586392.096043, + "asctime": "2020-12-25 15:03:47,482", + "created": 1608905027.4827518, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "module": "test_helpers", - "msecs": 96.04310989379883, + "msecs": 482.75184631347656, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11008.350133895874, + "relativeCreated": 11002.094030380249, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "1", "11", "48879", "None" ], - "asctime": "2020-12-21 22:33:12,096", - "created": 1608586392.0962644, + "asctime": "2020-12-25 15:03:47,482", + "created": 1608905027.482975, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 96.26436233520508, + "msecs": 482.9750061035156, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11008.57138633728, + "relativeCreated": 11002.317190170288, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Request has no callback. Data buffered." ], - "asctime": "2020-12-21 22:33:12,096", - "created": 1608586392.0964465, + "asctime": "2020-12-25 15:03:47,483", + "created": 1608905027.4831579, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 96.44651412963867, + "msecs": 483.1578731536865, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11008.753538131714, + "relativeCreated": 11002.500057220459, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_fail" ], - "asctime": "2020-12-21 22:33:12,096", - "created": 1608586392.096589, + "asctime": "2020-12-25 15:03:47,483", + "created": 1608905027.4832947, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback response_data_method_fail to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 96.5890884399414, + "msecs": 483.2947254180908, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11008.896112442017, + "relativeCreated": 11002.636909484863, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 96.94075584411621, + "msecs": 483.4709167480469, "msg": "Send and received data with incompatible callback (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11009.247779846191, + "relativeCreated": 11002.81310081482, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0003516674041748047 + "time_consumption": 0.0001761913299560547 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:12,097", - "created": 1608586392.0971234, + "asctime": "2020-12-25 15:03:47,484", + "created": 1608905027.4840636, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19201,8 +21779,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:12,097", - "created": 1608586392.0970283, + "asctime": "2020-12-25 15:03:47,483", + "created": 1608905027.4837453, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19212,15 +21790,15 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 97.02825546264648, + "msecs": 483.7453365325928, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11009.335279464722, + "relativeCreated": 11003.087520599365, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19229,8 +21807,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:12,097", - "created": 1608586392.097078, + "asctime": "2020-12-25 15:03:47,483", + "created": 1608905027.4838893, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19240,37 +21818,37 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 97.07808494567871, + "msecs": 483.8893413543701, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11009.385108947754, + "relativeCreated": 11003.231525421143, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 97.12338447570801, + "msecs": 484.06362533569336, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11009.430408477783, + "relativeCreated": 11003.405809402466, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 4.5299530029296875e-05 + "time_consumption": 0.0001742839813232422 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:12,198", - "created": 1608586392.1980443, + "asctime": "2020-12-25 15:03:47,584", + "created": 1608905027.584932, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19283,31 +21861,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:12,197", - "created": 1608586392.197526, + "asctime": "2020-12-25 15:03:47,584", + "created": 1608905027.584561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 197.5259780883789, + "msecs": 584.5611095428467, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11109.833002090454, + "relativeCreated": 11103.90329360962, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19316,8 +21894,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,197", - "created": 1608586392.197783, + "asctime": "2020-12-25 15:03:47,584", + "created": 1608905027.5847561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19327,15 +21905,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 197.7829933166504, + "msecs": 584.7561359405518, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11110.090017318726, + "relativeCreated": 11104.098320007324, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19344,8 +21922,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,197", - "created": 1608586392.1979191, + "asctime": "2020-12-25 15:03:47,584", + "created": 1608905027.584848, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19355,37 +21933,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 197.91913032531738, + "msecs": 584.8479270935059, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11110.226154327393, + "relativeCreated": 11104.190111160278, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 198.0443000793457, + "msecs": 584.9320888519287, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11110.35132408142, + "relativeCreated": 11104.274272918701, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001251697540283203 + "time_consumption": 8.416175842285156e-05 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:12,299", - "created": 1608586392.2991974, + "asctime": "2020-12-25 15:03:47,686", + "created": 1608905027.6860974, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19398,31 +21976,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:12,298", - "created": 1608586392.2986028, + "asctime": "2020-12-25 15:03:47,685", + "created": 1608905027.685421, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 298.602819442749, + "msecs": 685.4209899902344, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11210.909843444824, + "relativeCreated": 11204.763174057007, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19431,8 +22009,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,298", - "created": 1608586392.2988844, + "asctime": "2020-12-25 15:03:47,685", + "created": 1608905027.6857486, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19442,15 +22020,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 298.88439178466797, + "msecs": 685.7485771179199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11211.191415786743, + "relativeCreated": 11205.090761184692, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19459,8 +22037,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,299", - "created": 1608586392.2990348, + "asctime": "2020-12-25 15:03:47,685", + "created": 1608905027.6859417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19470,37 +22048,37 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 299.03483390808105, + "msecs": 685.9416961669922, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11211.341857910156, + "relativeCreated": 11205.283880233765, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 299.1974353790283, + "msecs": 686.0973834991455, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11211.504459381104, + "relativeCreated": 11205.439567565918, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016260147094726562 + "time_consumption": 0.0001556873321533203 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:12,299", - "created": 1608586392.299697, + "asctime": "2020-12-25 15:03:47,686", + "created": 1608905027.6866457, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19517,8 +22095,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:12,299", - "created": 1608586392.2994423, + "asctime": "2020-12-25 15:03:47,686", + "created": 1608905027.6863647, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19528,15 +22106,15 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 299.4422912597656, + "msecs": 686.3646507263184, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11211.74931526184, + "relativeCreated": 11205.70683479309, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19545,8 +22123,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:12,299", - "created": 1608586392.299573, + "asctime": "2020-12-25 15:03:47,686", + "created": 1608905027.6865091, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19556,37 +22134,37 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 299.5729446411133, + "msecs": 686.5091323852539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11211.879968643188, + "relativeCreated": 11205.851316452026, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 299.6969223022461, + "msecs": 686.6457462310791, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11212.003946304321, + "relativeCreated": 11205.987930297852, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001239776611328125 + "time_consumption": 0.0001366138458251953 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:12,400", - "created": 1608586392.400873, + "asctime": "2020-12-25 15:03:47,787", + "created": 1608905027.787856, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19599,31 +22177,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:33:12,400", - "created": 1608586392.400238, + "asctime": "2020-12-25 15:03:47,787", + "created": 1608905027.7872202, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 400.238037109375, + "msecs": 787.2202396392822, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11312.54506111145, + "relativeCreated": 11306.562423706055, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19632,8 +22210,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,400", - "created": 1608586392.400522, + "asctime": "2020-12-25 15:03:47,787", + "created": 1608905027.7875113, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19643,15 +22221,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 400.52199363708496, + "msecs": 787.5113487243652, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11312.82901763916, + "relativeCreated": 11306.853532791138, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19660,8 +22238,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,400", - "created": 1608586392.4006913, + "asctime": "2020-12-25 15:03:47,787", + "created": 1608905027.7877004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19671,37 +22249,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 400.69127082824707, + "msecs": 787.7004146575928, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11312.998294830322, + "relativeCreated": 11307.042598724365, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 400.87294578552246, + "msecs": 787.8561019897461, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11313.179969787598, + "relativeCreated": 11307.198286056519, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018167495727539062 + "time_consumption": 0.0001556873321533203 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:12,502", - "created": 1608586392.502145, + "asctime": "2020-12-25 15:03:47,889", + "created": 1608905027.889114, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19714,31 +22292,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:33:12,501", - "created": 1608586392.5014794, + "asctime": "2020-12-25 15:03:47,888", + "created": 1608905027.8884795, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 501.4793872833252, + "msecs": 888.479471206665, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11413.7864112854, + "relativeCreated": 11407.821655273438, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19747,8 +22325,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,501", - "created": 1608586392.5018132, + "asctime": "2020-12-25 15:03:47,888", + "created": 1608905027.888772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19758,15 +22336,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 501.8131732940674, + "msecs": 888.7720108032227, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11414.120197296143, + "relativeCreated": 11408.114194869995, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -19775,8 +22353,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:12,501", - "created": 1608586392.501987, + "asctime": "2020-12-25 15:03:47,888", + "created": 1608905027.8889356, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19786,64 +22364,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 501.9869804382324, + "msecs": 888.9355659484863, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11414.294004440308, + "relativeCreated": 11408.277750015259, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 502.14505195617676, + "msecs": 889.1139030456543, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 11414.452075958252, + "relativeCreated": 11408.456087112427, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015807151794433594 + "time_consumption": 0.00017833709716796875 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.41037726402282715, - "time_finished": "2020-12-21 22:33:12,502", - "time_start": "2020-12-21 22:33:12,091" + "time_consumption": 0.410764217376709, + "time_finished": "2020-12-25 15:03:47,889", + "time_start": "2020-12-25 15:03:47,478" }, "socket_protocol.pure_json_protocol: No Callback at response instance for the request.": { "args": null, - "asctime": "2020-12-21 22:33:09,968", - "created": 1608586389.9689164, + "asctime": "2020-12-25 15:03:45,354", + "created": 1608905025.3542485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 41, + "lineno": 42, "message": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "module": "__init__", "moduleLogger": [], - "msecs": 968.9164161682129, + "msecs": 354.2485237121582, "msg": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8881.223440170288, + "relativeCreated": 8873.59070777893, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:10,472", - "created": 1608586390.4725976, + "asctime": "2020-12-25 15:03:45,858", + "created": 1608905025.8581953, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -19856,423 +22434,423 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:09,969", - "created": 1608586389.969212, + "asctime": "2020-12-25 15:03:45,354", + "created": 1608905025.354547, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 969.2120552062988, + "msecs": 354.54702377319336, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8881.519079208374, + "relativeCreated": 8873.889207839966, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:09,969", - "created": 1608586389.9695218, + "asctime": "2020-12-25 15:03:45,354", + "created": 1608905025.3549335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 969.5217609405518, + "msecs": 354.933500289917, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8881.828784942627, + "relativeCreated": 8874.27568435669, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:09,969", - "created": 1608586389.9696991, + "asctime": "2020-12-25 15:03:45,355", + "created": 1608905025.3551233, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 969.6991443634033, + "msecs": 355.12328147888184, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8882.006168365479, + "relativeCreated": 8874.465465545654, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:09,969", - "created": 1608586389.9699502, + "asctime": "2020-12-25 15:03:45,355", + "created": 1608905025.3554585, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 969.9501991271973, + "msecs": 355.45849800109863, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8882.257223129272, + "relativeCreated": 8874.800682067871, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:09,970", - "created": 1608586389.970128, + "asctime": "2020-12-25 15:03:45,355", + "created": 1608905025.355639, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 970.128059387207, + "msecs": 355.6389808654785, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8882.435083389282, + "relativeCreated": 8874.981164932251, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:09,970", - "created": 1608586389.970528, + "asctime": "2020-12-25 15:03:45,356", + "created": 1608905025.3560374, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 970.5278873443604, + "msecs": 356.0373783111572, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8882.834911346436, + "relativeCreated": 8875.37956237793, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:10,121", - "created": 1608586390.1215096, + "asctime": "2020-12-25 15:03:45,506", + "created": 1608905025.5069213, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 121.50955200195312, + "msecs": 506.92129135131836, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9033.816576004028, + "relativeCreated": 9026.26347541809, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-24" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:10,121", - "created": 1608586390.1219282, + "asctime": "2020-12-25 15:03:45,507", + "created": 1608905025.5072446, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 121.92821502685547, + "msecs": 507.2445869445801, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9034.23523902893, + "relativeCreated": 9026.586771011353, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-24" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,122", - "created": 1608586390.122152, + "asctime": "2020-12-25 15:03:45,507", + "created": 1608905025.5074008, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 277, - "message": "SJP: Received message with no registered callback. Sending negative response.", + "lineno": 308, + "message": "socket_protocol (server): Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 122.15209007263184, + "msecs": 507.4007511138916, "msg": "%s Received message with no registered callback. Sending negative response.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9034.459114074707, + "relativeCreated": 9026.742935180664, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-24" }, { "args": [ - "SJP:", + "socket_protocol (server):", 1, 11, 45054, "None" ], - "asctime": "2020-12-21 22:33:10,122", - "created": 1608586390.1223588, + "asctime": "2020-12-25 15:03:45,507", + "created": 1608905025.5075293, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 122.35879898071289, + "msecs": 507.52925872802734, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9034.665822982788, + "relativeCreated": 9026.8714427948, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-12-21 22:33:10,122", - "created": 1608586390.1227303, + "asctime": "2020-12-25 15:03:45,507", + "created": 1608905025.5077722, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "module": "test_helpers", - "msecs": 122.73025512695312, + "msecs": 507.77220726013184, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9035.037279129028, + "relativeCreated": 9027.114391326904, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-12-21 22:33:10,273", - "created": 1608586390.2736678, + "asctime": "2020-12-25 15:03:45,658", + "created": 1608905025.6586297, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "module": "test_helpers", - "msecs": 273.6678123474121, + "msecs": 658.6296558380127, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9185.974836349487, + "relativeCreated": 9177.971839904785, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-25" }, { "args": [ - "SJP:", + "socket_protocol (server):", "1", "11", "45054", "None" ], - "asctime": "2020-12-21 22:33:10,274", - "created": 1608586390.2740798, + "asctime": "2020-12-25 15:03:45,659", + "created": 1608905025.659057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 274.0797996520996, + "msecs": 659.0569019317627, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9186.386823654175, + "relativeCreated": 9178.399085998535, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-25" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Request has no callback. Data buffered." ], - "asctime": "2020-12-21 22:33:10,274", - "created": 1608586390.2743444, + "asctime": "2020-12-25 15:03:45,659", + "created": 1608905025.6592968, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 274.34444427490234, + "msecs": 659.2967510223389, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9186.651468276978, + "relativeCreated": 9178.638935089111, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-25" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:10,274", - "created": 1608586390.2745316, + "asctime": "2020-12-25 15:03:45,659", + "created": 1608905025.659488, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 274.53160285949707, + "msecs": 659.4879627227783, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9186.838626861572, + "relativeCreated": 9178.83014678955, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-25" } ], - "msecs": 472.597599029541, + "msecs": 858.1953048706055, "msg": "Send data, but no callback registered (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9384.904623031616, + "relativeCreated": 9377.537488937378, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19806599617004395 + "time_consumption": 0.19870734214782715 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:10,472", - "created": 1608586390.4729533, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.8590095, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20289,8 +22867,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:10,472", - "created": 1608586390.4728012, + "asctime": "2020-12-25 15:03:45,858", + "created": 1608905025.8586264, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20300,15 +22878,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 472.80120849609375, + "msecs": 858.6263656616211, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.108232498169, + "relativeCreated": 9377.968549728394, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20317,8 +22895,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:10,472", - "created": 1608586390.47288, + "asctime": "2020-12-25 15:03:45,858", + "created": 1608905025.8588076, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20328,37 +22906,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 472.87988662719727, + "msecs": 858.8075637817383, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.186910629272, + "relativeCreated": 9378.14974784851, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 472.95331954956055, + "msecs": 859.0095043182373, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.260343551636, + "relativeCreated": 9378.35168838501, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 7.343292236328125e-05 + "time_consumption": 0.00020194053649902344 }, { "args": [ "1", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.4731412, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.8595805, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20375,8 +22953,8 @@ "1", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.473043, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.8592825, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20386,15 +22964,15 @@ "lineno": 22, "message": "Result (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): 1 ()", "module": "test", - "msecs": 473.04296493530273, + "msecs": 859.2824935913086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.349988937378, + "relativeCreated": 9378.624677658081, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20403,8 +22981,8 @@ "1", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.4730945, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.8594391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20414,37 +22992,37 @@ "lineno": 26, "message": "Expectation (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): result = 1 ()", "module": "test", - "msecs": 473.0944633483887, + "msecs": 859.4391345977783, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.401487350464, + "relativeCreated": 9378.78131866455, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 473.1411933898926, + "msecs": 859.5805168151855, "msg": "Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.448217391968, + "relativeCreated": 9378.922700881958, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 4.673004150390625e-05 + "time_consumption": 0.00014138221740722656 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.4733021, + "asctime": "2020-12-25 15:03:45,860", + "created": 1608905025.8600967, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20461,8 +23039,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.4732184, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.859803, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20472,15 +23050,15 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 473.2184410095215, + "msecs": 859.8029613494873, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.525465011597, + "relativeCreated": 9379.14514541626, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20489,8 +23067,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,473", - "created": 1608586390.4732623, + "asctime": "2020-12-25 15:03:45,859", + "created": 1608905025.8599408, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20500,37 +23078,37 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 473.2623100280762, + "msecs": 859.940767288208, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.569334030151, + "relativeCreated": 9379.28295135498, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 473.30212593078613, + "msecs": 860.0966930389404, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9385.609149932861, + "relativeCreated": 9379.438877105713, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 0.00015592575073242188 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:10,573", - "created": 1608586390.5739002, + "asctime": "2020-12-25 15:03:45,961", + "created": 1608905025.9613166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20543,31 +23121,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:10,573", - "created": 1608586390.573559, + "asctime": "2020-12-25 15:03:45,960", + "created": 1608905025.9606745, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 573.559045791626, + "msecs": 960.674524307251, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9485.866069793701, + "relativeCreated": 9480.016708374023, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20576,8 +23154,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,573", - "created": 1608586390.5737357, + "asctime": "2020-12-25 15:03:45,960", + "created": 1608905025.9609942, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20587,15 +23165,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 573.7357139587402, + "msecs": 960.9942436218262, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9486.042737960815, + "relativeCreated": 9480.336427688599, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20604,8 +23182,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,573", - "created": 1608586390.5738294, + "asctime": "2020-12-25 15:03:45,961", + "created": 1608905025.9611647, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20615,37 +23193,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 573.8294124603271, + "msecs": 961.1647129058838, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9486.136436462402, + "relativeCreated": 9480.506896972656, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 573.9002227783203, + "msecs": 961.3165855407715, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9486.207246780396, + "relativeCreated": 9480.658769607544, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 7.081031799316406e-05 + "time_consumption": 0.0001518726348876953 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:10,674", - "created": 1608586390.674888, + "asctime": "2020-12-25 15:03:46,062", + "created": 1608905026.0625894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20658,31 +23236,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:10,674", - "created": 1608586390.6742804, + "asctime": "2020-12-25 15:03:46,061", + "created": 1608905026.0619452, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 674.2804050445557, + "msecs": 61.945199966430664, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9586.58742904663, + "relativeCreated": 9581.287384033203, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20691,8 +23269,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,674", - "created": 1608586390.6745985, + "asctime": "2020-12-25 15:03:46,062", + "created": 1608905026.062267, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20702,15 +23280,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 674.5984554290771, + "msecs": 62.26706504821777, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9586.905479431152, + "relativeCreated": 9581.60924911499, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -20719,8 +23297,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:10,674", - "created": 1608586390.6747477, + "asctime": "2020-12-25 15:03:46,062", + "created": 1608905026.0624363, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20730,259 +23308,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 674.7477054595947, + "msecs": 62.43634223937988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9587.05472946167, + "relativeCreated": 9581.778526306152, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 674.8878955841064, + "msecs": 62.589406967163086, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 9587.194919586182, + "relativeCreated": 9581.931591033936, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00014019012451171875 + "time_consumption": 0.00015306472778320312 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.7059714794158936, - "time_finished": "2020-12-21 22:33:10,674", - "time_start": "2020-12-21 22:33:09,968" - }, - "socket_protocol.pure_json_protocol: Register a Callback which is already defined.": { - "args": null, - "asctime": "2020-12-21 22:33:12,087", - "created": 1608586392.0877314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 43, - "message": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", - "module": "__init__", - "moduleLogger": [], - "msecs": 87.73136138916016, - "msg": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", - "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11000.038385391235, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2020-12-21 22:33:12,088", - "created": 1608586392.0885448, - "exc_info": null, - "exc_text": null, - "filename": "test_handling_errors.py", - "funcName": "callback_conf_error", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 94, - "message": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", - "module": "test_handling_errors", - "moduleLogger": [ - { - "args": [ - "SJP:" - ], - "asctime": "2020-12-21 22:33:12,088", - "created": 1608586392.0880008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 88.00077438354492, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11000.30779838562, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread" - }, - { - "args": [ - "SJP:" - ], - "asctime": "2020-12-21 22:33:12,088", - "created": 1608586392.0883076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "module": "__init__", - "msecs": 88.30761909484863, - "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "root.socket_protocol", - "pathname": "src/socket_protocol/__init__.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11000.614643096924, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread" - } - ], - "msecs": 88.54484558105469, - "msg": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", - "name": "__tLogger__", - "pathname": "src/tests/test_handling_errors.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11000.85186958313, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread", - "time_consumption": 0.0002372264862060547 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2020-12-21 22:33:12,089", - "created": 1608586392.0891578, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 142, - "message": "Exception (RegistrationError) detection variable is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Exception (RegistrationError) detection variable", - "True", - "" - ], - "asctime": "2020-12-21 22:33:12,088", - "created": 1608586392.0888445, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Exception (RegistrationError) detection variable): True ()", - "module": "test", - "msecs": 88.84453773498535, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11001.15156173706, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread" - }, - { - "args": [ - "Exception (RegistrationError) detection variable", - "True", - "" - ], - "asctime": "2020-12-21 22:33:12,089", - "created": 1608586392.089012, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Exception (RegistrationError) detection variable): result = True ()", - "module": "test", - "msecs": 89.01190757751465, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "src/unittest/test.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11001.31893157959, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread" - } - ], - "msecs": 89.1578197479248, - "msg": "Exception (RegistrationError) detection variable is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "src/unittest/test.py", - "process": 115467, - "processName": "MainProcess", - "relativeCreated": 11001.46484375, - "stack_info": null, - "thread": 139622186977088, - "threadName": "MainThread", - "time_consumption": 0.00014591217041015625 - } - ], - "thread": 139622186977088, - "threadName": "MainThread", - "time_consumption": 0.0014264583587646484, - "time_finished": "2020-12-21 22:33:12,089", - "time_start": "2020-12-21 22:33:12,087" + "time_consumption": 0.7083408832550049, + "time_finished": "2020-12-25 15:03:46,062", + "time_start": "2020-12-25 15:03:45,354" }, "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.": { "args": null, - "asctime": "2020-12-21 22:33:06,124", - "created": 1608586386.1249187, + "asctime": "2020-12-25 15:03:41,513", + "created": 1608905021.5131433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 31, + "lineno": 32, "message": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 124.91869926452637, + "msecs": 513.1433010101318, "msg": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5037.225723266602, + "relativeCreated": 5032.485485076904, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:06,628", - "created": 1608586386.628689, + "asctime": "2020-12-25 15:03:42,018", + "created": 1608905022.0180585, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -20995,424 +23378,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,125", - "created": 1608586386.125219, + "asctime": "2020-12-25 15:03:41,513", + "created": 1608905021.513264, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 125.21910667419434, + "msecs": 513.2639408111572, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5037.5261306762695, + "relativeCreated": 5032.60612487793, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,125", - "created": 1608586386.125532, + "asctime": "2020-12-25 15:03:41,513", + "created": 1608905021.513413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 125.53191184997559, + "msecs": 513.4129524230957, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5037.838935852051, + "relativeCreated": 5032.755136489868, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,125", - "created": 1608586386.12571, + "asctime": "2020-12-25 15:03:41,513", + "created": 1608905021.5134845, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 125.71001052856445, + "msecs": 513.4844779968262, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5038.01703453064, + "relativeCreated": 5032.826662063599, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,126", - "created": 1608586386.1260767, + "asctime": "2020-12-25 15:03:41,515", + "created": 1608905021.5158641, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 126.07669830322266, + "msecs": 515.8641338348389, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5038.383722305298, + "relativeCreated": 5035.206317901611, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:06,126", - "created": 1608586386.1263237, + "asctime": "2020-12-25 15:03:41,516", + "created": 1608905021.5160775, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 126.32369995117188, + "msecs": 516.0775184631348, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5038.630723953247, + "relativeCreated": 5035.419702529907, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:06,126", - "created": 1608586386.126732, + "asctime": "2020-12-25 15:03:41,516", + "created": 1608905021.5163665, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 126.73211097717285, + "msecs": 516.3664817810059, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5039.039134979248, + "relativeCreated": 5035.708665847778, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:06,277", - "created": 1608586386.2777593, + "asctime": "2020-12-25 15:03:41,667", + "created": 1608905021.6671429, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 277.759313583374, + "msecs": 667.1428680419922, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5190.066337585449, + "relativeCreated": 5186.485052108765, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:06,278", - "created": 1608586386.2781825, + "asctime": "2020-12-25 15:03:41,667", + "created": 1608905021.6674812, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 278.1825065612793, + "msecs": 667.4811840057373, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5190.4895305633545, + "relativeCreated": 5186.82336807251, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method_2" ], - "asctime": "2020-12-21 22:33:06,278", - "created": 1608586386.2783833, + "asctime": "2020-12-25 15:03:41,667", + "created": 1608905021.6676493, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method_2 to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method_2 to process received data", "module": "__init__", - "msecs": 278.3832550048828, + "msecs": 667.6492691040039, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5190.690279006958, + "relativeCreated": 5186.991453170776, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-17" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:06,278", - "created": 1608586386.2785609, + "asctime": "2020-12-25 15:03:41,667", + "created": 1608905021.6678011, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 278.5608768463135, + "msecs": 667.8011417388916, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5190.867900848389, + "relativeCreated": 5187.143325805664, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-12-21 22:33:06,278", - "created": 1608586386.2789648, + "asctime": "2020-12-25 15:03:41,668", + "created": 1608905021.6681247, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 278.9647579193115, + "msecs": 668.1246757507324, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5191.271781921387, + "relativeCreated": 5187.466859817505, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-12-21 22:33:06,429", - "created": 1608586386.4298801, + "asctime": "2020-12-25 15:03:41,818", + "created": 1608905021.8189712, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 429.88014221191406, + "msecs": 818.9711570739746, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5342.187166213989, + "relativeCreated": 5338.313341140747, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-18" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:06,430", - "created": 1608586386.430322, + "asctime": "2020-12-25 15:03:41,819", + "created": 1608905021.8194118, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 430.32193183898926, + "msecs": 819.4117546081543, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5342.628955841064, + "relativeCreated": 5338.753938674927, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-18" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:06,430", - "created": 1608586386.430595, + "asctime": "2020-12-25 15:03:41,819", + "created": 1608905021.8196518, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 430.59492111206055, + "msecs": 819.6518421173096, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5342.901945114136, + "relativeCreated": 5338.994026184082, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-18" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,430", - "created": 1608586386.430781, + "asctime": "2020-12-25 15:03:41,819", + "created": 1608905021.8198571, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 430.78088760375977, + "msecs": 819.857120513916, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5343.087911605835, + "relativeCreated": 5339.1993045806885, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-18" } ], - "msecs": 628.6890506744385, + "msecs": 18.05853843688965, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5540.996074676514, + "relativeCreated": 5537.400722503662, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.1979081630706787 + "time_consumption": 0.19820141792297363 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:06,629", - "created": 1608586386.6295474, + "asctime": "2020-12-25 15:03:42,018", + "created": 1608905022.0188348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21429,8 +23812,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:06,629", - "created": 1608586386.6291857, + "asctime": "2020-12-25 15:03:42,018", + "created": 1608905022.0184855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21440,15 +23823,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 629.185676574707, + "msecs": 18.485546112060547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5541.492700576782, + "relativeCreated": 5537.827730178833, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21457,8 +23840,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:06,629", - "created": 1608586386.6293736, + "asctime": "2020-12-25 15:03:42,018", + "created": 1608905022.0186694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21468,37 +23851,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 629.3735504150391, + "msecs": 18.66936683654785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5541.680574417114, + "relativeCreated": 5538.01155090332, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 629.5473575592041, + "msecs": 18.834829330444336, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5541.854381561279, + "relativeCreated": 5538.177013397217, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00017380714416503906 + "time_consumption": 0.00016546249389648438 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:06,630", - "created": 1608586386.6301365, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.0194101, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21515,8 +23898,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:06,629", - "created": 1608586386.6298094, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.019116, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21526,15 +23909,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 629.8093795776367, + "msecs": 19.115924835205078, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5542.116403579712, + "relativeCreated": 5538.4581089019775, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21543,8 +23926,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:06,629", - "created": 1608586386.6299756, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.0192676, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21554,37 +23937,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 629.9755573272705, + "msecs": 19.267559051513672, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5542.282581329346, + "relativeCreated": 5538.609743118286, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 630.1364898681641, + "msecs": 19.410133361816406, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5542.443513870239, + "relativeCreated": 5538.752317428589, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.00014257431030273438 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:06,630", - "created": 1608586386.6307995, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.019969, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21601,8 +23984,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:06,630", - "created": 1608586386.6304219, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.0196445, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21612,15 +23995,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 630.4218769073486, + "msecs": 19.644498825073242, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5542.728900909424, + "relativeCreated": 5538.986682891846, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21629,8 +24012,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:06,630", - "created": 1608586386.6306047, + "asctime": "2020-12-25 15:03:42,019", + "created": 1608905022.0197964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21640,37 +24023,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 630.6047439575195, + "msecs": 19.796371459960938, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5542.911767959595, + "relativeCreated": 5539.138555526733, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 630.7995319366455, + "msecs": 19.96898651123047, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5543.106555938721, + "relativeCreated": 5539.311170578003, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00019478797912597656 + "time_consumption": 0.00017261505126953125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.6313274, + "asctime": "2020-12-25 15:03:42,020", + "created": 1608905022.0204625, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21687,8 +24070,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.6310484, + "asctime": "2020-12-25 15:03:42,020", + "created": 1608905022.0201926, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21698,15 +24081,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 631.0484409332275, + "msecs": 20.192623138427734, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5543.355464935303, + "relativeCreated": 5539.5348072052, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21715,8 +24098,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.6311915, + "asctime": "2020-12-25 15:03:42,020", + "created": 1608905022.0203295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21726,37 +24109,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 631.1914920806885, + "msecs": 20.32947540283203, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5543.498516082764, + "relativeCreated": 5539.6716594696045, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 631.3273906707764, + "msecs": 20.462512969970703, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5543.634414672852, + "relativeCreated": 5539.804697036743, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00013589859008789062 + "time_consumption": 0.00013303756713867188 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.6319032, + "asctime": "2020-12-25 15:03:42,021", + "created": 1608905022.0210266, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21773,8 +24156,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.6315615, + "asctime": "2020-12-25 15:03:42,020", + "created": 1608905022.0206912, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21784,15 +24167,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 631.5615177154541, + "msecs": 20.6911563873291, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5543.868541717529, + "relativeCreated": 5540.033340454102, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21801,8 +24184,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:06,631", - "created": 1608586386.631713, + "asctime": "2020-12-25 15:03:42,020", + "created": 1608905022.0208395, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21812,37 +24195,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 631.7129135131836, + "msecs": 20.839452743530273, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5544.019937515259, + "relativeCreated": 5540.181636810303, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 631.9031715393066, + "msecs": 21.026611328125, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5544.210195541382, + "relativeCreated": 5540.3687953948975, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00019025802612304688 + "time_consumption": 0.00018715858459472656 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:06,733", - "created": 1608586386.7331822, + "asctime": "2020-12-25 15:03:42,122", + "created": 1608905022.1223092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21855,31 +24238,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:06,732", - "created": 1608586386.7324667, + "asctime": "2020-12-25 15:03:42,121", + "created": 1608905022.121671, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 732.4666976928711, + "msecs": 121.67096138000488, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5644.773721694946, + "relativeCreated": 5641.013145446777, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21888,8 +24271,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,732", - "created": 1608586386.7328193, + "asctime": "2020-12-25 15:03:42,121", + "created": 1608905022.1219919, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21899,15 +24282,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 732.8193187713623, + "msecs": 121.99187278747559, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5645.1263427734375, + "relativeCreated": 5641.334056854248, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -21916,8 +24299,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,733", - "created": 1608586386.7330184, + "asctime": "2020-12-25 15:03:42,122", + "created": 1608905022.1221564, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21927,37 +24310,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 733.0183982849121, + "msecs": 122.15638160705566, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5645.325422286987, + "relativeCreated": 5641.498565673828, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 733.1821918487549, + "msecs": 122.30920791625977, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5645.48921585083, + "relativeCreated": 5641.651391983032, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016379356384277344 + "time_consumption": 0.00015282630920410156 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:06,834", - "created": 1608586386.8345695, + "asctime": "2020-12-25 15:03:42,223", + "created": 1608905022.223533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21970,31 +24353,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:06,833", - "created": 1608586386.833808, + "asctime": "2020-12-25 15:03:42,222", + "created": 1608905022.222895, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 833.8079452514648, + "msecs": 222.89490699768066, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5746.11496925354, + "relativeCreated": 5742.237091064453, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -22003,8 +24386,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,834", - "created": 1608586386.8342144, + "asctime": "2020-12-25 15:03:42,223", + "created": 1608905022.2231867, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22014,15 +24397,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 834.214448928833, + "msecs": 223.18673133850098, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5746.521472930908, + "relativeCreated": 5742.528915405273, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -22031,8 +24414,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,834", - "created": 1608586386.8344092, + "asctime": "2020-12-25 15:03:42,223", + "created": 1608905022.2233515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -22042,64 +24425,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 834.409236907959, + "msecs": 223.35147857666016, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5746.716260910034, + "relativeCreated": 5742.693662643433, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 834.5694541931152, + "msecs": 223.53291511535645, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5746.87647819519, + "relativeCreated": 5742.875099182129, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016021728515625 + "time_consumption": 0.00018143653869628906 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.7096507549285889, - "time_finished": "2020-12-21 22:33:06,834", - "time_start": "2020-12-21 22:33:06,124" + "time_consumption": 0.7103896141052246, + "time_finished": "2020-12-25 15:03:42,223", + "time_start": "2020-12-25 15:03:41,513" }, "socket_protocol.pure_json_protocol: Send and receive check including authentification.": { "args": null, - "asctime": "2020-12-21 22:33:02,581", - "created": 1608586382.581725, + "asctime": "2020-12-25 15:03:37,969", + "created": 1608905017.9699733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 27, + "lineno": 28, "message": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "module": "__init__", "moduleLogger": [], - "msecs": 581.7248821258545, + "msecs": 969.9733257293701, "msg": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1494.0319061279297, + "relativeCreated": 1489.3155097961426, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:03,788", - "created": 1608586383.7884717, + "asctime": "2020-12-25 15:03:39,177", + "created": 1608905019.1775026, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -22112,1094 +24495,1094 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,582", - "created": 1608586382.5821419, + "asctime": "2020-12-25 15:03:37,970", + "created": 1608905017.970285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 582.1418762207031, + "msecs": 970.2849388122559, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1494.4489002227783, + "relativeCreated": 1489.6271228790283, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,582", - "created": 1608586382.5825207, + "asctime": "2020-12-25 15:03:37,970", + "created": 1608905017.9706614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 582.5207233428955, + "msecs": 970.6614017486572, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1494.8277473449707, + "relativeCreated": 1490.0035858154297, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,582", - "created": 1608586382.5827515, + "asctime": "2020-12-25 15:03:37,970", + "created": 1608905017.9708529, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 582.7515125274658, + "msecs": 970.8528518676758, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1495.058536529541, + "relativeCreated": 1490.1950359344482, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,583", - "created": 1608586382.5830345, + "asctime": "2020-12-25 15:03:37,971", + "created": 1608905017.9711757, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 583.0345153808594, + "msecs": 971.1756706237793, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1495.3415393829346, + "relativeCreated": 1490.5178546905518, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,583", - "created": 1608586382.5832896, + "asctime": "2020-12-25 15:03:37,971", + "created": 1608905017.9713953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 583.289623260498, + "msecs": 971.3952541351318, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1495.5966472625732, + "relativeCreated": 1490.7374382019043, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:33:02,583", - "created": 1608586382.583409, + "asctime": "2020-12-25 15:03:37,971", + "created": 1608905017.9715486, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 583.4090709686279, + "msecs": 971.5485572814941, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1495.7160949707031, + "relativeCreated": 1490.8907413482666, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:02,583", - "created": 1608586382.5836997, + "asctime": "2020-12-25 15:03:37,971", + "created": 1608905017.9719112, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 583.6997032165527, + "msecs": 971.9111919403076, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1496.006727218628, + "relativeCreated": 1491.25337600708, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:02,734", - "created": 1608586382.7344763, + "asctime": "2020-12-25 15:03:38,122", + "created": 1608905018.1228578, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 734.4763278961182, + "msecs": 122.85780906677246, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1646.7833518981934, + "relativeCreated": 1642.199993133545, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "1", "0", "None" ], - "asctime": "2020-12-21 22:33:02,734", - "created": 1608586382.7348855, + "asctime": "2020-12-25 15:03:38,123", + "created": 1608905018.1233, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 734.8854541778564, + "msecs": 123.30007553100586, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1647.1924781799316, + "relativeCreated": 1642.6422595977783, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_seed__" ], - "asctime": "2020-12-21 22:33:02,735", - "created": 1608586382.7350998, + "asctime": "2020-12-25 15:03:38,123", + "created": 1608905018.1235218, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 735.0997924804688, + "msecs": 123.52180480957031, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1647.406816482544, + "relativeCreated": 1642.8639888763428, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,735", - "created": 1608586382.7352483, + "asctime": "2020-12-25 15:03:38,123", + "created": 1608905018.123677, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 422, - "message": "SJP: Got seed request, sending seed for authentification", + "lineno": 453, + "message": "socket_protocol (server): Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 735.248327255249, + "msecs": 123.67701530456543, "msg": "%s Got seed request, sending seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1647.5553512573242, + "relativeCreated": 1643.019199371338, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 2, 0, - "'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'" + "'009397399f4a930023d86cd08371ecf17f3c1879a494a3ef4731cf839d1b215f'" ], - "asctime": "2020-12-21 22:33:02,735", - "created": 1608586382.7354476, + "asctime": "2020-12-25 15:03:38,123", + "created": 1608905018.1238825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 2, data_id: 0, data: \"'009397399f4a930023d86cd08371ecf17f3c1879a494a3ef4731cf839d1b215f'\"", "module": "__init__", - "msecs": 735.4476451873779, + "msecs": 123.88253211975098, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1647.7546691894531, + "relativeCreated": 1643.2247161865234, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-12-21 22:33:02,735", - "created": 1608586382.7359247, + "asctime": "2020-12-25 15:03:38,124", + "created": 1608905018.1243505, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", + "lineno": 60, + "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 30 39 33 39 37 33 39 39 66 34 61 39 33 30 30 32 33 64 38 36 63 64 30 38 33 37 31 65 63 66 31 37 66 33 63 31 38 37 39 61 34 39 34 61 33 65 66 34 37 33 31 63 66 38 33 39 64 31 62 32 31 35 66 22 7d 98 9d 40 14", "module": "test_helpers", - "msecs": 735.9247207641602, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", + "msecs": 124.35054779052734, + "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 30 39 33 39 37 33 39 39 66 34 61 39 33 30 30 32 33 64 38 36 63 64 30 38 33 37 31 65 63 66 31 37 66 33 63 31 38 37 39 61 34 39 34 61 33 65 66 34 37 33 31 63 66 38 33 39 64 31 62 32 31 35 66 22 7d 98 9d 40 14", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1648.2317447662354, + "relativeCreated": 1643.6927318572998, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-12-21 22:33:02,887", - "created": 1608586382.8870206, + "asctime": "2020-12-25 15:03:38,275", + "created": 1608905018.2754693, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", + "lineno": 71, + "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 30 39 33 39 37 33 39 39 66 34 61 39 33 30 30 32 33 64 38 36 63 64 30 38 33 37 31 65 63 66 31 37 66 33 63 31 38 37 39 61 34 39 34 61 33 65 66 34 37 33 31 63 66 38 33 39 64 31 62 32 31 35 66 22 7d 98 9d 40 14", "module": "test_helpers", - "msecs": 887.0205879211426, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", + "msecs": 275.4693031311035, + "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 30 30 39 33 39 37 33 39 39 66 34 61 39 33 30 30 32 33 64 38 36 63 64 30 38 33 37 31 65 63 66 31 37 66 33 63 31 38 37 39 61 34 39 34 61 33 65 66 34 37 33 31 63 66 38 33 39 64 31 62 32 31 35 66 22 7d 98 9d 40 14", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1799.3276119232178, + "relativeCreated": 1794.811487197876, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "2", "0", - "'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'" + "'009397399f4a930023d86cd08371ecf17f3c1879a494a3ef4731cf839d1b215f'" ], - "asctime": "2020-12-21 22:33:02,887", - "created": 1608586382.887456, + "asctime": "2020-12-25 15:03:38,275", + "created": 1608905018.2758863, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 2, data_id: 0, data: \"'009397399f4a930023d86cd08371ecf17f3c1879a494a3ef4731cf839d1b215f'\"", "module": "__init__", - "msecs": 887.455940246582, + "msecs": 275.88629722595215, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1799.7629642486572, + "relativeCreated": 1795.2284812927246, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_create_key__" ], - "asctime": "2020-12-21 22:33:02,887", - "created": 1608586382.8876793, + "asctime": "2020-12-25 15:03:38,276", + "created": 1608905018.276102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_create_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 887.6793384552002, + "msecs": 276.10206604003906, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1799.9863624572754, + "relativeCreated": 1795.4442501068115, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,887", - "created": 1608586382.8878312, + "asctime": "2020-12-25 15:03:38,276", + "created": 1608905018.276256, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 431, - "message": "SJP: Got seed, sending key for authentification", + "lineno": 462, + "message": "socket_protocol (server): Got seed, sending key for authentification", "module": "__init__", - "msecs": 887.8312110900879, + "msecs": 276.2560844421387, "msg": "%s Got seed, sending key for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1800.138235092163, + "relativeCreated": 1795.5982685089111, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 3, 0, - "'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'" + "'5f8c68aa5c740a0841eeb15d14a72b228a30fa2bed55b4a69f17f1f94e0fa7182d53233ce0d06722a5a6b950f7d17984a1aa2808fd665c1655a8ad193d604054'" ], - "asctime": "2020-12-21 22:33:02,888", - "created": 1608586382.8880537, + "asctime": "2020-12-25 15:03:38,276", + "created": 1608905018.2764783, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 3, data_id: 0, data: \"'5f8c68aa5c740a0841eeb15d14a72b228a30fa2bed55b4a69f17f1f94e0fa7182d53233ce0d06722a5a6b950f7d17984a1aa2808fd665c1655a8ad193d604054'\"", "module": "__init__", - "msecs": 888.0536556243896, + "msecs": 276.4782905578613, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1800.3606796264648, + "relativeCreated": 1795.8204746246338, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-12-21 22:33:02,888", - "created": 1608586382.8886065, + "asctime": "2020-12-25 15:03:38,277", + "created": 1608905018.2770524, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", + "lineno": 60, + "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 38 63 36 38 61 61 35 63 37 34 30 61 30 38 34 31 65 65 62 31 35 64 31 34 61 37 32 62 32 32 38 61 33 30 66 61 32 62 65 64 35 35 62 34 61 36 39 66 31 37 66 31 66 39 34 65 30 66 61 37 31 38 32 64 35 33 32 33 33 63 65 30 64 30 36 37 32 32 61 35 61 36 62 39 35 30 66 37 64 31 37 39 38 34 61 31 61 61 32 38 30 38 66 64 36 36 35 63 31 36 35 35 61 38 61 64 31 39 33 64 36 30 34 30 35 34 22 7d a8 90 36 be", "module": "test_helpers", - "msecs": 888.6065483093262, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", + "msecs": 277.0524024963379, + "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 38 63 36 38 61 61 35 63 37 34 30 61 30 38 34 31 65 65 62 31 35 64 31 34 61 37 32 62 32 32 38 61 33 30 66 61 32 62 65 64 35 35 62 34 61 36 39 66 31 37 66 31 66 39 34 65 30 66 61 37 31 38 32 64 35 33 32 33 33 63 65 30 64 30 36 37 32 32 61 35 61 36 62 39 35 30 66 37 64 31 37 39 38 34 61 31 61 61 32 38 30 38 66 64 36 36 35 63 31 36 35 35 61 38 61 64 31 39 33 64 36 30 34 30 35 34 22 7d a8 90 36 be", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1800.9135723114014, + "relativeCreated": 1796.3945865631104, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-12-21 22:33:03,040", - "created": 1608586383.0400386, + "asctime": "2020-12-25 15:03:38,428", + "created": 1608905018.428188, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", + "lineno": 71, + "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 38 63 36 38 61 61 35 63 37 34 30 61 30 38 34 31 65 65 62 31 35 64 31 34 61 37 32 62 32 32 38 61 33 30 66 61 32 62 65 64 35 35 62 34 61 36 39 66 31 37 66 31 66 39 34 65 30 66 61 37 31 38 32 64 35 33 32 33 33 63 65 30 64 30 36 37 32 32 61 35 61 36 62 39 35 30 66 37 64 31 37 39 38 34 61 31 61 61 32 38 30 38 66 64 36 36 35 63 31 36 35 35 61 38 61 64 31 39 33 64 36 30 34 30 35 34 22 7d a8 90 36 be", "module": "test_helpers", - "msecs": 40.0385856628418, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", + "msecs": 428.1880855560303, + "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 38 63 36 38 61 61 35 63 37 34 30 61 30 38 34 31 65 65 62 31 35 64 31 34 61 37 32 62 32 32 38 61 33 30 66 61 32 62 65 64 35 35 62 34 61 36 39 66 31 37 66 31 66 39 34 65 30 66 61 37 31 38 32 64 35 33 32 33 33 63 65 30 64 30 36 37 32 32 61 35 61 36 62 39 35 30 66 37 64 31 37 39 38 34 61 31 61 61 32 38 30 38 66 64 36 36 35 63 31 36 35 35 61 38 61 64 31 39 33 64 36 30 34 30 35 34 22 7d a8 90 36 be", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1952.345609664917, + "relativeCreated": 1947.5302696228027, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "3", "0", - "'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'" + "'5f8c68aa5c740a0841eeb15d14a72b228a30fa2bed55b4a69f17f1f94e0fa7182d53233ce0d06722a5a6b950f7d17984a1aa2808fd665c1655a8ad193d604054'" ], - "asctime": "2020-12-21 22:33:03,040", - "created": 1608586383.0406315, + "asctime": "2020-12-25 15:03:38,428", + "created": 1608905018.428524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 3, data_id: 0, data: \"'5f8c68aa5c740a0841eeb15d14a72b228a30fa2bed55b4a69f17f1f94e0fa7182d53233ce0d06722a5a6b950f7d17984a1aa2808fd665c1655a8ad193d604054'\"", "module": "__init__", - "msecs": 40.63153266906738, + "msecs": 428.5240173339844, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1952.9385566711426, + "relativeCreated": 1947.8662014007568, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_check_key__" ], - "asctime": "2020-12-21 22:33:03,040", - "created": 1608586383.0409331, + "asctime": "2020-12-25 15:03:38,428", + "created": 1608905018.4287114, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback __authentificate_check_key__ to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 40.93313217163086, + "msecs": 428.7114143371582, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1953.240156173706, + "relativeCreated": 1948.0535984039307, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,041", - "created": 1608586383.0411491, + "asctime": "2020-12-25 15:03:38,428", + "created": 1608905018.428874, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 441, - "message": "SJP: Got correct key, sending positive authentification feedback", + "lineno": 472, + "message": "socket_protocol (server): Got correct key, sending positive authentification feedback", "module": "__init__", - "msecs": 41.149139404296875, + "msecs": 428.87401580810547, "msg": "%s Got correct key, sending positive authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1953.456163406372, + "relativeCreated": 1948.216199874878, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 4, 0, "True" ], - "asctime": "2020-12-21 22:33:03,041", - "created": 1608586383.0413249, + "asctime": "2020-12-25 15:03:38,429", + "created": 1608905018.42902, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 41.32485389709473, + "msecs": 429.0199279785156, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1953.63187789917, + "relativeCreated": 1948.362112045288, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-12-21 22:33:03,041", - "created": 1608586383.0417163, + "asctime": "2020-12-25 15:03:38,429", + "created": 1608905018.4293022, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "module": "test_helpers", - "msecs": 41.71633720397949, + "msecs": 429.3022155761719, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1954.0233612060547, + "relativeCreated": 1948.6443996429443, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-12-21 22:33:03,192", - "created": 1608586383.1927798, + "asctime": "2020-12-25 15:03:38,580", + "created": 1608905018.5802226, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "module": "test_helpers", - "msecs": 192.7797794342041, + "msecs": 580.2226066589355, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2105.0868034362793, + "relativeCreated": 2099.564790725708, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "4", "0", "True" ], - "asctime": "2020-12-21 22:33:03,193", - "created": 1608586383.1932278, + "asctime": "2020-12-25 15:03:38,580", + "created": 1608905018.5806556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 193.22776794433594, + "msecs": 580.655574798584, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2105.534791946411, + "relativeCreated": 2099.9977588653564, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", "__authentificate_process_feedback__" ], - "asctime": "2020-12-21 22:33:03,193", - "created": 1608586383.1934607, + "asctime": "2020-12-25 15:03:38,580", + "created": 1608905018.580869, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 299, - "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", + "lineno": 330, + "message": "socket_protocol (server): Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 193.46070289611816, + "msecs": 580.8689594268799, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2105.7677268981934, + "relativeCreated": 2100.2111434936523, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-8" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,193", - "created": 1608586383.1936214, + "asctime": "2020-12-25 15:03:38,581", + "created": 1608905018.5810485, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 452, - "message": "SJP: Got positive authentification feedback", + "lineno": 483, + "message": "socket_protocol (server): Got positive authentification feedback", "module": "__init__", - "msecs": 193.62139701843262, + "msecs": 581.0484886169434, "msg": "%s Got positive authentification feedback", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2105.928421020508, + "relativeCreated": 2100.390672683716, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-8" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:03,285", - "created": 1608586383.2858305, + "asctime": "2020-12-25 15:03:38,674", + "created": 1608905018.6745043, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 285.8304977416992, + "msecs": 674.504280090332, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2198.1375217437744, + "relativeCreated": 2193.8464641571045, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:03,286", - "created": 1608586383.2863817, + "asctime": "2020-12-25 15:03:38,675", + "created": 1608905018.6753812, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 286.38172149658203, + "msecs": 675.3811836242676, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2198.688745498657, + "relativeCreated": 2194.72336769104, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:03,437", - "created": 1608586383.4374583, + "asctime": "2020-12-25 15:03:38,826", + "created": 1608905018.8264213, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 437.4582767486572, + "msecs": 826.4212608337402, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2349.7653007507324, + "relativeCreated": 2345.7634449005127, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:03,437", - "created": 1608586383.4378772, + "asctime": "2020-12-25 15:03:38,826", + "created": 1608905018.8268354, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 437.8771781921387, + "msecs": 826.8353939056396, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2350.184202194214, + "relativeCreated": 2346.177577972412, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:03,438", - "created": 1608586383.438089, + "asctime": "2020-12-25 15:03:38,827", + "created": 1608905018.8270497, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 438.08889389038086, + "msecs": 827.049732208252, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2350.395917892456, + "relativeCreated": 2346.3919162750244, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-9" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:03,438", - "created": 1608586383.4382648, + "asctime": "2020-12-25 15:03:38,827", + "created": 1608905018.8272343, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 438.2648468017578, + "msecs": 827.2342681884766, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2350.571870803833, + "relativeCreated": 2346.576452255249, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-12-21 22:33:03,438", - "created": 1608586383.4386406, + "asctime": "2020-12-25 15:03:38,827", + "created": 1608905018.827608, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 438.6405944824219, + "msecs": 827.6081085205078, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2350.947618484497, + "relativeCreated": 2346.9502925872803, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-12-21 22:33:03,589", - "created": 1608586383.5896819, + "asctime": "2020-12-25 15:03:38,978", + "created": 1608905018.9786143, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 589.68186378479, + "msecs": 978.614330291748, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2501.9888877868652, + "relativeCreated": 2497.9565143585205, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-10" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:03,590", - "created": 1608586383.5901225, + "asctime": "2020-12-25 15:03:38,979", + "created": 1608905018.979032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 590.1224613189697, + "msecs": 979.032039642334, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2502.429485321045, + "relativeCreated": 2498.3742237091064, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-10" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:03,590", - "created": 1608586383.5903919, + "asctime": "2020-12-25 15:03:38,979", + "created": 1608905018.9792733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 590.3918743133545, + "msecs": 979.2733192443848, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2502.6988983154297, + "relativeCreated": 2498.615503311157, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-10" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,590", - "created": 1608586383.5905788, + "asctime": "2020-12-25 15:03:38,979", + "created": 1608905018.9794648, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 590.5787944793701, + "msecs": 979.4647693634033, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2502.8858184814453, + "relativeCreated": 2498.806953430176, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-10" } ], - "msecs": 788.4716987609863, + "msecs": 177.50263214111328, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2700.7787227630615, + "relativeCreated": 2696.8448162078857, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.1978929042816162 + "time_consumption": 0.19803786277770996 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:03,789", - "created": 1608586383.7893555, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.1783667, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23216,8 +25599,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:03,788", - "created": 1608586383.7889855, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.1780074, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23227,15 +25610,15 @@ "lineno": 22, "message": "Result (Return value of authentification): True ()", "module": "test", - "msecs": 788.9854907989502, + "msecs": 178.0073642730713, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2701.2925148010254, + "relativeCreated": 2697.3495483398438, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23244,8 +25627,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:03,789", - "created": 1608586383.7891948, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.1782134, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23255,37 +25638,37 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = True ()", "module": "test", - "msecs": 789.1948223114014, + "msecs": 178.21335792541504, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2701.5018463134766, + "relativeCreated": 2697.5555419921875, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 789.3555164337158, + "msecs": 178.36666107177734, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2701.662540435791, + "relativeCreated": 2697.70884513855, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016069412231445312 + "time_consumption": 0.0001533031463623047 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:03,789", - "created": 1608586383.78987, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.1788602, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23302,8 +25685,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:03,789", - "created": 1608586383.7895854, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.178587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23313,15 +25696,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 789.5853519439697, + "msecs": 178.5869598388672, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2701.892375946045, + "relativeCreated": 2697.9291439056396, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23330,8 +25713,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:03,789", - "created": 1608586383.7897308, + "asctime": "2020-12-25 15:03:39,178", + "created": 1608905019.1787267, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23341,37 +25724,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 789.7307872772217, + "msecs": 178.7266731262207, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.037811279297, + "relativeCreated": 2698.068857192993, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 789.870023727417, + "msecs": 178.86018753051758, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.177047729492, + "relativeCreated": 2698.20237159729, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001392364501953125 + "time_consumption": 0.000133514404296875 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.7903824, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.1793594, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23388,8 +25771,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.790086, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.1790738, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23399,15 +25782,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 790.086030960083, + "msecs": 179.07381057739258, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.393054962158, + "relativeCreated": 2698.415994644165, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23416,8 +25799,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.7902443, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.1792238, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23427,37 +25810,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 790.2443408966064, + "msecs": 179.22377586364746, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.5513648986816, + "relativeCreated": 2698.56595993042, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 790.3823852539062, + "msecs": 179.35943603515625, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.6894092559814, + "relativeCreated": 2698.7016201019287, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001380443572998047 + "time_consumption": 0.00013566017150878906 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.7909405, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.179922, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23474,8 +25857,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.7906084, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.1795855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23485,15 +25868,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 790.6084060668945, + "msecs": 179.58545684814453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2702.9154300689697, + "relativeCreated": 2698.927640914917, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23502,8 +25885,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:03,790", - "created": 1608586383.7907581, + "asctime": "2020-12-25 15:03:39,179", + "created": 1608905019.1797504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23513,37 +25896,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 790.7581329345703, + "msecs": 179.7504425048828, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.0651569366455, + "relativeCreated": 2699.0926265716553, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 790.940523147583, + "msecs": 179.92210388183594, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.247547149658, + "relativeCreated": 2699.2642879486084, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001823902130126953 + "time_consumption": 0.000171661376953125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.791434, + "asctime": "2020-12-25 15:03:39,180", + "created": 1608905019.1804338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23560,8 +25943,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.791162, + "asctime": "2020-12-25 15:03:39,180", + "created": 1608905019.180153, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23571,15 +25954,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 791.1620140075684, + "msecs": 180.15289306640625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.4690380096436, + "relativeCreated": 2699.4950771331787, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23588,8 +25971,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.7913003, + "asctime": "2020-12-25 15:03:39,180", + "created": 1608905019.1802995, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23599,37 +25982,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 791.3002967834473, + "msecs": 180.2995204925537, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.6073207855225, + "relativeCreated": 2699.641704559326, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 791.4340496063232, + "msecs": 180.4337501525879, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.7410736083984, + "relativeCreated": 2699.7759342193604, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00013375282287597656 + "time_consumption": 0.0001342296600341797 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.7919958, + "asctime": "2020-12-25 15:03:39,181", + "created": 1608905019.1810055, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23646,8 +26029,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.7916567, + "asctime": "2020-12-25 15:03:39,180", + "created": 1608905019.1806686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23657,15 +26040,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 791.6567325592041, + "msecs": 180.66859245300293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2703.9637565612793, + "relativeCreated": 2700.0107765197754, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23674,8 +26057,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:03,791", - "created": 1608586383.791807, + "asctime": "2020-12-25 15:03:39,180", + "created": 1608905019.1808171, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23685,37 +26068,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 791.8069362640381, + "msecs": 180.8171272277832, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2704.1139602661133, + "relativeCreated": 2700.1593112945557, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 791.9957637786865, + "msecs": 181.00547790527344, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2704.3027877807617, + "relativeCreated": 2700.347661972046, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001888275146484375 + "time_consumption": 0.00018835067749023438 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:03,893", - "created": 1608586383.8933105, + "asctime": "2020-12-25 15:03:39,282", + "created": 1608905019.2822268, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23728,31 +26111,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:03,892", - "created": 1608586383.8925674, + "asctime": "2020-12-25 15:03:39,281", + "created": 1608905019.2815804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 892.5673961639404, + "msecs": 281.58044815063477, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2804.8744201660156, + "relativeCreated": 2800.922632217407, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23761,8 +26144,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:03,892", - "created": 1608586383.8929782, + "asctime": "2020-12-25 15:03:39,281", + "created": 1608905019.2819111, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23772,15 +26155,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 892.9781913757324, + "msecs": 281.91113471984863, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2805.2852153778076, + "relativeCreated": 2801.253318786621, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23789,8 +26172,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:03,893", - "created": 1608586383.8931527, + "asctime": "2020-12-25 15:03:39,282", + "created": 1608905019.282076, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23800,37 +26183,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 893.1527137756348, + "msecs": 282.0758819580078, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2805.45973777771, + "relativeCreated": 2801.4180660247803, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 893.310546875, + "msecs": 282.2268009185791, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2805.617570877075, + "relativeCreated": 2801.5689849853516, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015783309936523438 + "time_consumption": 0.00015091896057128906 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:03,994", - "created": 1608586383.9945948, + "asctime": "2020-12-25 15:03:39,383", + "created": 1608905019.3834891, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23843,31 +26226,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:03,993", - "created": 1608586383.9938853, + "asctime": "2020-12-25 15:03:39,382", + "created": 1608905019.3828454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 993.8852787017822, + "msecs": 382.845401763916, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2906.1923027038574, + "relativeCreated": 2902.1875858306885, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23876,8 +26259,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:03,994", - "created": 1608586383.9942572, + "asctime": "2020-12-25 15:03:39,383", + "created": 1608905019.3831377, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23887,15 +26270,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 994.2572116851807, + "msecs": 383.13770294189453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2906.564235687256, + "relativeCreated": 2902.479887008667, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -23904,8 +26287,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:03,994", - "created": 1608586383.9944363, + "asctime": "2020-12-25 15:03:39,383", + "created": 1608905019.383305, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23915,64 +26298,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 994.4362640380859, + "msecs": 383.3050727844238, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2906.743288040161, + "relativeCreated": 2902.6472568511963, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 994.5948123931885, + "msecs": 383.48913192749023, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2906.9018363952637, + "relativeCreated": 2902.8313159942627, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015854835510253906 + "time_consumption": 0.00018405914306640625 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 1.412869930267334, - "time_finished": "2020-12-21 22:33:03,994", - "time_start": "2020-12-21 22:33:02,581" + "time_consumption": 1.4135158061981201, + "time_finished": "2020-12-25 15:03:39,383", + "time_start": "2020-12-25 15:03:37,969" }, "socket_protocol.pure_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-12-21 22:33:01,871", - "created": 1608586381.8715048, + "asctime": "2020-12-25 15:03:37,259", + "created": 1608905017.25998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 26, + "lineno": 27, "message": "socket_protocol.pure_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 871.5047836303711, + "msecs": 259.9799633026123, "msg": "socket_protocol.pure_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 783.8118076324463, + "relativeCreated": 779.3221473693848, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:02,374", - "created": 1608586382.3746574, + "asctime": "2020-12-25 15:03:37,763", + "created": 1608905017.763997, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -23985,424 +26368,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,871", - "created": 1608586381.871734, + "asctime": "2020-12-25 15:03:37,260", + "created": 1608905017.2602956, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 871.7339038848877, + "msecs": 260.2956295013428, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.0409278869629, + "relativeCreated": 779.6378135681152, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,871", - "created": 1608586381.8719707, + "asctime": "2020-12-25 15:03:37,260", + "created": 1608905017.260688, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 871.9706535339355, + "msecs": 260.68806648254395, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.2776775360107, + "relativeCreated": 780.0302505493164, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,872", - "created": 1608586381.8721097, + "asctime": "2020-12-25 15:03:37,260", + "created": 1608905017.2608812, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 872.1096515655518, + "msecs": 260.8811855316162, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.416675567627, + "relativeCreated": 780.2233695983887, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,872", - "created": 1608586381.8722541, + "asctime": "2020-12-25 15:03:37,261", + "created": 1608905017.2612073, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 872.2541332244873, + "msecs": 261.20734214782715, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.5611572265625, + "relativeCreated": 780.5495262145996, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:01,872", - "created": 1608586381.8723776, + "asctime": "2020-12-25 15:03:37,261", + "created": 1608905017.2614346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 872.3776340484619, + "msecs": 261.43455505371094, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.6846580505371, + "relativeCreated": 780.7767391204834, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:01,872", - "created": 1608586381.8726604, + "asctime": "2020-12-25 15:03:37,261", + "created": 1608905017.2619069, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 872.6603984832764, + "msecs": 261.90686225891113, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 784.9674224853516, + "relativeCreated": 781.2490463256836, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:02,023", - "created": 1608586382.0235343, + "asctime": "2020-12-25 15:03:37,412", + "created": 1608905017.412934, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 23.534297943115234, + "msecs": 412.9340648651123, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 935.8413219451904, + "relativeCreated": 932.2762489318848, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:02,023", - "created": 1608586382.0237153, + "asctime": "2020-12-25 15:03:37,413", + "created": 1608905017.4133117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 23.71525764465332, + "msecs": 413.3117198944092, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 936.0222816467285, + "relativeCreated": 932.6539039611816, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:02,023", - "created": 1608586382.0238383, + "asctime": "2020-12-25 15:03:37,413", + "created": 1608905017.4135087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 23.838281631469727, + "msecs": 413.50865364074707, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 936.1453056335449, + "relativeCreated": 932.8508377075195, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-3" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:02,023", - "created": 1608586382.0239198, + "asctime": "2020-12-25 15:03:37,413", + "created": 1608905017.4137475, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 23.91982078552246, + "msecs": 413.74754905700684, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 936.2268447875977, + "relativeCreated": 933.0897331237793, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-12-21 22:33:02,024", - "created": 1608586382.0240624, + "asctime": "2020-12-25 15:03:37,414", + "created": 1608905017.4141195, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 24.062395095825195, + "msecs": 414.1194820404053, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 936.3694190979004, + "relativeCreated": 933.4616661071777, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-12-21 22:33:02,174", - "created": 1608586382.1747656, + "asctime": "2020-12-25 15:03:37,564", + "created": 1608905017.564965, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 174.76558685302734, + "msecs": 564.965009689331, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1087.0726108551025, + "relativeCreated": 1084.3071937561035, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-4" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:02,175", - "created": 1608586382.1751964, + "asctime": "2020-12-25 15:03:37,565", + "created": 1608905017.5652163, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 175.19640922546387, + "msecs": 565.2163028717041, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1087.503433227539, + "relativeCreated": 1084.5584869384766, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-4" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:02,175", - "created": 1608586382.1754267, + "asctime": "2020-12-25 15:03:37,565", + "created": 1608905017.5653477, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 175.42672157287598, + "msecs": 565.3476715087891, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1087.7337455749512, + "relativeCreated": 1084.6898555755615, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-4" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:02,175", - "created": 1608586382.1756117, + "asctime": "2020-12-25 15:03:37,565", + "created": 1608905017.5654542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 175.6117343902588, + "msecs": 565.4542446136475, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1087.918758392334, + "relativeCreated": 1084.79642868042, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-4" } ], - "msecs": 374.65739250183105, + "msecs": 763.9970779418945, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1286.9644165039062, + "relativeCreated": 1283.339262008667, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19904565811157227 + "time_consumption": 0.19854283332824707 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.3754456, + "asctime": "2020-12-25 15:03:37,764", + "created": 1608905017.7648048, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24419,8 +26802,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.3750882, + "asctime": "2020-12-25 15:03:37,764", + "created": 1608905017.7644567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24430,15 +26813,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 375.0882148742676, + "msecs": 764.4567489624023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1287.3952388763428, + "relativeCreated": 1283.7989330291748, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24447,8 +26830,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.375278, + "asctime": "2020-12-25 15:03:37,764", + "created": 1608905017.7646344, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24458,37 +26841,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 375.2779960632324, + "msecs": 764.634370803833, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1287.5850200653076, + "relativeCreated": 1283.9765548706055, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 375.4456043243408, + "msecs": 764.8048400878906, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1287.752628326416, + "relativeCreated": 1284.147024154663, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016760826110839844 + "time_consumption": 0.0001704692840576172 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.375984, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.7653196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24505,8 +26888,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.3756895, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.7650416, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24516,15 +26899,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 375.6895065307617, + "msecs": 765.0415897369385, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1287.996530532837, + "relativeCreated": 1284.383773803711, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24533,8 +26916,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:02,375", - "created": 1608586382.375836, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.7651832, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24544,37 +26927,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 375.8358955383301, + "msecs": 765.1832103729248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1288.1429195404053, + "relativeCreated": 1284.5253944396973, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 375.98395347595215, + "msecs": 765.3195858001709, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1288.2909774780273, + "relativeCreated": 1284.6617698669434, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001480579376220703 + "time_consumption": 0.00013637542724609375 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:02,376", - "created": 1608586382.3765419, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.765914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24591,8 +26974,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:02,376", - "created": 1608586382.3762195, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.7655501, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24602,15 +26985,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 376.2195110321045, + "msecs": 765.5501365661621, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1288.5265350341797, + "relativeCreated": 1284.8923206329346, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24619,8 +27002,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:02,376", - "created": 1608586382.3763697, + "asctime": "2020-12-25 15:03:37,765", + "created": 1608905017.7657404, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24630,37 +27013,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 376.3697147369385, + "msecs": 765.7403945922852, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1288.6767387390137, + "relativeCreated": 1285.0825786590576, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 376.5418529510498, + "msecs": 765.9139633178711, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1288.848876953125, + "relativeCreated": 1285.2561473846436, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00017213821411132812 + "time_consumption": 0.0001735687255859375 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:02,377", - "created": 1608586382.377088, + "asctime": "2020-12-25 15:03:37,766", + "created": 1608905017.7664227, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24677,8 +27060,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:02,376", - "created": 1608586382.3768022, + "asctime": "2020-12-25 15:03:37,766", + "created": 1608905017.766138, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24688,15 +27071,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 376.8022060394287, + "msecs": 766.1380767822266, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.109230041504, + "relativeCreated": 1285.480260848999, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24705,8 +27088,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:02,376", - "created": 1608586382.376949, + "asctime": "2020-12-25 15:03:37,766", + "created": 1608905017.766287, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24716,37 +27099,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 376.9490718841553, + "msecs": 766.287088394165, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.2560958862305, + "relativeCreated": 1285.6292724609375, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 377.0880699157715, + "msecs": 766.4227485656738, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.3950939178467, + "relativeCreated": 1285.7649326324463, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00013899803161621094 + "time_consumption": 0.00013566017150878906 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:02,377", - "created": 1608586382.3776622, + "asctime": "2020-12-25 15:03:37,767", + "created": 1608905017.7670028, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24763,8 +27146,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:02,377", - "created": 1608586382.377319, + "asctime": "2020-12-25 15:03:37,766", + "created": 1608905017.766654, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24774,15 +27157,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 377.3190975189209, + "msecs": 766.6540145874023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.626121520996, + "relativeCreated": 1285.9961986541748, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24791,8 +27174,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:02,377", - "created": 1608586382.3774714, + "asctime": "2020-12-25 15:03:37,766", + "created": 1608905017.7668135, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24802,37 +27185,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 377.4714469909668, + "msecs": 766.8135166168213, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.778470993042, + "relativeCreated": 1286.1557006835938, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 377.66218185424805, + "msecs": 767.0028209686279, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1289.9692058563232, + "relativeCreated": 1286.3450050354004, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00019073486328125 + "time_consumption": 0.00018930435180664062 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:02,478", - "created": 1608586382.478912, + "asctime": "2020-12-25 15:03:37,868", + "created": 1608905017.8681364, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24845,31 +27228,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:02,478", - "created": 1608586382.4782338, + "asctime": "2020-12-25 15:03:37,867", + "created": 1608905017.8675313, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 478.23381423950195, + "msecs": 867.5312995910645, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1390.5408382415771, + "relativeCreated": 1386.873483657837, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24878,8 +27261,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:02,478", - "created": 1608586382.478574, + "asctime": "2020-12-25 15:03:37,867", + "created": 1608905017.867819, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24889,15 +27272,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 478.5740375518799, + "msecs": 867.81907081604, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1390.881061553955, + "relativeCreated": 1387.1612548828125, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24906,8 +27289,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:02,478", - "created": 1608586382.4787576, + "asctime": "2020-12-25 15:03:37,867", + "created": 1608905017.867986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24917,37 +27300,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 478.7576198577881, + "msecs": 867.9859638214111, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1391.0646438598633, + "relativeCreated": 1387.3281478881836, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 478.9121150970459, + "msecs": 868.1364059448242, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1391.219139099121, + "relativeCreated": 1387.4785900115967, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001544952392578125 + "time_consumption": 0.00015044212341308594 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:02,580", - "created": 1608586382.5808768, + "asctime": "2020-12-25 15:03:37,969", + "created": 1608905017.9694054, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24960,31 +27343,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:02,579", - "created": 1608586382.5795164, + "asctime": "2020-12-25 15:03:37,968", + "created": 1608905017.9687448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 579.5164108276367, + "msecs": 968.7447547912598, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1491.823434829712, + "relativeCreated": 1488.0869388580322, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -24993,8 +27376,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:02,580", - "created": 1608586382.5801826, + "asctime": "2020-12-25 15:03:37,969", + "created": 1608905017.9690585, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25004,15 +27387,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 580.1825523376465, + "msecs": 969.0585136413574, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1492.4895763397217, + "relativeCreated": 1488.4006977081299, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -25021,8 +27404,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:02,580", - "created": 1608586382.5805354, + "asctime": "2020-12-25 15:03:37,969", + "created": 1608905017.9692292, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25032,69 +27415,69 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 580.5354118347168, + "msecs": 969.2292213439941, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1492.842435836792, + "relativeCreated": 1488.5714054107666, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 580.8768272399902, + "msecs": 969.4054126739502, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 1493.1838512420654, + "relativeCreated": 1488.7475967407227, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0003414154052734375 + "time_consumption": 0.0001761913299560547 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.7093720436096191, - "time_finished": "2020-12-21 22:33:02,580", - "time_start": "2020-12-21 22:33:01,871" + "time_consumption": 0.7094254493713379, + "time_finished": "2020-12-25 15:03:37,969", + "time_start": "2020-12-25 15:03:37,259" }, "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.": { "args": null, - "asctime": "2020-12-21 22:33:08,558", - "created": 1608586388.5583332, + "asctime": "2020-12-25 15:03:43,943", + "created": 1608905023.9434936, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 37, + "lineno": 38, "message": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "module": "__init__", "moduleLogger": [], - "msecs": 558.333158493042, + "msecs": 943.4936046600342, "msg": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7470.640182495117, + "relativeCreated": 7462.835788726807, "stack_info": null, "testcaseLogger": [ { "args": [ - "0.20124530792236328", + "0.20126914978027344", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-12-21 22:33:08,761", - "created": 1608586388.761356, + "asctime": "2020-12-25 15:03:44,146", + "created": 1608905024.146737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25102,201 +27485,201 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.20124530792236328 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.20126914978027344 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,558", - "created": 1608586388.558641, + "asctime": "2020-12-25 15:03:43,943", + "created": 1608905023.9438117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 558.6409568786621, + "msecs": 943.8116550445557, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7470.947980880737, + "relativeCreated": 7463.153839111328, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,558", - "created": 1608586388.558948, + "asctime": "2020-12-25 15:03:43,944", + "created": 1608905023.9441953, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 558.9480400085449, + "msecs": 944.1952705383301, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7471.25506401062, + "relativeCreated": 7463.5374546051025, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,559", - "created": 1608586388.5591404, + "asctime": "2020-12-25 15:03:43,944", + "created": 1608905023.9443996, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 559.1404438018799, + "msecs": 944.3995952606201, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7471.447467803955, + "relativeCreated": 7463.741779327393, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,559", - "created": 1608586388.5593998, + "asctime": "2020-12-25 15:03:43,944", + "created": 1608905023.944734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 559.3998432159424, + "msecs": 944.7340965270996, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7471.706867218018, + "relativeCreated": 7464.076280593872, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,559", - "created": 1608586388.5595672, + "asctime": "2020-12-25 15:03:43,944", + "created": 1608905023.9449227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 559.5672130584717, + "msecs": 944.922685623169, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7471.874237060547, + "relativeCreated": 7464.264869689941, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:33:08,559", - "created": 1608586388.5597115, + "asctime": "2020-12-25 15:03:43,945", + "created": 1608905023.9450736, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 559.7114562988281, + "msecs": 945.0736045837402, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7472.018480300903, + "relativeCreated": 7464.415788650513, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:08,560", - "created": 1608586388.5600815, + "asctime": "2020-12-25 15:03:43,945", + "created": 1608905023.9454403, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 560.0814819335938, + "msecs": 945.4402923583984, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7472.388505935669, + "relativeCreated": 7464.782476425171, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.20124530792236328", + "0.20126914978027344", "" ], - "asctime": "2020-12-21 22:33:08,760", - "created": 1608586388.7608838, + "asctime": "2020-12-25 15:03:44,146", + "created": 1608905024.1462553, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25304,17 +27687,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.20124530792236328 ()", + "message": "Result (Timeout for authentification): 0.20126914978027344 ()", "module": "test", - "msecs": 760.8838081359863, + "msecs": 146.2552547454834, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7673.1908321380615, + "relativeCreated": 7665.597438812256, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -25323,8 +27706,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-12-21 22:33:08,761", - "created": 1608586388.7611704, + "asctime": "2020-12-25 15:03:44,146", + "created": 1608905024.1465302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25334,39 +27717,39 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 761.1703872680664, + "msecs": 146.5301513671875, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7673.477411270142, + "relativeCreated": 7665.87233543396, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 761.3561153411865, + "msecs": 146.73709869384766, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7673.663139343262, + "relativeCreated": 7666.07928276062, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001857280731201172 + "time_consumption": 0.00020694732666015625 }, { "args": [ - "0.5021066665649414", + "0.5021231174468994", "0.5", "0.55", "" ], - "asctime": "2020-12-21 22:33:09,264", - "created": 1608586389.2643282, + "asctime": "2020-12-25 15:03:44,649", + "created": 1608905024.6496973, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25374,97 +27757,97 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.5021066665649414 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.5021231174468994 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:08,761", - "created": 1608586388.7616549, + "asctime": "2020-12-25 15:03:44,147", + "created": 1608905024.1470375, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 396, - "message": "SJP: Requesting seed for authentification", + "lineno": 427, + "message": "socket_protocol (server): Requesting seed for authentification", "module": "__init__", - "msecs": 761.6548538208008, + "msecs": 147.03750610351562, "msg": "%s Requesting seed for authentification", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7673.961877822876, + "relativeCreated": 7666.379690170288, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 1, 0, "None" ], - "asctime": "2020-12-21 22:33:08,761", - "created": 1608586388.7618334, + "asctime": "2020-12-25 15:03:44,147", + "created": 1608905024.147212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 761.8334293365479, + "msecs": 147.21202850341797, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7674.140453338623, + "relativeCreated": 7666.55421257019, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:08,762", - "created": 1608586388.762243, + "asctime": "2020-12-25 15:03:44,147", + "created": 1608905024.1475823, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 762.2430324554443, + "msecs": 147.5822925567627, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 7674.5500564575195, + "relativeCreated": 7666.924476623535, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.5021066665649414", + "0.5021231174468994", "" ], - "asctime": "2020-12-21 22:33:09,263", - "created": 1608586389.2638261, + "asctime": "2020-12-25 15:03:44,649", + "created": 1608905024.649211, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25472,17 +27855,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.5021066665649414 ()", + "message": "Result (Timeout for authentification): 0.5021231174468994 ()", "module": "test", - "msecs": 263.8261318206787, + "msecs": 649.2109298706055, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8176.133155822754, + "relativeCreated": 8168.553113937378, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -25491,8 +27874,8 @@ "0.5", "0.55" ], - "asctime": "2020-12-21 22:33:09,264", - "created": 1608586389.2641158, + "asctime": "2020-12-25 15:03:44,649", + "created": 1608905024.6494846, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25502,39 +27885,39 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.5 <= result <= 0.55", "module": "test", - "msecs": 264.1158103942871, + "msecs": 649.4846343994141, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8176.422834396362, + "relativeCreated": 8168.8268184661865, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 264.3282413482666, + "msecs": 649.6973037719727, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8176.635265350342, + "relativeCreated": 8169.039487838745, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0002124309539794922 + "time_consumption": 0.00021266937255859375 }, { "args": [ - "0.20095443725585938", + "0.20092320442199707", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-12-21 22:33:09,465", - "created": 1608586389.4659371, + "asctime": "2020-12-25 15:03:44,851", + "created": 1608905024.8512628, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25542,46 +27925,46 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.20095443725585938 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for send method is correct (Content 0.20092320442199707 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.2", "30", "0" ], - "asctime": "2020-12-21 22:33:09,465", - "created": 1608586389.4652781, + "asctime": "2020-12-25 15:03:44,850", + "created": 1608905024.8506086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 465.27814865112305, + "msecs": 850.6085872650146, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8377.585172653198, + "relativeCreated": 8369.950771331787, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.20095443725585938", + "0.20092320442199707", "" ], - "asctime": "2020-12-21 22:33:09,465", - "created": 1608586389.4655933, + "asctime": "2020-12-25 15:03:44,850", + "created": 1608905024.8509283, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25589,17 +27972,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.20095443725585938 ()", + "message": "Result (Timeout for send method): 0.20092320442199707 ()", "module": "test", - "msecs": 465.5933380126953, + "msecs": 850.9283065795898, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8377.90036201477, + "relativeCreated": 8370.270490646362, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -25608,8 +27991,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-12-21 22:33:09,465", - "created": 1608586389.465767, + "asctime": "2020-12-25 15:03:44,851", + "created": 1608905024.8511004, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25619,39 +28002,39 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 465.76690673828125, + "msecs": 851.1004447937012, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8378.073930740356, + "relativeCreated": 8370.442628860474, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 465.93713760375977, + "msecs": 851.2628078460693, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8378.244161605835, + "relativeCreated": 8370.604991912842, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00017023086547851562 + "time_consumption": 0.00016236305236816406 }, { "args": [ - "0.5017862319946289", + "0.5018301010131836", "0.5", "0.55", "" ], - "asctime": "2020-12-21 22:33:09,968", - "created": 1608586389.968352, + "asctime": "2020-12-25 15:03:45,353", + "created": 1608905025.3537567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25659,46 +28042,46 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.5017862319946289 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for send method is correct (Content 0.5018301010131836 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.5", "30", "0" ], - "asctime": "2020-12-21 22:33:09,967", - "created": 1608586389.9677086, + "asctime": "2020-12-25 15:03:45,353", + "created": 1608905025.3530598, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 967.7085876464844, + "msecs": 353.0597686767578, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8880.01561164856, + "relativeCreated": 8872.40195274353, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.5017862319946289", + "0.5018301010131836", "" ], - "asctime": "2020-12-21 22:33:09,968", - "created": 1608586389.9680188, + "asctime": "2020-12-25 15:03:45,353", + "created": 1608905025.3533783, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25706,17 +28089,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.5017862319946289 ()", + "message": "Result (Timeout for send method): 0.5018301010131836 ()", "module": "test", - "msecs": 968.0187702178955, + "msecs": 353.3782958984375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8880.32579421997, + "relativeCreated": 8872.72047996521, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -25725,8 +28108,8 @@ "0.5", "0.55" ], - "asctime": "2020-12-21 22:33:09,968", - "created": 1608586389.9681895, + "asctime": "2020-12-25 15:03:45,353", + "created": 1608905025.3535488, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25736,64 +28119,64 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.5 <= result <= 0.55", "module": "test", - "msecs": 968.1894779205322, + "msecs": 353.5487651824951, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8880.496501922607, + "relativeCreated": 8872.890949249268, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 968.3520793914795, + "msecs": 353.7566661834717, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 8880.659103393555, + "relativeCreated": 8873.098850250244, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016260147094726562 + "time_consumption": 0.0002079010009765625 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 1.4100189208984375, - "time_finished": "2020-12-21 22:33:09,968", - "time_start": "2020-12-21 22:33:08,558" + "time_consumption": 1.4102630615234375, + "time_finished": "2020-12-25 15:03:45,353", + "time_start": "2020-12-25 15:03:43,943" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.": { "args": null, - "asctime": "2020-12-21 22:33:05,415", - "created": 1608586385.4150748, + "asctime": "2020-12-25 15:03:40,803", + "created": 1608905020.8038766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 30, + "lineno": 31, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 415.07482528686523, + "msecs": 803.8766384124756, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4327.38184928894, + "relativeCreated": 4323.218822479248, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:05,918", - "created": 1608586385.9186897, + "asctime": "2020-12-25 15:03:41,307", + "created": 1608905021.3079083, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -25806,424 +28189,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,415", - "created": 1608586385.415369, + "asctime": "2020-12-25 15:03:40,804", + "created": 1608905020.804179, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 415.36903381347656, + "msecs": 804.1789531707764, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4327.676057815552, + "relativeCreated": 4323.521137237549, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,415", - "created": 1608586385.415672, + "asctime": "2020-12-25 15:03:40,804", + "created": 1608905020.8045616, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 415.67206382751465, + "msecs": 804.5616149902344, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4327.97908782959, + "relativeCreated": 4323.903799057007, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,415", - "created": 1608586385.4158628, + "asctime": "2020-12-25 15:03:40,804", + "created": 1608905020.804761, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 415.8627986907959, + "msecs": 804.7609329223633, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4328.169822692871, + "relativeCreated": 4324.103116989136, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,416", - "created": 1608586385.4161448, + "asctime": "2020-12-25 15:03:40,805", + "created": 1608905020.8050857, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 416.14484786987305, + "msecs": 805.0856590270996, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4328.451871871948, + "relativeCreated": 4324.427843093872, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:05,416", - "created": 1608586385.41635, + "asctime": "2020-12-25 15:03:40,805", + "created": 1608905020.8053133, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 416.3498878479004, + "msecs": 805.3133487701416, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4328.656911849976, + "relativeCreated": 4324.655532836914, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:05,416", - "created": 1608586385.4167783, + "asctime": "2020-12-25 15:03:40,805", + "created": 1608905020.8057525, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 416.7783260345459, + "msecs": 805.7525157928467, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4329.085350036621, + "relativeCreated": 4325.094699859619, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:05,567", - "created": 1608586385.567795, + "asctime": "2020-12-25 15:03:40,956", + "created": 1608905020.956802, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 567.7950382232666, + "msecs": 956.8018913269043, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4480.102062225342, + "relativeCreated": 4476.144075393677, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:05,568", - "created": 1608586385.5682182, + "asctime": "2020-12-25 15:03:40,957", + "created": 1608905020.9572127, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 568.2182312011719, + "msecs": 957.2126865386963, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4480.525255203247, + "relativeCreated": 4476.554870605469, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:05,568", - "created": 1608586385.568422, + "asctime": "2020-12-25 15:03:40,957", + "created": 1608905020.9574318, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 568.4220790863037, + "msecs": 957.4317932128906, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4480.729103088379, + "relativeCreated": 4476.773977279663, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-15" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:05,568", - "created": 1608586385.568629, + "asctime": "2020-12-25 15:03:40,957", + "created": 1608905020.9576192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 568.6290264129639, + "msecs": 957.6191902160645, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4480.936050415039, + "relativeCreated": 4476.961374282837, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-12-21 22:33:05,569", - "created": 1608586385.5690382, + "asctime": "2020-12-25 15:03:40,958", + "created": 1608905020.9580405, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 569.0381526947021, + "msecs": 958.0404758453369, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4481.345176696777, + "relativeCreated": 4477.382659912109, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-12-21 22:33:05,719", - "created": 1608586385.7199888, + "asctime": "2020-12-25 15:03:41,109", + "created": 1608905021.1090765, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 719.9888229370117, + "msecs": 109.07649993896484, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4632.295846939087, + "relativeCreated": 4628.418684005737, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-16" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:05,720", - "created": 1608586385.7204137, + "asctime": "2020-12-25 15:03:41,109", + "created": 1608905021.1095035, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 720.4136848449707, + "msecs": 109.50350761413574, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4632.720708847046, + "relativeCreated": 4628.845691680908, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-16" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:05,720", - "created": 1608586385.7206457, + "asctime": "2020-12-25 15:03:41,109", + "created": 1608905021.1097813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 720.6456661224365, + "msecs": 109.78126525878906, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4632.952690124512, + "relativeCreated": 4629.1234493255615, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-16" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,720", - "created": 1608586385.7209022, + "asctime": "2020-12-25 15:03:41,109", + "created": 1608905021.1099765, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 720.9022045135498, + "msecs": 109.97653007507324, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4633.209228515625, + "relativeCreated": 4629.318714141846, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-16" } ], - "msecs": 918.6897277832031, + "msecs": 307.908296585083, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for .", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4830.996751785278, + "relativeCreated": 4827.2504806518555, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19778752326965332 + "time_consumption": 0.19793176651000977 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:05,919", - "created": 1608586385.919553, + "asctime": "2020-12-25 15:03:41,308", + "created": 1608905021.308647, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26240,8 +28623,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:05,919", - "created": 1608586385.9191818, + "asctime": "2020-12-25 15:03:41,308", + "created": 1608905021.3083236, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26251,15 +28634,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 919.1818237304688, + "msecs": 308.32362174987793, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4831.488847732544, + "relativeCreated": 4827.66580581665, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26268,8 +28651,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:05,919", - "created": 1608586385.9193654, + "asctime": "2020-12-25 15:03:41,308", + "created": 1608905021.308495, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26279,37 +28662,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 919.365406036377, + "msecs": 308.49504470825195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4831.672430038452, + "relativeCreated": 4827.837228775024, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 919.5530414581299, + "msecs": 308.64691734313965, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4831.860065460205, + "relativeCreated": 4827.989101409912, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001876354217529297 + "time_consumption": 0.0001518726348876953 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:05,920", - "created": 1608586385.920113, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.3091574, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26326,8 +28709,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:05,919", - "created": 1608586385.9198022, + "asctime": "2020-12-25 15:03:41,308", + "created": 1608905021.3088777, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26337,15 +28720,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 919.802188873291, + "msecs": 308.87770652770996, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.109212875366, + "relativeCreated": 4828.219890594482, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26354,8 +28737,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:05,919", - "created": 1608586385.9199607, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.309021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26365,37 +28748,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 919.9607372283936, + "msecs": 309.02099609375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.267761230469, + "relativeCreated": 4828.3631801605225, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 920.1130867004395, + "msecs": 309.1573715209961, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.420110702515, + "relativeCreated": 4828.499555587769, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015234947204589844 + "time_consumption": 0.00013637542724609375 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:05,920", - "created": 1608586385.9206898, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.309739, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26412,8 +28795,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:05,920", - "created": 1608586385.920348, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.3093886, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26423,15 +28806,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 920.3479290008545, + "msecs": 309.3886375427246, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.65495300293, + "relativeCreated": 4828.730821609497, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26440,8 +28823,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:05,920", - "created": 1608586385.9204988, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.3095357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26451,37 +28834,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 920.4988479614258, + "msecs": 309.5357418060303, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.805871963501, + "relativeCreated": 4828.877925872803, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 920.6898212432861, + "msecs": 309.7391128540039, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4832.996845245361, + "relativeCreated": 4829.081296920776, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00019097328186035156 + "time_consumption": 0.0002033710479736328 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:05,921", - "created": 1608586385.9212704, + "asctime": "2020-12-25 15:03:41,310", + "created": 1608905021.3102763, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26498,8 +28881,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:05,920", - "created": 1608586385.92099, + "asctime": "2020-12-25 15:03:41,309", + "created": 1608905021.3099678, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26509,15 +28892,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 920.989990234375, + "msecs": 309.9677562713623, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4833.29701423645, + "relativeCreated": 4829.309940338135, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26526,8 +28909,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:05,921", - "created": 1608586385.9211338, + "asctime": "2020-12-25 15:03:41,310", + "created": 1608905021.310108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26537,37 +28920,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 921.1337566375732, + "msecs": 310.107946395874, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4833.440780639648, + "relativeCreated": 4829.4501304626465, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 921.2703704833984, + "msecs": 310.2762699127197, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4833.577394485474, + "relativeCreated": 4829.618453979492, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001366138458251953 + "time_consumption": 0.00016832351684570312 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:05,921", - "created": 1608586385.9218447, + "asctime": "2020-12-25 15:03:41,310", + "created": 1608905021.3108604, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26584,8 +28967,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:05,921", - "created": 1608586385.921503, + "asctime": "2020-12-25 15:03:41,310", + "created": 1608905021.3105223, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26595,15 +28978,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 921.5030670166016, + "msecs": 310.52231788635254, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4833.810091018677, + "relativeCreated": 4829.864501953125, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26612,8 +28995,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:05,921", - "created": 1608586385.9216557, + "asctime": "2020-12-25 15:03:41,310", + "created": 1608905021.3106706, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26623,37 +29006,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 921.6556549072266, + "msecs": 310.6706142425537, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4833.962678909302, + "relativeCreated": 4830.012798309326, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 921.8447208404541, + "msecs": 310.86039543151855, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4834.151744842529, + "relativeCreated": 4830.202579498291, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018906593322753906 + "time_consumption": 0.00018978118896484375 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:06,023", - "created": 1608586386.0230963, + "asctime": "2020-12-25 15:03:41,412", + "created": 1608905021.4120834, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26666,31 +29049,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:33:06,022", - "created": 1608586386.0224063, + "asctime": "2020-12-25 15:03:41,411", + "created": 1608905021.4114377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 22.406339645385742, + "msecs": 411.4377498626709, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4934.713363647461, + "relativeCreated": 4930.779933929443, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26699,8 +29082,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,022", - "created": 1608586386.0227187, + "asctime": "2020-12-25 15:03:41,411", + "created": 1608905021.411763, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26710,15 +29093,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 22.71866798400879, + "msecs": 411.76295280456543, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4935.025691986084, + "relativeCreated": 4931.105136871338, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26727,8 +29110,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,022", - "created": 1608586386.0229118, + "asctime": "2020-12-25 15:03:41,411", + "created": 1608905021.4119308, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26738,37 +29121,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 22.911787033081055, + "msecs": 411.93079948425293, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4935.218811035156, + "relativeCreated": 4931.272983551025, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 23.096323013305664, + "msecs": 412.08338737487793, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4935.403347015381, + "relativeCreated": 4931.42557144165, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018453598022460938 + "time_consumption": 0.000152587890625 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:06,124", - "created": 1608586386.1243176, + "asctime": "2020-12-25 15:03:41,512", + "created": 1608905021.5129132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26781,31 +29164,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:33:06,123", - "created": 1608586386.123685, + "asctime": "2020-12-25 15:03:41,512", + "created": 1608905021.5126245, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 123.68488311767578, + "msecs": 512.6245021820068, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5035.991907119751, + "relativeCreated": 5031.966686248779, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26814,8 +29197,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,123", - "created": 1608586386.1239984, + "asctime": "2020-12-25 15:03:41,512", + "created": 1608905021.5127718, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26825,15 +29208,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 123.99840354919434, + "msecs": 512.7718448638916, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5036.3054275512695, + "relativeCreated": 5032.114028930664, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -26842,8 +29225,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:06,124", - "created": 1608586386.1241646, + "asctime": "2020-12-25 15:03:41,512", + "created": 1608905021.5128505, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26853,64 +29236,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 124.16458129882812, + "msecs": 512.8505229949951, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5036.471605300903, + "relativeCreated": 5032.192707061768, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 124.31764602661133, + "msecs": 512.9132270812988, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5036.6246700286865, + "relativeCreated": 5032.255411148071, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 6.270408630371094e-05 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.7092428207397461, - "time_finished": "2020-12-21 22:33:06,124", - "time_start": "2020-12-21 22:33:05,415" + "time_consumption": 0.7090365886688232, + "time_finished": "2020-12-25 15:03:41,512", + "time_start": "2020-12-25 15:03:40,803" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.": { "args": null, - "asctime": "2020-12-21 22:33:03,995", - "created": 1608586383.9951317, + "asctime": "2020-12-25 15:03:39,384", + "created": 1608905019.384004, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 28, + "lineno": 29, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 995.1317310333252, + "msecs": 384.0041160583496, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2907.4387550354004, + "relativeCreated": 2903.346300125122, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:04,498", - "created": 1608586384.4985282, + "asctime": "2020-12-25 15:03:39,887", + "created": 1608905019.8879793, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -26923,424 +29306,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,995", - "created": 1608586383.9954324, + "asctime": "2020-12-25 15:03:39,384", + "created": 1608905019.3843071, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 995.4323768615723, + "msecs": 384.3071460723877, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2907.7394008636475, + "relativeCreated": 2903.64933013916, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,995", - "created": 1608586383.9957392, + "asctime": "2020-12-25 15:03:39,384", + "created": 1608905019.3847027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 995.739221572876, + "msecs": 384.7026824951172, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2908.046245574951, + "relativeCreated": 2904.0448665618896, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,995", - "created": 1608586383.9959285, + "asctime": "2020-12-25 15:03:39,384", + "created": 1608905019.3848898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 995.9285259246826, + "msecs": 384.8898410797119, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2908.235549926758, + "relativeCreated": 2904.2320251464844, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:03,996", - "created": 1608586383.9962037, + "asctime": "2020-12-25 15:03:39,385", + "created": 1608905019.3852127, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 996.2036609649658, + "msecs": 385.21265983581543, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2908.510684967041, + "relativeCreated": 2904.554843902588, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:03,996", - "created": 1608586383.9964077, + "asctime": "2020-12-25 15:03:39,385", + "created": 1608905019.3854177, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 996.4077472686768, + "msecs": 385.4176998138428, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2908.714771270752, + "relativeCreated": 2904.7598838806152, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:03,996", - "created": 1608586383.9968143, + "asctime": "2020-12-25 15:03:39,385", + "created": 1608905019.3858604, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 996.8142509460449, + "msecs": 385.8604431152344, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 2909.12127494812, + "relativeCreated": 2905.202627182007, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:04,147", - "created": 1608586384.1475015, + "asctime": "2020-12-25 15:03:39,536", + "created": 1608905019.5368843, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 147.50146865844727, + "msecs": 536.8843078613281, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3059.8084926605225, + "relativeCreated": 3056.2264919281006, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:04,147", - "created": 1608586384.147894, + "asctime": "2020-12-25 15:03:39,537", + "created": 1608905019.537297, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 147.89390563964844, + "msecs": 537.2970104217529, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3060.2009296417236, + "relativeCreated": 3056.6391944885254, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:04,148", - "created": 1608586384.148086, + "asctime": "2020-12-25 15:03:39,537", + "created": 1608905019.5375273, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 148.0860710144043, + "msecs": 537.527322769165, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3060.3930950164795, + "relativeCreated": 3056.8695068359375, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-11" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:04,148", - "created": 1608586384.1482327, + "asctime": "2020-12-25 15:03:39,537", + "created": 1608905019.5377526, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 148.23269844055176, + "msecs": 537.752628326416, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3060.539722442627, + "relativeCreated": 3057.0948123931885, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-12-21 22:33:04,148", - "created": 1608586384.148552, + "asctime": "2020-12-25 15:03:39,538", + "created": 1608905019.538198, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 148.55194091796875, + "msecs": 538.1979942321777, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3060.858964920044, + "relativeCreated": 3057.54017829895, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-12-21 22:33:04,299", - "created": 1608586384.2995336, + "asctime": "2020-12-25 15:03:39,689", + "created": 1608905019.6893992, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 299.5336055755615, + "msecs": 689.399242401123, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3211.8406295776367, + "relativeCreated": 3208.7414264678955, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-12" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:04,299", - "created": 1608586384.2999825, + "asctime": "2020-12-25 15:03:39,690", + "created": 1608905019.6900456, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 299.98254776000977, + "msecs": 690.0455951690674, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3212.289571762085, + "relativeCreated": 3209.38777923584, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-12" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:04,300", - "created": 1608586384.3002317, + "asctime": "2020-12-25 15:03:39,690", + "created": 1608905019.6902657, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 300.2316951751709, + "msecs": 690.2656555175781, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3212.538719177246, + "relativeCreated": 3209.6078395843506, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-12" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:04,300", - "created": 1608586384.3004196, + "asctime": "2020-12-25 15:03:39,690", + "created": 1608905019.690431, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 300.41956901550293, + "msecs": 690.4311180114746, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3212.726593017578, + "relativeCreated": 3209.773302078247, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-12" } ], - "msecs": 498.52824211120605, + "msecs": 887.97926902771, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id and data_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3410.8352661132812, + "relativeCreated": 3407.3214530944824, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19810867309570312 + "time_consumption": 0.19754815101623535 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:04,499", - "created": 1608586384.4993036, + "asctime": "2020-12-25 15:03:39,888", + "created": 1608905019.8887208, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27357,8 +29740,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:04,498", - "created": 1608586384.4989696, + "asctime": "2020-12-25 15:03:39,888", + "created": 1608905019.8883972, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27368,15 +29751,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 498.96955490112305, + "msecs": 888.397216796875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3411.2765789031982, + "relativeCreated": 3407.7394008636475, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27385,8 +29768,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:04,499", - "created": 1608586384.4991484, + "asctime": "2020-12-25 15:03:39,888", + "created": 1608905019.8885705, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27396,37 +29779,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 499.1483688354492, + "msecs": 888.5705471038818, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3411.4553928375244, + "relativeCreated": 3407.9127311706543, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 499.30357933044434, + "msecs": 888.7207508087158, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3411.6106033325195, + "relativeCreated": 3408.0629348754883, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001552104949951172 + "time_consumption": 0.00015020370483398438 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:04,499", - "created": 1608586384.49982, + "asctime": "2020-12-25 15:03:39,889", + "created": 1608905019.889228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27443,8 +29826,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:04,499", - "created": 1608586384.4995372, + "asctime": "2020-12-25 15:03:39,888", + "created": 1608905019.8889503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27454,15 +29837,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 499.53722953796387, + "msecs": 888.9503479003906, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3411.844253540039, + "relativeCreated": 3408.292531967163, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27471,8 +29854,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:04,499", - "created": 1608586384.4996812, + "asctime": "2020-12-25 15:03:39,889", + "created": 1608905019.889093, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27482,37 +29865,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 499.6812343597412, + "msecs": 889.0929222106934, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3411.9882583618164, + "relativeCreated": 3408.435106277466, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 499.8199939727783, + "msecs": 889.228105545044, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3412.1270179748535, + "relativeCreated": 3408.5702896118164, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00013875961303710938 + "time_consumption": 0.00013518333435058594 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:04,500", - "created": 1608586384.5004294, + "asctime": "2020-12-25 15:03:39,889", + "created": 1608905019.889871, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27529,8 +29912,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:04,500", - "created": 1608586384.5000806, + "asctime": "2020-12-25 15:03:39,889", + "created": 1608905019.8894558, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27540,15 +29923,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 500.0805854797363, + "msecs": 889.4557952880859, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3412.3876094818115, + "relativeCreated": 3408.7979793548584, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27557,8 +29940,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:04,500", - "created": 1608586384.5002356, + "asctime": "2020-12-25 15:03:39,889", + "created": 1608905019.8896706, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27568,37 +29951,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 500.23555755615234, + "msecs": 889.6706104278564, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3412.5425815582275, + "relativeCreated": 3409.012794494629, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 500.4293918609619, + "msecs": 889.8708820343018, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3412.736415863037, + "relativeCreated": 3409.213066101074, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001938343048095703 + "time_consumption": 0.0002002716064453125 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:04,501", - "created": 1608586384.5011675, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8903708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27615,8 +29998,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:04,500", - "created": 1608586384.5008569, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8901012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27626,15 +30009,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 500.856876373291, + "msecs": 890.1011943817139, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3413.163900375366, + "relativeCreated": 3409.4433784484863, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27643,8 +30026,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:04,501", - "created": 1608586384.5010262, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8902378, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27654,37 +30037,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 501.0261535644531, + "msecs": 890.2378082275391, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3413.3331775665283, + "relativeCreated": 3409.5799922943115, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 501.16753578186035, + "msecs": 890.3708457946777, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3413.4745597839355, + "relativeCreated": 3409.71302986145, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00014138221740722656 + "time_consumption": 0.00013303756713867188 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:04,501", - "created": 1608586384.501764, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8909357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27701,8 +30084,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:04,501", - "created": 1608586384.5014064, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8906007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27712,15 +30095,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 501.4064311981201, + "msecs": 890.6006813049316, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3413.7134552001953, + "relativeCreated": 3409.942865371704, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27729,8 +30112,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:04,501", - "created": 1608586384.5015607, + "asctime": "2020-12-25 15:03:39,890", + "created": 1608905019.8907478, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27740,37 +30123,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 501.5606880187988, + "msecs": 890.7477855682373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3413.867712020874, + "relativeCreated": 3410.0899696350098, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 501.76405906677246, + "msecs": 890.9356594085693, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3414.0710830688477, + "relativeCreated": 3410.277843475342, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0002033710479736328 + "time_consumption": 0.00018787384033203125 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:04,603", - "created": 1608586384.6032321, + "asctime": "2020-12-25 15:03:39,992", + "created": 1608905019.992123, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27783,31 +30166,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:33:04,602", - "created": 1608586384.6023703, + "asctime": "2020-12-25 15:03:39,991", + "created": 1608905019.9915195, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 602.3702621459961, + "msecs": 991.5194511413574, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3514.6772861480713, + "relativeCreated": 3510.86163520813, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27816,8 +30199,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:04,602", - "created": 1608586384.6028464, + "asctime": "2020-12-25 15:03:39,991", + "created": 1608905019.9918094, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27827,15 +30210,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 602.8463840484619, + "msecs": 991.8093681335449, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3515.153408050537, + "relativeCreated": 3511.1515522003174, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27844,8 +30227,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:04,603", - "created": 1608586384.6030533, + "asctime": "2020-12-25 15:03:39,991", + "created": 1608905019.9919734, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27855,37 +30238,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 603.0533313751221, + "msecs": 991.9734001159668, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3515.3603553771973, + "relativeCreated": 3511.3155841827393, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 603.2321453094482, + "msecs": 992.1228885650635, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3515.5391693115234, + "relativeCreated": 3511.465072631836, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00017881393432617188 + "time_consumption": 0.0001494884490966797 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:04,704", - "created": 1608586384.7044988, + "asctime": "2020-12-25 15:03:40,093", + "created": 1608905020.0933754, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27898,31 +30281,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:33:04,703", - "created": 1608586384.703822, + "asctime": "2020-12-25 15:03:40,092", + "created": 1608905020.0927427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 703.8218975067139, + "msecs": 92.7426815032959, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3616.128921508789, + "relativeCreated": 3612.0848655700684, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27931,8 +30314,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:04,704", - "created": 1608586384.704132, + "asctime": "2020-12-25 15:03:40,093", + "created": 1608905020.0930326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27942,15 +30325,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 704.132080078125, + "msecs": 93.0325984954834, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3616.4391040802, + "relativeCreated": 3612.374782562256, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -27959,8 +30342,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:04,704", - "created": 1608586384.7043417, + "asctime": "2020-12-25 15:03:40,093", + "created": 1608905020.0931993, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27970,64 +30353,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 704.3416500091553, + "msecs": 93.19925308227539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3616.6486740112305, + "relativeCreated": 3612.541437149048, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 704.4987678527832, + "msecs": 93.37544441223145, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3616.8057918548584, + "relativeCreated": 3612.717628479004, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001571178436279297 + "time_consumption": 0.0001761913299560547 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.709367036819458, - "time_finished": "2020-12-21 22:33:04,704", - "time_start": "2020-12-21 22:33:03,995" + "time_consumption": 0.7093713283538818, + "time_finished": "2020-12-25 15:03:40,093", + "time_start": "2020-12-25 15:03:39,384" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.": { "args": null, - "asctime": "2020-12-21 22:33:04,705", - "created": 1608586384.7050614, + "asctime": "2020-12-25 15:03:40,093", + "created": 1608905020.0939422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 29, + "lineno": 30, "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 705.0614356994629, + "msecs": 93.94216537475586, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3617.368459701538, + "relativeCreated": 3613.2843494415283, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:05,209", - "created": 1608586385.209028, + "asctime": "2020-12-25 15:03:40,597", + "created": 1608905020.5978782, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -28040,424 +30423,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:04,705", - "created": 1608586384.705363, + "asctime": "2020-12-25 15:03:40,094", + "created": 1608905020.0942454, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 705.3630352020264, + "msecs": 94.24543380737305, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3617.6700592041016, + "relativeCreated": 3613.5876178741455, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:04,705", - "created": 1608586384.7056727, + "asctime": "2020-12-25 15:03:40,094", + "created": 1608905020.0946245, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 705.6727409362793, + "msecs": 94.62451934814453, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3617.9797649383545, + "relativeCreated": 3613.966703414917, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:04,705", - "created": 1608586384.7058542, + "asctime": "2020-12-25 15:03:40,094", + "created": 1608905020.094813, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 705.8541774749756, + "msecs": 94.81310844421387, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3618.161201477051, + "relativeCreated": 3614.1552925109863, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:04,706", - "created": 1608586384.7061257, + "asctime": "2020-12-25 15:03:40,095", + "created": 1608905020.0951362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 706.1257362365723, + "msecs": 95.13616561889648, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3618.4327602386475, + "relativeCreated": 3614.478349685669, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 48879, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:04,706", - "created": 1608586384.7063382, + "asctime": "2020-12-25 15:03:40,095", + "created": 1608905020.095368, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 706.3381671905518, + "msecs": 95.3679084777832, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3618.645191192627, + "relativeCreated": 3614.7100925445557, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:04,706", - "created": 1608586384.70677, + "asctime": "2020-12-25 15:03:40,095", + "created": 1608905020.0958047, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 706.7699432373047, + "msecs": 95.80469131469727, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3619.07696723938, + "relativeCreated": 3615.1468753814697, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:04,858", - "created": 1608586384.858055, + "asctime": "2020-12-25 15:03:40,246", + "created": 1608905020.246848, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 858.0551147460938, + "msecs": 246.84810638427734, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3770.362138748169, + "relativeCreated": 3766.19029045105, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "48879", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:04,858", - "created": 1608586384.8585277, + "asctime": "2020-12-25 15:03:40,247", + "created": 1608905020.2472715, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 858.527660369873, + "msecs": 247.27153778076172, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3770.8346843719482, + "relativeCreated": 3766.613721847534, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:04,858", - "created": 1608586384.8587494, + "asctime": "2020-12-25 15:03:40,247", + "created": 1608905020.2474906, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 858.7493896484375, + "msecs": 247.49064445495605, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3771.0564136505127, + "relativeCreated": 3766.8328285217285, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-13" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 48879, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:04,858", - "created": 1608586384.8589337, + "asctime": "2020-12-25 15:03:40,247", + "created": 1608905020.2476773, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 858.933687210083, + "msecs": 247.67732620239258, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3771.240711212158, + "relativeCreated": 3767.019510269165, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-12-21 22:33:04,859", - "created": 1608586384.8593235, + "asctime": "2020-12-25 15:03:40,248", + "created": 1608905020.2480724, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 859.3235015869141, + "msecs": 248.07238578796387, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3771.6305255889893, + "relativeCreated": 3767.4145698547363, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-12-21 22:33:05,010", - "created": 1608586385.010317, + "asctime": "2020-12-25 15:03:40,399", + "created": 1608905020.3991008, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 10.317087173461914, + "msecs": 399.10078048706055, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3922.624111175537, + "relativeCreated": 3918.442964553833, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-14" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "48879", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:05,010", - "created": 1608586385.010739, + "asctime": "2020-12-25 15:03:40,399", + "created": 1608905020.399514, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 10.73908805847168, + "msecs": 399.51395988464355, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3923.046112060547, + "relativeCreated": 3918.856143951416, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-14" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:05,010", - "created": 1608586385.0109746, + "asctime": "2020-12-25 15:03:40,399", + "created": 1608905020.399754, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 10.974645614624023, + "msecs": 399.7540473937988, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3923.281669616699, + "relativeCreated": 3919.0962314605713, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-14" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:05,011", - "created": 1608586385.0111573, + "asctime": "2020-12-25 15:03:40,399", + "created": 1608905020.3999746, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 11.15727424621582, + "msecs": 399.9745845794678, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 3923.464298248291, + "relativeCreated": 3919.3167686462402, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-14" } ], - "msecs": 209.0280055999756, + "msecs": 597.8782176971436, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4121.335029602051, + "relativeCreated": 4117.220401763916, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19787073135375977 + "time_consumption": 0.19790363311767578 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:05,209", - "created": 1608586385.209863, + "asctime": "2020-12-25 15:03:40,598", + "created": 1608905020.598633, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28474,8 +30857,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:05,209", - "created": 1608586385.2094898, + "asctime": "2020-12-25 15:03:40,598", + "created": 1608905020.5983026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28485,15 +30868,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 209.4898223876953, + "msecs": 598.3026027679443, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4121.7968463897705, + "relativeCreated": 4117.644786834717, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28502,8 +30885,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:05,209", - "created": 1608586385.209697, + "asctime": "2020-12-25 15:03:40,598", + "created": 1608905020.5984788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28513,37 +30896,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 209.69700813293457, + "msecs": 598.4787940979004, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.00403213501, + "relativeCreated": 4117.820978164673, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 209.86294746398926, + "msecs": 598.6330509185791, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.169971466064, + "relativeCreated": 4117.975234985352, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 0.00015425682067871094 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.2103958, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.5991454, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28560,8 +30943,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.210099, + "asctime": "2020-12-25 15:03:40,598", + "created": 1608905020.5988643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28571,15 +30954,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 210.0989818572998, + "msecs": 598.8643169403076, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.406005859375, + "relativeCreated": 4118.20650100708, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28588,8 +30971,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.2102447, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.5990086, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28599,37 +30982,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 210.24465560913086, + "msecs": 599.0085601806641, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.551679611206, + "relativeCreated": 4118.3507442474365, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 210.39581298828125, + "msecs": 599.1454124450684, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.702836990356, + "relativeCreated": 4118.487596511841, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015115737915039062 + "time_consumption": 0.00013685226440429688 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.2109714, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.5997493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28646,8 +31029,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.2106342, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.599409, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28657,15 +31040,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 210.6342315673828, + "msecs": 599.4091033935547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4122.941255569458, + "relativeCreated": 4118.751287460327, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28674,8 +31057,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:05,210", - "created": 1608586385.2107842, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.5995686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28685,37 +31068,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 210.7841968536377, + "msecs": 599.5686054229736, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4123.091220855713, + "relativeCreated": 4118.910789489746, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 210.97135543823242, + "msecs": 599.7493267059326, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4123.278379440308, + "relativeCreated": 4119.091510772705, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018715858459472656 + "time_consumption": 0.00018072128295898438 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:05,211", - "created": 1608586385.2114906, + "asctime": "2020-12-25 15:03:40,600", + "created": 1608905020.600244, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28732,8 +31115,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:05,211", - "created": 1608586385.2112021, + "asctime": "2020-12-25 15:03:40,599", + "created": 1608905020.5999746, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28743,15 +31126,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 211.20214462280273, + "msecs": 599.9746322631836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4123.509168624878, + "relativeCreated": 4119.316816329956, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28760,8 +31143,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:05,211", - "created": 1608586385.211354, + "asctime": "2020-12-25 15:03:40,600", + "created": 1608905020.6001108, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28771,37 +31154,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 211.35401725769043, + "msecs": 600.1107692718506, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4123.661041259766, + "relativeCreated": 4119.452953338623, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 211.49063110351562, + "msecs": 600.2440452575684, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4123.797655105591, + "relativeCreated": 4119.586229324341, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001366138458251953 + "time_consumption": 0.00013327598571777344 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:05,212", - "created": 1608586385.2120965, + "asctime": "2020-12-25 15:03:40,600", + "created": 1608905020.6009324, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28818,8 +31201,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:05,211", - "created": 1608586385.211722, + "asctime": "2020-12-25 15:03:40,600", + "created": 1608905020.6004727, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28829,15 +31212,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 211.72189712524414, + "msecs": 600.4726886749268, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4124.028921127319, + "relativeCreated": 4119.814872741699, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28846,8 +31229,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:05,211", - "created": 1608586385.2118938, + "asctime": "2020-12-25 15:03:40,600", + "created": 1608905020.6006231, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28857,37 +31240,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 211.89379692077637, + "msecs": 600.6231307983398, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4124.200820922852, + "relativeCreated": 4119.965314865112, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 212.0964527130127, + "msecs": 600.9323596954346, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4124.403476715088, + "relativeCreated": 4120.274543762207, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00020265579223632812 + "time_consumption": 0.00030922889709472656 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:05,313", - "created": 1608586385.3133028, + "asctime": "2020-12-25 15:03:40,702", + "created": 1608905020.7021573, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28900,31 +31283,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "48879" ], - "asctime": "2020-12-21 22:33:05,312", - "created": 1608586385.3126025, + "asctime": "2020-12-25 15:03:40,701", + "created": 1608905020.701472, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 312.6025199890137, + "msecs": 701.4720439910889, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4224.909543991089, + "relativeCreated": 4220.814228057861, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28933,8 +31316,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:05,312", - "created": 1608586385.3129513, + "asctime": "2020-12-25 15:03:40,701", + "created": 1608905020.7018201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28944,15 +31327,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 312.95132637023926, + "msecs": 701.8201351165771, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4225.258350372314, + "relativeCreated": 4221.16231918335, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -28961,8 +31344,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:05,313", - "created": 1608586385.313143, + "asctime": "2020-12-25 15:03:40,701", + "created": 1608905020.701991, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28972,37 +31355,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 313.1430149078369, + "msecs": 701.991081237793, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4225.450038909912, + "relativeCreated": 4221.333265304565, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 313.30275535583496, + "msecs": 702.1572589874268, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4225.60977935791, + "relativeCreated": 4221.499443054199, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015974044799804688 + "time_consumption": 0.00016617774963378906 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:05,414", - "created": 1608586385.4145482, + "asctime": "2020-12-25 15:03:40,803", + "created": 1608905020.8033576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29015,31 +31398,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "48879" ], - "asctime": "2020-12-21 22:33:05,413", - "created": 1608586385.4138753, + "asctime": "2020-12-25 15:03:40,802", + "created": 1608905020.802748, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 413.8753414154053, + "msecs": 802.7479648590088, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4326.1823654174805, + "relativeCreated": 4322.090148925781, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -29048,8 +31431,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:05,414", - "created": 1608586385.4142218, + "asctime": "2020-12-25 15:03:40,803", + "created": 1608905020.8030407, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29059,15 +31442,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 414.22176361083984, + "msecs": 803.0407428741455, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4326.528787612915, + "relativeCreated": 4322.382926940918, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -29076,8 +31459,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:05,414", - "created": 1608586385.414392, + "asctime": "2020-12-25 15:03:40,803", + "created": 1608905020.8032072, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29087,64 +31470,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 414.39199447631836, + "msecs": 803.2071590423584, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4326.699018478394, + "relativeCreated": 4322.549343109131, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 414.5481586456299, + "msecs": 803.3576011657715, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 4326.855182647705, + "relativeCreated": 4322.699785232544, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015616416931152344 + "time_consumption": 0.00015044212341308594 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.709486722946167, - "time_finished": "2020-12-21 22:33:05,414", - "time_start": "2020-12-21 22:33:04,705" + "time_consumption": 0.7094154357910156, + "time_finished": "2020-12-25 15:03:40,803", + "time_start": "2020-12-25 15:03:40,093" }, "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).": { "args": null, - "asctime": "2020-12-21 22:33:06,835", - "created": 1608586386.8350804, + "asctime": "2020-12-25 15:03:42,224", + "created": 1608905022.224045, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 32, + "lineno": 33, "message": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "module": "__init__", "moduleLogger": [], - "msecs": 835.0803852081299, + "msecs": 224.0450382232666, "msg": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5747.387409210205, + "relativeCreated": 5743.387222290039, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:07,841", - "created": 1608586387.8413422, + "asctime": "2020-12-25 15:03:43,230", + "created": 1608905023.2304735, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -29157,720 +31540,720 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,835", - "created": 1608586386.8353722, + "asctime": "2020-12-25 15:03:42,224", + "created": 1608905022.2243533, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 835.3722095489502, + "msecs": 224.35331344604492, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5747.679233551025, + "relativeCreated": 5743.695497512817, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,835", - "created": 1608586386.835683, + "asctime": "2020-12-25 15:03:42,224", + "created": 1608905022.2247353, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 835.6831073760986, + "msecs": 224.73526000976562, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5747.990131378174, + "relativeCreated": 5744.077444076538, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,835", - "created": 1608586386.8359346, + "asctime": "2020-12-25 15:03:42,224", + "created": 1608905022.224917, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 835.9346389770508, + "msecs": 224.91693496704102, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5748.241662979126, + "relativeCreated": 5744.2591190338135, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:06,836", - "created": 1608586386.8362856, + "asctime": "2020-12-25 15:03:42,225", + "created": 1608905022.2252398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 836.2855911254883, + "msecs": 225.23975372314453, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5748.5926151275635, + "relativeCreated": 5744.581937789917, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:06,836", - "created": 1608586386.8365014, + "asctime": "2020-12-25 15:03:42,225", + "created": 1608905022.225453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 836.5013599395752, + "msecs": 225.45289993286133, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5748.80838394165, + "relativeCreated": 5744.795083999634, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:06,836", - "created": 1608586386.8369067, + "asctime": "2020-12-25 15:03:42,225", + "created": 1608905022.2258315, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 836.9066715240479, + "msecs": 225.8315086364746, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5749.213695526123, + "relativeCreated": 5745.173692703247, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:06,987", - "created": 1608586386.987849, + "asctime": "2020-12-25 15:03:42,376", + "created": 1608905022.3766632, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 987.8489971160889, + "msecs": 376.6632080078125, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5900.156021118164, + "relativeCreated": 5896.005392074585, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:06,988", - "created": 1608586386.9883378, + "asctime": "2020-12-25 15:03:42,377", + "created": 1608905022.3771987, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 988.3377552032471, + "msecs": 377.1986961364746, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5900.644779205322, + "relativeCreated": 5896.540880203247, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:06,988", - "created": 1608586386.9885995, + "asctime": "2020-12-25 15:03:42,377", + "created": 1608905022.3774104, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 988.5995388031006, + "msecs": 377.4104118347168, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5900.906562805176, + "relativeCreated": 5896.752595901489, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-19" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:06,988", - "created": 1608586386.9888463, + "asctime": "2020-12-25 15:03:42,377", + "created": 1608905022.3775952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 988.8463020324707, + "msecs": 377.5951862335205, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5901.153326034546, + "relativeCreated": 5896.937370300293, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-12-21 22:33:06,989", - "created": 1608586386.9891772, + "asctime": "2020-12-25 15:03:42,377", + "created": 1608905022.3779705, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 989.1772270202637, + "msecs": 377.97045707702637, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 5901.484251022339, + "relativeCreated": 5897.312641143799, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-12-21 22:33:07,140", - "created": 1608586387.140101, + "asctime": "2020-12-25 15:03:42,528", + "created": 1608905022.528918, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 140.10095596313477, + "msecs": 528.9180278778076, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6052.40797996521, + "relativeCreated": 6048.26021194458, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:07,140", - "created": 1608586387.140585, + "asctime": "2020-12-25 15:03:42,529", + "created": 1608905022.5294077, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 140.58494567871094, + "msecs": 529.4077396392822, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6052.891969680786, + "relativeCreated": 6048.749923706055, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:07,140", - "created": 1608586387.1408508, + "asctime": "2020-12-25 15:03:42,529", + "created": 1608905022.5296757, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 140.85078239440918, + "msecs": 529.6757221221924, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6053.157806396484, + "relativeCreated": 6049.017906188965, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-20" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:07,141", - "created": 1608586387.1410503, + "asctime": "2020-12-25 15:03:42,529", + "created": 1608905022.5298686, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 141.0503387451172, + "msecs": 529.8686027526855, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6053.357362747192, + "relativeCreated": 6049.210786819458, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-20" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:07,338", - "created": 1608586387.338942, + "asctime": "2020-12-25 15:03:42,727", + "created": 1608905022.727843, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 338.9420509338379, + "msecs": 727.8430461883545, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6251.249074935913, + "relativeCreated": 6247.185230255127, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:07,339", - "created": 1608586387.3394125, + "asctime": "2020-12-25 15:03:42,728", + "created": 1608905022.728376, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 339.4124507904053, + "msecs": 728.3759117126465, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6251.7194747924805, + "relativeCreated": 6247.718095779419, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:07,490", - "created": 1608586387.4903026, + "asctime": "2020-12-25 15:03:42,879", + "created": 1608905022.8793316, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 490.30256271362305, + "msecs": 879.3315887451172, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6402.609586715698, + "relativeCreated": 6398.67377281189, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:07,490", - "created": 1608586387.490803, + "asctime": "2020-12-25 15:03:42,879", + "created": 1608905022.8798573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 490.8030033111572, + "msecs": 879.8573017120361, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6403.110027313232, + "relativeCreated": 6399.199485778809, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:07,491", - "created": 1608586387.4910064, + "asctime": "2020-12-25 15:03:42,880", + "created": 1608905022.8800766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 491.00637435913086, + "msecs": 880.0766468048096, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6403.313398361206, + "relativeCreated": 6399.418830871582, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-21" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:07,491", - "created": 1608586387.491178, + "asctime": "2020-12-25 15:03:42,880", + "created": 1608905022.8802614, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 491.178035736084, + "msecs": 880.2614212036133, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6403.485059738159, + "relativeCreated": 6399.603605270386, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-12-21 22:33:07,491", - "created": 1608586387.4915006, + "asctime": "2020-12-25 15:03:42,880", + "created": 1608905022.8806012, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 491.5006160736084, + "msecs": 880.601167678833, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6403.807640075684, + "relativeCreated": 6399.9433517456055, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-12-21 22:33:07,642", - "created": 1608586387.6424353, + "asctime": "2020-12-25 15:03:43,031", + "created": 1608905023.0315185, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 642.4353122711182, + "msecs": 31.51845932006836, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6554.742336273193, + "relativeCreated": 6550.860643386841, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-22" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:07,642", - "created": 1608586387.6429322, + "asctime": "2020-12-25 15:03:43,032", + "created": 1608905023.032029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 642.9321765899658, + "msecs": 32.028913497924805, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6555.239200592041, + "relativeCreated": 6551.371097564697, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-22" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:07,643", - "created": 1608586387.6431634, + "asctime": "2020-12-25 15:03:43,032", + "created": 1608905023.032279, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 643.1634426116943, + "msecs": 32.279014587402344, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6555.4704666137695, + "relativeCreated": 6551.621198654175, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-22" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:07,643", - "created": 1608586387.64334, + "asctime": "2020-12-25 15:03:43,032", + "created": 1608905023.0324636, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 643.3401107788086, + "msecs": 32.46355056762695, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6555.647134780884, + "relativeCreated": 6551.805734634399, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-22" } ], - "msecs": 841.3422107696533, + "msecs": 230.47351837158203, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6753.6492347717285, + "relativeCreated": 6749.8157024383545, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19800209999084473 + "time_consumption": 0.19800996780395508 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:07,842", - "created": 1608586387.8422494, + "asctime": "2020-12-25 15:03:43,231", + "created": 1608905023.231242, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29887,8 +32270,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:07,841", - "created": 1608586387.8418272, + "asctime": "2020-12-25 15:03:43,230", + "created": 1608905023.2309165, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29898,15 +32281,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 841.8271541595459, + "msecs": 230.91650009155273, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6754.134178161621, + "relativeCreated": 6750.258684158325, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -29915,8 +32298,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:07,842", - "created": 1608586387.8420177, + "asctime": "2020-12-25 15:03:43,231", + "created": 1608905023.2310908, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29926,37 +32309,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 842.017650604248, + "msecs": 231.09078407287598, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6754.324674606323, + "relativeCreated": 6750.432968139648, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 842.2493934631348, + "msecs": 231.24194145202637, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6754.55641746521, + "relativeCreated": 6750.584125518799, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00023174285888671875 + "time_consumption": 0.00015115737915039062 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:07,842", - "created": 1608586387.8427804, + "asctime": "2020-12-25 15:03:43,231", + "created": 1608905023.2317736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29973,8 +32356,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:07,842", - "created": 1608586387.8425052, + "asctime": "2020-12-25 15:03:43,231", + "created": 1608905023.2314942, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29984,15 +32367,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 842.5052165985107, + "msecs": 231.49418830871582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6754.812240600586, + "relativeCreated": 6750.836372375488, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30001,8 +32384,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:07,842", - "created": 1608586387.8426468, + "asctime": "2020-12-25 15:03:43,231", + "created": 1608905023.23164, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30012,27 +32395,27 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 842.6468372344971, + "msecs": 231.64010047912598, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6754.953861236572, + "relativeCreated": 6750.982284545898, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 842.780351638794, + "msecs": 231.77361488342285, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.087375640869, + "relativeCreated": 6751.115798950195, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", "time_consumption": 0.000133514404296875 }, @@ -30041,8 +32424,8 @@ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8433201, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.232337, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30059,8 +32442,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8430083, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.232005, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30070,15 +32453,15 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 843.008279800415, + "msecs": 232.00488090515137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.31530380249, + "relativeCreated": 6751.347064971924, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30087,8 +32470,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8431525, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.232154, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30098,37 +32481,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 843.1525230407715, + "msecs": 232.15389251708984, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.459547042847, + "relativeCreated": 6751.496076583862, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 843.3201313018799, + "msecs": 232.33699798583984, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.627155303955, + "relativeCreated": 6751.679182052612, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016760826110839844 + "time_consumption": 0.00018310546875 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8438168, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.2328312, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30145,8 +32528,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8435407, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.2325597, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30156,15 +32539,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 843.5406684875488, + "msecs": 232.5596809387207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.847692489624, + "relativeCreated": 6751.901865005493, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30173,8 +32556,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:07,843", - "created": 1608586387.8436744, + "asctime": "2020-12-25 15:03:43,232", + "created": 1608905023.2326987, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30184,37 +32567,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 843.6744213104248, + "msecs": 232.6986789703369, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6755.9814453125, + "relativeCreated": 6752.040863037109, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 843.8167572021484, + "msecs": 232.83123970031738, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6756.123781204224, + "relativeCreated": 6752.17342376709, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0001423358917236328 + "time_consumption": 0.00013256072998046875 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:07,844", - "created": 1608586387.8445113, + "asctime": "2020-12-25 15:03:43,233", + "created": 1608905023.2334123, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30231,8 +32614,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:07,844", - "created": 1608586387.844117, + "asctime": "2020-12-25 15:03:43,233", + "created": 1608905023.2330728, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30242,15 +32625,15 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 844.1169261932373, + "msecs": 233.07275772094727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6756.4239501953125, + "relativeCreated": 6752.41494178772, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30259,8 +32642,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:07,844", - "created": 1608586387.8442957, + "asctime": "2020-12-25 15:03:43,233", + "created": 1608905023.2332237, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30270,37 +32653,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 844.2957401275635, + "msecs": 233.22367668151855, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6756.602764129639, + "relativeCreated": 6752.565860748291, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 844.5112705230713, + "msecs": 233.4122657775879, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6756.8182945251465, + "relativeCreated": 6752.75444984436, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0002155303955078125 + "time_consumption": 0.00018858909606933594 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:07,945", - "created": 1608586387.945751, + "asctime": "2020-12-25 15:03:43,334", + "created": 1608905023.3347974, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30313,31 +32696,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:07,945", - "created": 1608586387.9450886, + "asctime": "2020-12-25 15:03:43,334", + "created": 1608905023.3341188, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 945.0886249542236, + "msecs": 334.1188430786133, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6857.395648956299, + "relativeCreated": 6853.461027145386, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30346,8 +32729,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:07,945", - "created": 1608586387.9453967, + "asctime": "2020-12-25 15:03:43,334", + "created": 1608905023.3344731, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30357,15 +32740,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 945.3966617584229, + "msecs": 334.4731330871582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6857.703685760498, + "relativeCreated": 6853.815317153931, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30374,8 +32757,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:07,945", - "created": 1608586387.9455678, + "asctime": "2020-12-25 15:03:43,334", + "created": 1608905023.3346417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30385,37 +32768,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 945.5678462982178, + "msecs": 334.641695022583, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6857.874870300293, + "relativeCreated": 6853.9838790893555, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 945.7509517669678, + "msecs": 334.7973823547363, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6858.057975769043, + "relativeCreated": 6854.139566421509, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.0001556873321533203 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:08,047", - "created": 1608586388.047022, + "asctime": "2020-12-25 15:03:43,435", + "created": 1608905023.435983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30428,31 +32811,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:08,046", - "created": 1608586388.0463855, + "asctime": "2020-12-25 15:03:43,435", + "created": 1608905023.4353583, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 46.38552665710449, + "msecs": 435.35828590393066, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6958.69255065918, + "relativeCreated": 6954.700469970703, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30461,8 +32844,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,046", - "created": 1608586388.0466983, + "asctime": "2020-12-25 15:03:43,435", + "created": 1608905023.4356687, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30472,15 +32855,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 46.69833183288574, + "msecs": 435.6687068939209, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6959.005355834961, + "relativeCreated": 6955.010890960693, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -30489,8 +32872,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:08,046", - "created": 1608586388.046869, + "asctime": "2020-12-25 15:03:43,435", + "created": 1608905023.4358325, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30500,64 +32883,64 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 46.86903953552246, + "msecs": 435.8325004577637, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6959.176063537598, + "relativeCreated": 6955.174684524536, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 47.022104263305664, + "msecs": 435.98294258117676, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 6959.329128265381, + "relativeCreated": 6955.325126647949, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.00015044212341308594 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 1.2119417190551758, - "time_finished": "2020-12-21 22:33:08,047", - "time_start": "2020-12-21 22:33:06,835" + "time_consumption": 1.2119379043579102, + "time_finished": "2020-12-25 15:03:43,435", + "time_start": "2020-12-25 15:03:42,224" }, "socket_protocol.struct_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.1620035, + "asctime": "2020-12-25 15:03:36,551", + "created": 1608905016.5513663, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 25, + "lineno": 26, "message": "socket_protocol.struct_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 162.0035171508789, + "msecs": 551.3663291931152, "msg": "socket_protocol.struct_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.3105411529541, + "relativeCreated": 70.7085132598877, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-12-21 22:33:01,664", - "created": 1608586381.664424, + "asctime": "2020-12-25 15:03:37,053", + "created": 1608905017.0539865, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -30570,424 +32953,424 @@ "moduleLogger": [ { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.1622646, + "asctime": "2020-12-25 15:03:36,551", + "created": 1608905016.5516074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 162.26458549499512, + "msecs": 551.6073703765869, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.57160949707031, + "relativeCreated": 70.94955444335938, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.1624362, + "asctime": "2020-12-25 15:03:36,551", + "created": 1608905016.551787, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 162.43624687194824, + "msecs": 551.7868995666504, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.74327087402344, + "relativeCreated": 71.12908363342285, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.162509, + "asctime": "2020-12-25 15:03:36,551", + "created": 1608905016.551872, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 313, - "message": "SJP: Cleaning up receive-buffer", + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", "module": "__init__", - "msecs": 162.50896453857422, + "msecs": 551.8720149993896, "msg": "%s Cleaning up receive-buffer", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.81598854064941, + "relativeCreated": 71.21419906616211, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.162591, + "asctime": "2020-12-25 15:03:36,551", + "created": 1608905016.5519657, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 217, - "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 162.59098052978516, + "msecs": 551.9657135009766, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.89800453186035, + "relativeCreated": 71.30789756774902, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [ - "SJP:", + "socket_protocol (server):", 0, 10, 45054, "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.1626556, + "asctime": "2020-12-25 15:03:36,552", + "created": 1608905016.5520277, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 162.65559196472168, + "msecs": 552.027702331543, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 74.96261596679688, + "relativeCreated": 71.36988639831543, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:01,162", - "created": 1608586381.1627662, + "asctime": "2020-12-25 15:03:36,552", + "created": 1608905016.5521472, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 162.7662181854248, + "msecs": 552.1471500396729, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 75.0732421875, + "relativeCreated": 71.48933410644531, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-12-21 22:33:01,313", - "created": 1608586381.3133764, + "asctime": "2020-12-25 15:03:36,702", + "created": 1608905016.7027488, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 313.37642669677734, + "msecs": 702.7487754821777, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 225.68345069885254, + "relativeCreated": 222.0909595489502, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-1" }, { "args": [ - "SJP:", + "socket_protocol (server):", "0", "10", "45054", "{'test': 'test'}" ], - "asctime": "2020-12-21 22:33:01,313", - "created": 1608586381.313918, + "asctime": "2020-12-25 15:03:36,703", + "created": 1608905016.7036974, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 313.9181137084961, + "msecs": 703.6974430084229, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 226.2251377105713, + "relativeCreated": 223.0396270751953, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-1" }, { "args": [ - "SJP:", + "socket_protocol (server):", "response_data_method" ], - "asctime": "2020-12-21 22:33:01,314", - "created": 1608586381.3141367, + "asctime": "2020-12-25 15:03:36,703", + "created": 1608905016.7039325, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 282, - "message": "SJP: Executing callback response_data_method to process received data", + "lineno": 313, + "message": "socket_protocol (server): Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 314.1367435455322, + "msecs": 703.932523727417, "msg": "%s Executing callback %s to process received data", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 226.44376754760742, + "relativeCreated": 223.27470779418945, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-1" }, { "args": [ - "SJP:", + "socket_protocol (server):", 5, 11, 45054, "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:01,314", - "created": 1608586381.3143222, + "asctime": "2020-12-25 15:03:36,704", + "created": 1608905016.704124, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 352, - "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 314.32223320007324, + "msecs": 704.1239738464355, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 226.62925720214844, + "relativeCreated": 223.466157913208, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-12-21 22:33:01,314", - "created": 1608586381.3146658, + "asctime": "2020-12-25 15:03:36,704", + "created": 1608905016.7044866, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "send", "levelname": "DEBUG", "levelno": 10, - "lineno": 55, + "lineno": 60, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 314.6657943725586, + "msecs": 704.486608505249, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 226.9728183746338, + "relativeCreated": 223.82879257202148, "stack_info": null, - "thread": 139622161319680, + "thread": 140326935348992, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-12-21 22:33:01,465", - "created": 1608586381.4656246, + "asctime": "2020-12-25 15:03:36,855", + "created": 1608905016.855525, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", "funcName": "receive", "levelname": "DEBUG", "levelno": 10, - "lineno": 66, + "lineno": 71, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 465.6245708465576, + "msecs": 855.525016784668, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 377.9315948486328, + "relativeCreated": 374.86720085144043, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-2" }, { "args": [ - "SJP:", + "socket_protocol (server):", "5", "11", "45054", "[1, 3, 's']" ], - "asctime": "2020-12-21 22:33:01,466", - "created": 1608586381.4661188, + "asctime": "2020-12-25 15:03:36,856", + "created": 1608905016.8560352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 259, - "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 466.11881256103516, + "msecs": 856.0352325439453, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 378.42583656311035, + "relativeCreated": 375.3774166107178, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-2" }, { "args": [ - "SJP:", + "socket_protocol (server):", "Operation not permitted" ], - "asctime": "2020-12-21 22:33:01,466", - "created": 1608586381.4663703, + "asctime": "2020-12-25 15:03:36,856", + "created": 1608905016.8562922, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 292, - "message": "SJP: Received message has a peculiar status: Operation not permitted", + "lineno": 323, + "message": "socket_protocol (server): Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 466.3703441619873, + "msecs": 856.2922477722168, "msg": "%s Received message has a peculiar status: %s", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 378.6773681640625, + "relativeCreated": 375.63443183898926, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-2" }, { "args": [ - "SJP:" + "socket_protocol (server):" ], - "asctime": "2020-12-21 22:33:01,466", - "created": 1608586381.4665573, + "asctime": "2020-12-25 15:03:36,856", + "created": 1608905016.8565, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 310, - "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", + "lineno": 341, + "message": "socket_protocol (server): Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 466.55726432800293, + "msecs": 856.4999103546143, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 378.8642883300781, + "relativeCreated": 375.8420944213867, "stack_info": null, - "thread": 139622152926976, + "thread": 140326926956288, "threadName": "Thread-2" } ], - "msecs": 664.423942565918, + "msecs": 53.986549377441406, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 576.7309665679932, + "relativeCreated": 573.3287334442139, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.19786667823791504 + "time_consumption": 0.19748663902282715 }, { "args": [ "True", "" ], - "asctime": "2020-12-21 22:33:01,665", - "created": 1608586381.665286, + "asctime": "2020-12-25 15:03:37,054", + "created": 1608905017.0547757, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31004,8 +33387,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:01,664", - "created": 1608586381.6649191, + "asctime": "2020-12-25 15:03:37,054", + "created": 1608905017.054406, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31015,15 +33398,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 664.9191379547119, + "msecs": 54.405927658081055, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 577.2261619567871, + "relativeCreated": 573.7481117248535, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31032,8 +33415,8 @@ "True", "" ], - "asctime": "2020-12-21 22:33:01,665", - "created": 1608586381.6651008, + "asctime": "2020-12-25 15:03:37,054", + "created": 1608905017.0545805, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31043,37 +33426,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 665.1008129119873, + "msecs": 54.5804500579834, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 577.4078369140625, + "relativeCreated": 573.9226341247559, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 665.2860641479492, + "msecs": 54.77571487426758, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 577.5930881500244, + "relativeCreated": 574.11789894104, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00018525123596191406 + "time_consumption": 0.0001952648162841797 }, { "args": [ "0", "" ], - "asctime": "2020-12-21 22:33:01,665", - "created": 1608586381.665847, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.0552995, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31090,8 +33473,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:01,665", - "created": 1608586381.6655302, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.05502, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31101,15 +33484,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 665.5302047729492, + "msecs": 55.02009391784668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 577.8372287750244, + "relativeCreated": 574.3622779846191, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31118,8 +33501,8 @@ "0", "" ], - "asctime": "2020-12-21 22:33:01,665", - "created": 1608586381.6657012, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.0551634, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31129,37 +33512,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 665.701150894165, + "msecs": 55.16338348388672, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 578.0081748962402, + "relativeCreated": 574.5055675506592, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 665.8470630645752, + "msecs": 55.29952049255371, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 578.1540870666504, + "relativeCreated": 574.6417045593262, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00014591217041015625 + "time_consumption": 0.0001361370086669922 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-12-21 22:33:01,666", - "created": 1608586381.6667407, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.0558808, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31176,8 +33559,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:01,666", - "created": 1608586381.6661901, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.0555465, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31187,15 +33570,15 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 666.1901473999023, + "msecs": 55.54652214050293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 578.4971714019775, + "relativeCreated": 574.8887062072754, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31204,8 +33587,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-12-21 22:33:01,666", - "created": 1608586381.6664546, + "asctime": "2020-12-25 15:03:37,055", + "created": 1608905017.0556965, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31215,37 +33598,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 666.454553604126, + "msecs": 55.69648742675781, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 578.7615776062012, + "relativeCreated": 575.0386714935303, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 666.7406558990479, + "msecs": 55.88078498840332, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 579.047679901123, + "relativeCreated": 575.2229690551758, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.000286102294921875 + "time_consumption": 0.0001842975616455078 }, { "args": [ "5", "" ], - "asctime": "2020-12-21 22:33:01,667", - "created": 1608586381.6676555, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.05639, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31262,8 +33645,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:01,667", - "created": 1608586381.6671185, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.056118, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31273,15 +33656,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 667.1185493469238, + "msecs": 56.118011474609375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 579.425573348999, + "relativeCreated": 575.4601955413818, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31290,8 +33673,8 @@ "5", "" ], - "asctime": "2020-12-21 22:33:01,667", - "created": 1608586381.6673827, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.0562572, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31301,37 +33684,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 667.3827171325684, + "msecs": 56.25724792480469, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 579.6897411346436, + "relativeCreated": 575.5994319915771, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 667.6554679870605, + "msecs": 56.39004707336426, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 579.9624919891357, + "relativeCreated": 575.7322311401367, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.0002727508544921875 + "time_consumption": 0.0001327991485595703 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-12-21 22:33:01,668", - "created": 1608586381.6685386, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.0569572, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31348,8 +33731,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:01,668", - "created": 1608586381.6681294, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.0566201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31359,15 +33742,15 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 668.1294441223145, + "msecs": 56.620121002197266, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 580.4364681243896, + "relativeCreated": 575.9623050689697, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31376,8 +33759,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-12-21 22:33:01,668", - "created": 1608586381.6683183, + "asctime": "2020-12-25 15:03:37,056", + "created": 1608905017.0567684, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31387,37 +33770,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 668.3182716369629, + "msecs": 56.76841735839844, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 580.6252956390381, + "relativeCreated": 576.1106014251709, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 668.5385704040527, + "msecs": 56.957244873046875, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 580.8455944061279, + "relativeCreated": 576.2994289398193, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00022029876708984375 + "time_consumption": 0.0001888275146484375 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:01,769", - "created": 1608586381.7697103, + "asctime": "2020-12-25 15:03:37,158", + "created": 1608905017.1582003, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31430,31 +33813,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "11", "45054" ], - "asctime": "2020-12-21 22:33:01,769", - "created": 1608586381.769048, + "asctime": "2020-12-25 15:03:37,157", + "created": 1608905017.1575322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 769.0479755401611, + "msecs": 157.5322151184082, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 681.3549995422363, + "relativeCreated": 676.8743991851807, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31463,8 +33846,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:01,769", - "created": 1608586381.769358, + "asctime": "2020-12-25 15:03:37,157", + "created": 1608905017.1578665, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31474,15 +33857,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 769.3579196929932, + "msecs": 157.8664779663086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 681.6649436950684, + "relativeCreated": 677.208662033081, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31491,8 +33874,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:01,769", - "created": 1608586381.7695498, + "asctime": "2020-12-25 15:03:37,158", + "created": 1608905017.1580358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31502,37 +33885,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 769.5498466491699, + "msecs": 158.0357551574707, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 681.8568706512451, + "relativeCreated": 677.3779392242432, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 769.7103023529053, + "msecs": 158.20026397705078, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 682.0173263549805, + "relativeCreated": 677.5424480438232, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.00016045570373535156 + "time_consumption": 0.00016450881958007812 }, { "args": [ "None", "" ], - "asctime": "2020-12-21 22:33:01,870", - "created": 1608586381.8706522, + "asctime": "2020-12-25 15:03:37,259", + "created": 1608905017.2594512, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31545,31 +33928,31 @@ "moduleLogger": [ { "args": [ - "SJP:", + "socket_protocol (server):", "0.1", "10", "45054" ], - "asctime": "2020-12-21 22:33:01,870", - "created": 1608586381.8702755, + "asctime": "2020-12-25 15:03:37,258", + "created": 1608905017.2588453, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 327, - "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", + "lineno": 358, + "message": "socket_protocol (server): TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 870.2754974365234, + "msecs": 258.84532928466797, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 782.5825214385986, + "relativeCreated": 778.1875133514404, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31578,8 +33961,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:01,870", - "created": 1608586381.8704743, + "asctime": "2020-12-25 15:03:37,259", + "created": 1608905017.2591386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31589,15 +33972,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 870.4743385314941, + "msecs": 259.1385841369629, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 782.7813625335693, + "relativeCreated": 778.4807682037354, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" }, { @@ -31606,8 +33989,8 @@ "None", "" ], - "asctime": "2020-12-21 22:33:01,870", - "created": 1608586381.8705745, + "asctime": "2020-12-25 15:03:37,259", + "created": 1608905017.2593007, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31617,40 +34000,2858 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 870.5744743347168, + "msecs": 259.30070877075195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 782.881498336792, + "relativeCreated": 778.6428928375244, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread" } ], - "msecs": 870.6521987915039, + "msecs": 259.45115089416504, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 115467, + "process": 219865, "processName": "MainProcess", - "relativeCreated": 782.9592227935791, + "relativeCreated": 778.7933349609375, "stack_info": null, - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 7.772445678710938e-05 + "time_consumption": 0.00015044212341308594 } ], - "thread": 139622186977088, + "thread": 140326961268544, "threadName": "MainThread", - "time_consumption": 0.708648681640625, - "time_finished": "2020-12-21 22:33:01,870", - "time_start": "2020-12-21 22:33:01,162" + "time_consumption": 0.7080848217010498, + "time_finished": "2020-12-25 15:03:37,259", + "time_start": "2020-12-25 15:03:36,551" + }, + "socket_protocol: Client setting the channel name.": { + "args": null, + "asctime": "2020-12-25 15:03:48,200", + "created": 1608905028.2003524, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 50, + "message": "socket_protocol: Client setting the channel name.", + "module": "__init__", + "moduleLogger": [], + "msecs": 200.35243034362793, + "msg": "socket_protocol: Client setting the channel name.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11719.6946144104, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:48,509", + "created": 1608905028.509314, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:48,200", + "created": 1608905028.2006354, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 200.63543319702148, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11719.977617263794, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:48,201", + "created": 1608905028.2010417, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "socket_protocol (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 201.04169845581055, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11720.383882522583, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:48,201", + "created": 1608905028.2012525, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 201.25246047973633, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11720.594644546509, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,201", + "created": 1608905028.2014198, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 201.41983032226562, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11720.762014389038, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,201", + "created": 1608905028.2017877, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_client_set_channel_name (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 201.78771018981934, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11721.129894256592, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):" + ], + "asctime": "2020-12-25 15:03:48,201", + "created": 1608905028.2019756, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 201.97558403015137, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11721.317768096924, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (server):", + 0, + 5, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:48,202", + "created": 1608905028.20213, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "socket_protocol (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 202.13007926940918, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11721.472263336182, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,202", + "created": 1608905028.2024899, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 c9 eb 19 5c", + "module": "test_helpers", + "msecs": 202.48985290527344, + "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 c9 eb 19 5c", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11721.832036972046, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,203", + "created": 1608905028.2031674, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 203.16743850708008, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11722.509622573853, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,353", + "created": 1608905028.3534703, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 c9 eb 19 5c", + "module": "test_helpers", + "msecs": 353.4703254699707, + "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 35 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 c9 eb 19 5c", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11872.812509536743, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-34" + }, + { + "args": [ + "ut_client_set_channel_name (client):", + "0", + "5", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:48,353", + "created": 1608905028.35393, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "ut_client_set_channel_name (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 353.9299964904785, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11873.272180557251, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-34" + }, + { + "args": [ + "ut_client_set_channel_name (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:48,354", + "created": 1608905028.3541393, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "ut_client_set_channel_name (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 354.1393280029297, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11873.481512069702, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-34" + }, + { + "args": [ + "ut_client_set_channel_name (client):", + 0, + 6, + 0, + "'ut_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,354", + "created": 1608905028.3543227, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"'ut_client_set_channel_name'\"", + "module": "__init__", + "msecs": 354.3226718902588, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11873.664855957031, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-34" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,354", + "created": 1608905028.3547134, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (86): 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 36 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 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d db 90 55 74", + "module": "test_helpers", + "msecs": 354.71343994140625, + "msg": "Send data: (86): 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 36 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 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d db 90 55 74", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11874.055624008179, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-34" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,506", + "created": 1608905028.5062258, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (86): 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 36 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 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d db 90 55 74", + "module": "test_helpers", + "msecs": 506.2258243560791, + "msg": "Receive data (86): 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 36 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 74 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d db 90 55 74", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12025.568008422852, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-35" + }, + { + "args": [ + "socket_protocol (server):", + "0", + "6", + "0", + "'ut_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,506", + "created": 1608905028.506647, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "socket_protocol (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"'ut_client_set_channel_name'\"", + "module": "__init__", + "msecs": 506.64710998535156, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12025.989294052124, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-35" + }, + { + "args": [ + "socket_protocol (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:48,506", + "created": 1608905028.506861, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "socket_protocol (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 506.86097145080566, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12026.203155517578, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-35" + }, + { + "args": [ + "ut_client_set_channel_name (server):", + "'ut_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,507", + "created": 1608905028.5070355, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_response__", + "levelname": "INFO", + "levelno": 20, + "lineno": 244, + "message": "ut_client_set_channel_name (server): channel name is now 'ut_client_set_channel_name'", + "module": "__init__", + "msecs": 507.035493850708, + "msg": "%s channel name is now %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12026.37767791748, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-35" + } + ], + "msecs": 509.31406021118164, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12028.656244277954, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.002278566360473633 + }, + { + "args": [ + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,510", + "created": 1608905028.5101292, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content 'ut_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,509", + "created": 1608905028.5097957, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): 'ut_client_set_channel_name' ()", + "module": "test", + "msecs": 509.7956657409668, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12029.13784980774, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,509", + "created": 1608905028.5099726, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = 'ut_client_set_channel_name' ()", + "module": "test", + "msecs": 509.97257232666016, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12029.314756393433, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 510.1292133331299, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12029.471397399902, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00015664100646972656 + }, + { + "args": [ + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,510", + "created": 1608905028.5106628, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content 'ut_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,510", + "created": 1608905028.5103822, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): 'ut_client_set_channel_name' ()", + "module": "test", + "msecs": 510.38217544555664, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12029.72435951233, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "'ut_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,510", + "created": 1608905028.5105247, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = 'ut_client_set_channel_name' ()", + "module": "test", + "msecs": 510.5247497558594, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12029.866933822632, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 510.6627941131592, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12030.004978179932, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.0001380443572998047 + } + ], + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.31031036376953125, + "time_finished": "2020-12-25 15:03:48,510", + "time_start": "2020-12-25 15:03:48,200" + }, + "socket_protocol: Server and Client setting different channel names.": { + "args": null, + "asctime": "2020-12-25 15:03:48,511", + "created": 1608905028.5110629, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 51, + "message": "socket_protocol: Server and Client setting different channel names.", + "module": "__init__", + "moduleLogger": [], + "msecs": 511.0628604888916, + "msg": "socket_protocol: Server and Client setting different channel names.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12030.405044555664, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:48,820", + "created": 1608905028.820109, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,511", + "created": 1608905028.5113626, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 511.36255264282227, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12030.704736709595, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,511", + "created": 1608905028.5117285, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 511.72852516174316, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12031.070709228516, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:48,511", + "created": 1608905028.5119226, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 511.92259788513184, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12031.264781951904, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:48,512", + "created": 1608905028.512089, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "foo (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 512.0890140533447, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12031.431198120117, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:48,512", + "created": 1608905028.5124106, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "foo (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 512.4106407165527, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12031.752824783325, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,512", + "created": 1608905028.5125918, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 512.5918388366699, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12031.934022903442, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + 0, + 5, + 0, + "'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,512", + "created": 1608905028.5127442, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 512.7441883087158, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12032.086372375488, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,513", + "created": 1608905028.5131571, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "module": "test_helpers", + "msecs": 513.1571292877197, + "msg": "Send data: (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12032.499313354492, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "foo (client):" + ], + "asctime": "2020-12-25 15:03:48,513", + "created": 1608905028.5139248, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "foo (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 513.9248371124268, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12033.2670211792, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,664", + "created": 1608905028.664215, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "module": "test_helpers", + "msecs": 664.215087890625, + "msg": "Receive data (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12183.557271957397, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [ + "foo (client):", + "0", + "5", + "0", + "'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,664", + "created": 1608905028.6646154, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "foo (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 664.6153926849365, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12183.957576751709, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [ + "foo (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:48,664", + "created": 1608905028.6648502, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "foo (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 664.8502349853516, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12184.192419052124, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "'foo'", + "'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,665", + "created": 1608905028.6650245, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 235, + "message": "ut_server_and_client_set_channel_name (client): overwriting user defined channel name from 'foo' to 'ut_server_and_client_set_channel_name'", + "module": "__init__", + "msecs": 665.0245189666748, + "msg": "%s overwriting user defined channel name from %s to %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12184.366703033447, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:48,665", + "created": 1608905028.6651864, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 665.1864051818848, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12184.528589248657, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,665", + "created": 1608905028.665555, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 665.5550003051758, + "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12184.897184371948, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-36" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,816", + "created": 1608905028.8165636, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 816.563606262207, + "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12335.90579032898, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-37" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:48,816", + "created": 1608905028.8169696, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "ut_server_and_client_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 816.969633102417, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12336.31181716919, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-37" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:48,817", + "created": 1608905028.8171983, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_and_client_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 817.1982765197754, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12336.540460586548, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-37" + } + ], + "msecs": 820.1088905334473, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12339.45107460022, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.002910614013671875 + }, + { + "args": [ + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,820", + "created": 1608905028.820892, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content 'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,820", + "created": 1608905028.8205392, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 820.5392360687256, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12339.881420135498, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,820", + "created": 1608905028.8207126, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 820.7125663757324, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12340.054750442505, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 820.8920955657959, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12340.234279632568, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00017952919006347656 + }, + { + "args": [ + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,821", + "created": 1608905028.821398, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content 'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,821", + "created": 1608905028.821124, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 821.1240768432617, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12340.466260910034, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,821", + "created": 1608905028.8212655, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 821.265459060669, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12340.607643127441, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 821.3980197906494, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12340.740203857422, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00013256072998046875 + } + ], + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.3103351593017578, + "time_finished": "2020-12-25 15:03:48,821", + "time_start": "2020-12-25 15:03:48,511" + }, + "socket_protocol: Server and Client setting the same channel name.": { + "args": null, + "asctime": "2020-12-25 15:03:48,821", + "created": 1608905028.8218393, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 52, + "message": "socket_protocol: Server and Client setting the same channel name.", + "module": "__init__", + "moduleLogger": [], + "msecs": 821.8393325805664, + "msg": "socket_protocol: Server and Client setting the same channel name.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12341.181516647339, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:49,131", + "created": 1608905029.1310043, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,822", + "created": 1608905028.822137, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 822.1371173858643, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12341.479301452637, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,822", + "created": 1608905028.8225045, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 822.5045204162598, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12341.846704483032, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:48,822", + "created": 1608905028.8226988, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 822.6988315582275, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12342.041015625, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,822", + "created": 1608905028.8228626, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 822.8626251220703, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12342.204809188843, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,823", + "created": 1608905028.8232083, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_and_client_set_channel_name (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 823.2083320617676, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12342.55051612854, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:48,823", + "created": 1608905028.823379, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 823.3790397644043, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12342.721223831177, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + 0, + 5, + 0, + "'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,823", + "created": 1608905028.8235304, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 823.5304355621338, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12342.872619628906, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,823", + "created": 1608905028.8239424, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "module": "test_helpers", + "msecs": 823.9424228668213, + "msg": "Send data: (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12343.284606933594, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):" + ], + "asctime": "2020-12-25 15:03:48,824", + "created": 1608905028.8246772, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_and_client_set_channel_name (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 824.6772289276123, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12344.019412994385, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,974", + "created": 1608905028.9749632, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "module": "test_helpers", + "msecs": 974.9631881713867, + "msg": "Receive data (97): 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 35 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 74 5f 73 65 72 76 65 72 5f 61 6e 64 5f 63 6c 69 65 6e 74 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d fc 87 b8 63", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12494.30537223816, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "0", + "5", + "0", + "'ut_server_and_client_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,975", + "created": 1608905028.9753942, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "ut_server_and_client_set_channel_name (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"'ut_server_and_client_set_channel_name'\"", + "module": "__init__", + "msecs": 975.3942489624023, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12494.736433029175, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:48,975", + "created": 1608905028.9756012, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "ut_server_and_client_set_channel_name (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 975.6011962890625, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12494.943380355835, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-38" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:48,975", + "created": 1608905028.975787, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_and_client_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 975.7869243621826, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12495.129108428955, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-38" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,976", + "created": 1608905028.9761534, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 976.1533737182617, + "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12495.495557785034, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-38" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:49,127", + "created": 1608905029.1271558, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 127.15578079223633, + "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12646.497964859009, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-39" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:49,127", + "created": 1608905029.1275642, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "ut_server_and_client_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 127.5641918182373, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12646.90637588501, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-39" + }, + { + "args": [ + "ut_server_and_client_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:49,127", + "created": 1608905029.1278036, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_and_client_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 127.80356407165527, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12647.145748138428, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-39" + } + ], + "msecs": 131.00433349609375, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12650.346517562866, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.0032007694244384766 + }, + { + "args": [ + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,131", + "created": 1608905029.13175, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content 'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,131", + "created": 1608905029.1314301, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 131.43014907836914, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12650.772333145142, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,131", + "created": 1608905029.1315997, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 131.59966468811035, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12650.941848754883, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 131.75010681152344, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12651.092290878296, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00015044212341308594 + }, + { + "args": [ + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,132", + "created": 1608905029.1322463, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content 'ut_server_and_client_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,131", + "created": 1608905029.1319723, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 131.9723129272461, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12651.314496994019, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "'ut_server_and_client_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:49,132", + "created": 1608905029.1321115, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = 'ut_server_and_client_set_channel_name' ()", + "module": "test", + "msecs": 132.1115493774414, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12651.453733444214, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 132.2462558746338, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 12651.588439941406, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.0001347064971923828 + } + ], + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.3104069232940674, + "time_finished": "2020-12-25 15:03:49,132", + "time_start": "2020-12-25 15:03:48,821" + }, + "socket_protocol: Server setting the channel name.": { + "args": null, + "asctime": "2020-12-25 15:03:47,889", + "created": 1608905027.8896213, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 49, + "message": "socket_protocol: Server setting the channel name.", + "module": "__init__", + "moduleLogger": [], + "msecs": 889.6212577819824, + "msg": "socket_protocol: Server setting the channel name.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11408.963441848755, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-12-25 15:03:48,198", + "created": 1608905028.1986642, + "exc_info": null, + "exc_text": null, + "filename": "test_channel_name.py", + "funcName": "test_channel_name", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 58, + "message": "Initiating communication including channel_name exchange.", + "module": "test_channel_name", + "moduleLogger": [ + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:47,889", + "created": 1608905027.889967, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 889.9669647216797, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11409.309148788452, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:47,890", + "created": 1608905027.890352, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "ut_server_set_channel_name (server): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 890.3520107269287, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11409.694194793701, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "'__channel_name_response__'", + "6", + "0", + "'ut_response_callback'" + ], + "asctime": "2020-12-25 15:03:47,890", + "created": 1608905027.8905606, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "WARNING", + "levelno": 30, + "lineno": 82, + "message": "Overwriting existing callback '__channel_name_response__' for service_id (6) and data_id (0) to 'ut_response_callback'!", + "module": "__init__", + "msecs": 890.5606269836426, + "msg": "Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11409.902811050415, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:47,890", + "created": 1608905027.8907313, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 890.7313346862793, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11410.073518753052, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:47,891", + "created": 1608905027.8910546, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 248, + "message": "socket_protocol (client): Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "module": "__init__", + "msecs": 891.054630279541, + "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11410.396814346313, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):" + ], + "asctime": "2020-12-25 15:03:47,891", + "created": 1608905027.891238, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "ut_server_set_channel_name (server): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 891.2379741668701, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11410.580158233643, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + 0, + 5, + 0, + "'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:47,891", + "created": 1608905027.891391, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_set_channel_name (server): TX -> status: 0, service_id: 5, data_id: 0, data: \"'ut_server_set_channel_name'\"", + "module": "__init__", + "msecs": 891.3910388946533, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11410.733222961426, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:47,891", + "created": 1608905027.8918042, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (86): 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 35 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 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d 6e a8 f6 56", + "module": "test_helpers", + "msecs": 891.8042182922363, + "msg": "Send data: (86): 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 35 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 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d 6e a8 f6 56", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11411.146402359009, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "socket_protocol (client):" + ], + "asctime": "2020-12-25 15:03:47,892", + "created": 1608905027.8924954, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 344, + "message": "socket_protocol (client): Cleaning up receive-buffer", + "module": "__init__", + "msecs": 892.4953937530518, + "msg": "%s Cleaning up receive-buffer", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11411.837577819824, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,042", + "created": 1608905028.0428493, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (86): 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 35 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 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d 6e a8 f6 56", + "module": "test_helpers", + "msecs": 42.84930229187012, + "msg": "Receive data (86): 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 35 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 74 5f 73 65 72 76 65 72 5f 73 65 74 5f 63 68 61 6e 6e 65 6c 5f 6e 61 6d 65 22 7d 6e a8 f6 56", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11562.191486358643, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [ + "socket_protocol (client):", + "0", + "5", + "0", + "'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,043", + "created": 1608905028.0432594, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "socket_protocol (client): RX <- status: 0, service_id: 5, data_id: 0, data: \"'ut_server_set_channel_name'\"", + "module": "__init__", + "msecs": 43.259382247924805, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11562.601566314697, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [ + "socket_protocol (client):", + "__channel_name_request__" + ], + "asctime": "2020-12-25 15:03:48,043", + "created": 1608905028.0434678, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 313, + "message": "socket_protocol (client): Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 43.46776008605957, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11562.809944152832, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [ + "ut_server_set_channel_name (client):", + "'ut_server_set_channel_name'" + ], + "asctime": "2020-12-25 15:03:48,043", + "created": 1608905028.0436382, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "INFO", + "levelno": 20, + "lineno": 237, + "message": "ut_server_set_channel_name (client): channel name is now 'ut_server_set_channel_name'", + "module": "__init__", + "msecs": 43.63822937011719, + "msg": "%s channel name is now %s", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11562.98041343689, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [ + "ut_server_set_channel_name (client):", + 0, + 6, + 0, + "None" + ], + "asctime": "2020-12-25 15:03:48,043", + "created": 1608905028.0437999, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "INFO", + "levelno": 20, + "lineno": 383, + "message": "ut_server_set_channel_name (client): TX -> status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 43.79987716674805, + "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11563.14206123352, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,044", + "created": 1608905028.04415, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "send", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 44.15011405944824, + "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11563.49229812622, + "stack_info": null, + "thread": 140326926956288, + "threadName": "Thread-32" + }, + { + "args": [], + "asctime": "2020-12-25 15:03:48,195", + "created": 1608905028.1951363, + "exc_info": null, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "receive", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 71, + "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "module": "test_helpers", + "msecs": 195.13630867004395, + "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 36 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 6c e3 72 30", + "name": "__unittest__", + "pathname": "src/tests/test_helpers.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11714.478492736816, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-33" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + "0", + "6", + "0", + "None" + ], + "asctime": "2020-12-25 15:03:48,195", + "created": 1608905028.1955454, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 290, + "message": "ut_server_set_channel_name (server): RX <- status: 0, service_id: 6, data_id: 0, data: \"None\"", + "module": "__init__", + "msecs": 195.54543495178223, + "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11714.887619018555, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-33" + }, + { + "args": [ + "ut_server_set_channel_name (server):", + "ut_response_callback" + ], + "asctime": "2020-12-25 15:03:48,195", + "created": 1608905028.1957738, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 330, + "message": "ut_server_set_channel_name (server): Executing callback ut_response_callback to process received data", + "module": "__init__", + "msecs": 195.77383995056152, + "msg": "%s Executing callback %s to process received data", + "name": "root.socket_protocol", + "pathname": "src/socket_protocol/__init__.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11715.116024017334, + "stack_info": null, + "thread": 140326935348992, + "threadName": "Thread-33" + } + ], + "msecs": 198.66418838500977, + "msg": "Initiating communication including channel_name exchange.", + "name": "__tLogger__", + "pathname": "src/tests/test_channel_name.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11718.006372451782, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.002890348434448242 + }, + { + "args": [ + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.199428, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for server is correct (Content 'ut_server_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for server", + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.1990955, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for server): 'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 199.0954875946045, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11718.437671661377, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for server", + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.1992695, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for server): result = 'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 199.26953315734863, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11718.611717224121, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 199.42808151245117, + "msg": "Channel name for server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11718.770265579224, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00015854835510253906 + }, + { + "args": [ + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.199954, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Channel name for client is correct (Content 'ut_server_set_channel_name' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name for client", + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.1996784, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name for client): 'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 199.6784210205078, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11719.02060508728, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name for client", + "'ut_server_set_channel_name'", + "" + ], + "asctime": "2020-12-25 15:03:48,199", + "created": 1608905028.1998177, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name for client): result = 'ut_server_set_channel_name' ()", + "module": "test", + "msecs": 199.81765747070312, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11719.159841537476, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread" + } + ], + "msecs": 199.95403289794922, + "msg": "Channel name for client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 219865, + "processName": "MainProcess", + "relativeCreated": 11719.296216964722, + "stack_info": null, + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.00013637542724609375 + } + ], + "thread": 140326961268544, + "threadName": "MainThread", + "time_consumption": 0.3103327751159668, + "time_finished": "2020-12-25 15:03:48,199", + "time_start": "2020-12-25 15:03:47,889" } }, "testrun_id": "p3", - "time_consumption": 11.33228349685669, + "time_consumption": 12.572825193405151, "uid_list_sorted": [ "socket_protocol.struct_json_protocol: Send and receive check.", "socket_protocol.pure_json_protocol: Send and receive check.", @@ -31664,13 +36865,16 @@ "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", - "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "socket_protocol.pure_json_protocol: Authentification processed without secret.", - "socket_protocol.pure_json_protocol: Incompatible Callback return value(s)." + "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", + "socket_protocol: Server setting the channel name.", + "socket_protocol: Client setting the channel name.", + "socket_protocol: Server and Client setting different channel names.", + "socket_protocol: Server and Client setting the same channel name." ] } ], "unittest_information": { - "Version": "cd82b7d4eb571a53181f2cb9c7b37417" + "Version": "7075d2ce05c6d6ff54b3fe52f4e996ab" } } \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index 253f758..acd4a3c 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ