diff --git a/__init__.py b/__init__.py index e709214..632cb45 100644 --- a/__init__.py +++ b/__init__.py @@ -33,6 +33,7 @@ from stringtools import stp from stringtools import csp __DEPENDENCIES__ = [] +import fractions import gzip import logging import time @@ -56,6 +57,60 @@ __all__ = ['gzip_compress', 'stp'] +def physical_value_repr(value, unit=''): + prefix = { + -4: 'p', + -3: 'n', + -2: 'ยต', + -1: 'm', + 0: '', + 1: 'k', + 2: 'M', + 3: 'G', + 4: 'T', + 5: 'P', + } + u = 0 + while u > -4 and u < 5 and (value >= 1000. or value < 1.): + if value >= 1: + u += 1 + value /= 1000. + else: + u -= 1 + value *= 1000. + if u == 0: + ext = '' + else: + ext = prefix[u] + # + if value < 100.: + value = '%.2f' % (value) + else: + value = '%.1f' % (value) + while value.find('.') > -1 and (value.endswith('0') or value.endswith('.')): + value = value[:-1] + return value + ext + unit + + +def time_repr(seconds): + days = seconds / (24 * 60 * 60) + seconds = seconds % (24 * 60 * 60) + if seconds >= 60 * 60: + rv = time.strftime('%H:%M:%S', time.gmtime(seconds)) + else: + rv = time.strftime('%M:%S', time.gmtime(seconds)) + if days >= 1: + rv = '%dD %s' % (days, rv) + if rv.endswith(' 00:00'): + rv = rv[:-6] + return rv + + +def frac_repr(value): + f = fractions.Fraction(value).limit_denominator() + return '%s/%s' % (f.numerator, f.denominator) + + def gzip_compress(s, compresslevel=9): """ Method to compress a stream of bytes. diff --git a/_testresults_/coverage.xml b/_testresults_/coverage.xml new file mode 100644 index 0000000..cab0267 --- /dev/null +++ b/_testresults_/coverage.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index c803ddf..5645384 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -1,12 +1,12 @@ { "coverage_information": [ { - "branch_coverage": 97.14, - "filepath": "/user_data/data/dirk/prj/modules/stringtools/pylibs/stringtools", + "branch_coverage": 97.67, + "filepath": "/user_data/data/dirk/prj/unittest/stringtools/pylibs/stringtools", "files": [ { - "branch_coverage": 97.14, - "filepath": "/user_data/data/dirk/prj/modules/stringtools/pylibs/stringtools/__init__.py", + "branch_coverage": 97.67, + "filepath": "/user_data/data/dirk/prj/unittest/stringtools/pylibs/stringtools/__init__.py", "fragments": [ { "coverage_state": "clean", @@ -35,78 +35,88 @@ }, { "coverage_state": "covered", - "end": 41, + "end": 42, "start": 36 }, { "coverage_state": "clean", - "end": 42, - "start": 42 - }, - { - "coverage_state": "covered", - "end": 44, + "end": 43, "start": 43 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 45, - "start": 45 + "start": 44 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 46, "start": 46 }, { - "coverage_state": "clean", - "end": 48, + "coverage_state": "covered", + "end": 47, "start": 47 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 49, - "start": 49 + "start": 48 }, { - "coverage_state": "clean", - "end": 51, + "coverage_state": "covered", + "end": 50, "start": 50 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 52, - "start": 52 + "start": 51 }, { - "coverage_state": "clean", - "end": 58, + "coverage_state": "covered", + "end": 53, "start": 53 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 59, - "start": 59 + "start": 54 }, { - "coverage_state": "clean", - "end": 75, + "coverage_state": "covered", + "end": 61, "start": 60 }, + { + "coverage_state": "clean", + "end": 72, + "start": 62 + }, { "coverage_state": "covered", - "end": 79, - "start": 76 + "end": 77, + "start": 73 }, { "coverage_state": "clean", - "end": 80, - "start": 80 + "end": 78, + "start": 78 + }, + { + "coverage_state": "covered", + "end": 82, + "start": 79 + }, + { + "coverage_state": "clean", + "end": 83, + "start": 83 }, { "coverage_state": "covered", "end": 84, - "start": 81 + "start": 84 }, { "coverage_state": "clean", @@ -115,141 +125,221 @@ }, { "coverage_state": "covered", - "end": 88, + "end": 87, "start": 86 }, { - "coverage_state": "partially-covered", - "end": 89, + "coverage_state": "clean", + "end": 88, + "start": 88 + }, + { + "coverage_state": "covered", + "end": 92, "start": 89 }, - { - "coverage_state": "covered", - "end": 91, - "start": 90 - }, { "coverage_state": "clean", - "end": 93, - "start": 92 - }, - { - "coverage_state": "covered", "end": 94, - "start": 94 + "start": 93 }, { - "coverage_state": "clean", - "end": 109, + "coverage_state": "covered", + "end": 99, "start": 95 }, + { + "coverage_state": "clean", + "end": 100, + "start": 100 + }, { "coverage_state": "covered", - "end": 113, - "start": 110 + "end": 106, + "start": 101 }, { "coverage_state": "clean", + "end": 108, + "start": 107 + }, + { + "coverage_state": "covered", + "end": 111, + "start": 109 + }, + { + "coverage_state": "clean", + "end": 113, + "start": 112 + }, + { + "coverage_state": "covered", "end": 114, "start": 114 }, { - "coverage_state": "covered", - "end": 118, + "coverage_state": "clean", + "end": 130, "start": 115 }, + { + "coverage_state": "covered", + "end": 134, + "start": 131 + }, { "coverage_state": "clean", - "end": 119, - "start": 119 + "end": 135, + "start": 135 }, { "coverage_state": "covered", - "end": 121, - "start": 120 + "end": 139, + "start": 136 + }, + { + "coverage_state": "clean", + "end": 140, + "start": 140 + }, + { + "coverage_state": "covered", + "end": 143, + "start": 141 }, { "coverage_state": "partially-covered", - "end": 122, - "start": 122 + "end": 144, + "start": 144 }, { "coverage_state": "covered", - "end": 124, - "start": 123 - }, - { - "coverage_state": "clean", - "end": 126, - "start": 125 - }, - { - "coverage_state": "covered", - "end": 127, - "start": 127 - }, - { - "coverage_state": "clean", - "end": 141, - "start": 128 - }, - { - "coverage_state": "covered", - "end": 145, - "start": 142 - }, - { - "coverage_state": "clean", "end": 146, - "start": 146 + "start": 145 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 148, "start": 147 }, { - "coverage_state": "clean", - "end": 150, + "coverage_state": "covered", + "end": 149, "start": 149 }, + { + "coverage_state": "clean", + "end": 164, + "start": 150 + }, { "coverage_state": "covered", - "end": 151, - "start": 151 + "end": 168, + "start": 165 }, { "coverage_state": "clean", - "end": 157, - "start": 152 + "end": 169, + "start": 169 }, { "coverage_state": "covered", - "end": 159, - "start": 158 + "end": 173, + "start": 170 }, { "coverage_state": "clean", - "end": 160, - "start": 160 + "end": 174, + "start": 174 }, { "coverage_state": "covered", - "end": 161, - "start": 161 + "end": 176, + "start": 175 + }, + { + "coverage_state": "partially-covered", + "end": 177, + "start": 177 + }, + { + "coverage_state": "covered", + "end": 179, + "start": 178 + }, + { + "coverage_state": "clean", + "end": 181, + "start": 180 + }, + { + "coverage_state": "covered", + "end": 182, + "start": 182 + }, + { + "coverage_state": "clean", + "end": 196, + "start": 183 + }, + { + "coverage_state": "covered", + "end": 200, + "start": 197 + }, + { + "coverage_state": "clean", + "end": 201, + "start": 201 + }, + { + "coverage_state": "covered", + "end": 203, + "start": 202 + }, + { + "coverage_state": "clean", + "end": 205, + "start": 204 + }, + { + "coverage_state": "covered", + "end": 206, + "start": 206 + }, + { + "coverage_state": "clean", + "end": 212, + "start": 207 + }, + { + "coverage_state": "covered", + "end": 214, + "start": 213 + }, + { + "coverage_state": "clean", + "end": 215, + "start": 215 + }, + { + "coverage_state": "covered", + "end": 216, + "start": 216 }, { "coverage_state": "clean", "end": null, - "start": 162 + "start": 217 } ], "line_coverage": 100.0, "name": "stringtools.__init__.py" }, { - "branch_coverage": 97.14, - "filepath": "/user_data/data/dirk/prj/modules/stringtools/pylibs/stringtools/csp.py", + "branch_coverage": 97.67, + "filepath": "/user_data/data/dirk/prj/unittest/stringtools/pylibs/stringtools/csp.py", "fragments": [ { "coverage_state": "clean", @@ -401,8 +491,8 @@ "name": "stringtools.csp.py" }, { - "branch_coverage": 97.14, - "filepath": "/user_data/data/dirk/prj/modules/stringtools/pylibs/stringtools/stp.py", + "branch_coverage": 97.67, + "filepath": "/user_data/data/dirk/prj/unittest/stringtools/pylibs/stringtools/stp.py", "fragments": [ { "coverage_state": "clean", @@ -851,6 +941,13 @@ "system_uid": "_TzZlUI9jEemg3cv-3xZ25Q", "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" }, + "_ViQHQEaTEeq5fPlXIeQCXQ": { + "Heading": "Human readable value representations", + "last_change": "2020-02-03T15:41:41.233+01:00", + "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", + "system_uid": "_ViQHQEaTEeq5fPlXIeQCXQ", + "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + }, "_XzMFcHYZEem_kd-7nxt1sg": { "Description": "A Stream shall be converted to a human readable String containing all bytes as hexadecimal values seperated by a Space.", "Fitcriterion": "A stream shall be converted at least once and the hex values shall exist in the returnvalue in the correct order.", @@ -884,6 +981,15 @@ "system_uid": "_ZhyRAI9OEemAMMFgxXT6lA", "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" }, + "_dB5IoEaTEeq5fPlXIeQCXQ": { + "Description": "The library {\\tt stringtools} shall have a method {\\tt physical\\_repr}, transforming a float or integer value to a string with a 1 to 3 digit value followed by the physical prefix for the unit.", + "Heading": "Physical representation", + "ID": "REQ-19", + "last_change": "2020-02-03T18:23:12.625+01:00", + "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", + "system_uid": "_dB5IoEaTEeq5fPlXIeQCXQ", + "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + }, "_dpJzwCcUEeqsHsnJQYCN8Q": { "Description": "On receiving an incorrect end pattern, STP shall change to state STORE\\_DATA, in case of a start pattern, to ESCAPE\\_1, in case of data sync was received twice or back to state IDLE in all other faulty end patterns starting with data sync. A warning shall be given to the logger.", "Heading": "Frame processing - Incorrect end pattern", @@ -905,6 +1011,24 @@ "system_uid": "_fp-i0Hu8Eemborg4LxXa3A", "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" }, + "_hpUmwEaTEeq5fPlXIeQCXQ": { + "Description": "The library {\\tt stringtools} shall have a method {\\tt physical\\_repr}, transforming an integer value to a time string like {\\tt HH:MM:SS}.", + "Heading": "Time representation", + "ID": "REQ-20", + "last_change": "2020-02-03T15:43:17.157+01:00", + "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", + "system_uid": "_hpUmwEaTEeq5fPlXIeQCXQ", + "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + }, + "_iXxBIEaTEeq5fPlXIeQCXQ": { + "Description": "The library {\\tt stringtools} shall have a method {\\tt frac\\_repr}, transforming a float or integer value to a fraction string with a limited denominator.", + "Heading": "Fraction representation", + "ID": "REQ-21", + "last_change": "2020-02-03T18:25:07.836+01:00", + "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", + "system_uid": "_iXxBIEaTEeq5fPlXIeQCXQ", + "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + }, "_n3BdUCcREeqsHsnJQYCN8Q": { "Description": "On receiving an incorrect start pattern, STP shall stay in ESCAPE\\_1, in case of data sync was received twice or back to state IDLE in all other faulty start patterns starting with data sync. A warning shall be given to the logger.", "Heading": "Frame processing - Incorrect start patterns", @@ -979,6 +1103,10 @@ "titel": "Title", "uid_list_sorted": [ "_TzZlUI9jEemg3cv-3xZ25Q", + "_dB5IoEaTEeq5fPlXIeQCXQ", + "_hpUmwEaTEeq5fPlXIeQCXQ", + "_iXxBIEaTEeq5fPlXIeQCXQ", + "_ViQHQEaTEeq5fPlXIeQCXQ", "_MR7eOHYYEem_kd-7nxt1sg", "_XzMFcHYZEem_kd-7nxt1sg", "_pavPUHsZEemK6PYOxF9rHw", @@ -1007,9 +1135,9 @@ "Architecture": "64bit", "Distribution": "LinuxMint 19.3 tricia", "Hostname": "ahorn", - "Kernel": "5.0.0-37-generic (#40~18.04.1-Ubuntu SMP Thu Nov 14 12:06:39 UTC 2019)", + "Kernel": "5.3.0-28-generic (#30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020)", "Machine": "x86_64", - "Path": "/user_data/data/dirk/prj/modules/stringtools/unittest", + "Path": "/user_data/data/dirk/prj/unittest/stringtools/unittest", "System": "Linux", "Username": "dirk" }, @@ -1019,7 +1147,7 @@ "Name": "stringtools", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "88a3eed174bd2239a6c1d928081e5b6d" + "Version": "8a325608d13645870f6f32774828606f" }, "testrun_list": [ { @@ -1035,11 +1163,15 @@ "_NpOWgI9tEemg3cv-3xZ25Q": "Frame processing - Input data type error", "_QjJiIIwZEem5qYOdmXl77A": "Frame processing", "_TzZlUI9jEemg3cv-3xZ25Q": "Stream Definition", + "_ViQHQEaTEeq5fPlXIeQCXQ": "Human readable value representations", "_XzMFcHYZEem_kd-7nxt1sg": "Hexadecimal Values", "_Y_h3gH5CEemxr4bbKXhxkg": "Frame creation", "_ZhyRAI9OEemAMMFgxXT6lA": "Frame processing - Input data type error", + "_dB5IoEaTEeq5fPlXIeQCXQ": "Physical representation", "_dpJzwCcUEeqsHsnJQYCN8Q": "Frame processing - Incorrect end pattern", "_fp-i0Hu8Eemborg4LxXa3A": "Extract", + "_hpUmwEaTEeq5fPlXIeQCXQ": "Time representation", + "_iXxBIEaTEeq5fPlXIeQCXQ": "Fraction representation", "_n3BdUCcREeqsHsnJQYCN8Q": "Frame processing - Incorrect start patterns", "_pavPUHsZEemK6PYOxF9rHw": "Number of Bytes", "_rhV88Hu9Eemborg4LxXa3A": "CRLF-Filter", @@ -1052,8 +1184,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 18, - "number_of_tests": 18, + "number_of_successfull_tests": 21, + "number_of_tests": 21, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -1064,32 +1196,32 @@ "testcases": { "_-yWo4I9sEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745745, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369283, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 40, + "lineno": 46, "message": "_-yWo4I9sEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 745.7449436187744, + "msecs": 369.28296089172363, "msg": "_-yWo4I9sEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.3230094909668, + "relativeCreated": 40.69185256958008, "testcaseLogger": [ { "args": [ "'testframe for stp'" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745828, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369387, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -1100,14 +1232,14 @@ "message": "Creating testframe for \"'testframe for stp'\"", "module": "test_stp", "moduleLogger": [], - "msecs": 745.8279132843018, + "msecs": 369.3869113922119, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.40597915649414, - "thread": 139832911451968, + "relativeCreated": 40.79580307006836, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1116,8 +1248,8 @@ "':'", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745975, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369552, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1134,8 +1266,8 @@ "':'", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745896, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1145,14 +1277,14 @@ "lineno": 22, "message": "Result (STP-Frame): ':' ()", "module": "test", - "msecs": 745.8961009979248, + "msecs": 369.46797370910645, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.47416687011719, - "thread": 139832911451968, + "relativeCreated": 40.87686538696289, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1161,8 +1293,8 @@ "':'", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745936, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.36951, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1172,63 +1304,63 @@ "lineno": 26, "message": "Expectation (STP-Frame): result = ':' ()", "module": "test", - "msecs": 745.9359169006348, + "msecs": 369.5099353790283, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.51398277282715, - "thread": 139832911451968, + "relativeCreated": 40.918827056884766, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 745.9750175476074, + "msecs": 369.5518970489502, "msg": "STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.553083419799805, - "thread": 139832911451968, + "relativeCreated": 40.96078872680664, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 4.1961669921875e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0002300739288330078, - "time_finished": "2019-12-30 18:01:07,745", - "time_start": "2019-12-30 18:01:07,745" + "time_consumption": 0.0002689361572265625, + "time_finished": "2020-02-03 18:42:08,369", + "time_start": "2020-02-03 18:42:08,369" }, "_5_z4MI9yEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.74925, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 45, + "lineno": 51, "message": "_5_z4MI9yEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 749.2499351501465, + "msecs": 375.3349781036377, "msg": "_5_z4MI9yEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.82800102233887, + "relativeCreated": 46.74386978149414, "testcaseLogger": [ { "args": [ "'_:'" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749618, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.37579, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -1244,8 +1376,8 @@ "STP:", 95 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749324, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375428, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1255,14 +1387,14 @@ "lineno": 100, "message": "STP: no data sync (5f) received => ignoring byte", "module": "stp", - "msecs": 749.3240833282471, + "msecs": 375.4279613494873, "msg": "%s no data sync (%02x) received => ignoring byte", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.90214920043945, - "thread": 139832911451968, + "relativeCreated": 46.83685302734375, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1270,8 +1402,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749365, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375488, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1281,14 +1413,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 749.3650913238525, + "msecs": 375.4880428314209, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.94315719604492, - "thread": 139832911451968, + "relativeCreated": 46.896934509277344, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1297,8 +1429,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749407, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375529, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1308,14 +1440,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 749.4070529937744, + "msecs": 375.52905082702637, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.9851188659668, - "thread": 139832911451968, + "relativeCreated": 46.93794250488281, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1323,8 +1455,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749481, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375617, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1334,14 +1466,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 749.4809627532959, + "msecs": 375.61702728271484, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.05902862548828, - "thread": 139832911451968, + "relativeCreated": 47.02591896057129, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1350,8 +1482,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749521, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1361,14 +1493,14 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 749.521017074585, + "msecs": 375.6580352783203, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.099082946777344, - "thread": 139832911451968, + "relativeCreated": 47.06692695617676, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1376,8 +1508,8 @@ "STP:", "(17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749581, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375732, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1387,35 +1519,35 @@ "lineno": 145, "message": "STP: message identified - (17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70", "module": "stp", - "msecs": 749.5810985565186, + "msecs": 375.7319450378418, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.15916442871094, - "thread": 139832911451968, + "relativeCreated": 47.14083671569824, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 749.6180534362793, + "msecs": 375.7901191711426, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.19611930847168, - "thread": 139832911451968, + "relativeCreated": 47.19901084899902, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.695487976074219e-05 + "time_consumption": 5.817413330078125e-05 }, { "args": [ "['testframe for stp']", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749777, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376043, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1432,8 +1564,8 @@ "[ 'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749688, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1443,14 +1575,14 @@ "lineno": 22, "message": "Result (Processed STP-Frame): [ 'testframe for stp' ] ()", "module": "test", - "msecs": 749.687910079956, + "msecs": 375.9129047393799, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.26597595214844, - "thread": 139832911451968, + "relativeCreated": 47.32179641723633, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1459,8 +1591,8 @@ "[ 'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749728, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.37597, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1470,61 +1602,61 @@ "lineno": 26, "message": "Expectation (Processed STP-Frame): result = [ 'testframe for stp' ] ()", "module": "test", - "msecs": 749.7279644012451, + "msecs": 375.96988677978516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.3060302734375, - "thread": 139832911451968, + "relativeCreated": 47.3787784576416, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 749.77707862854, + "msecs": 376.04308128356934, "msg": "Processed STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.35514450073242, - "thread": 139832911451968, + "relativeCreated": 47.45197296142578, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.9114227294921875e-05 + "time_consumption": 7.319450378417969e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0005271434783935547, - "time_finished": "2019-12-30 18:01:07,749", - "time_start": "2019-12-30 18:01:07,749" + "time_consumption": 0.0007081031799316406, + "time_finished": "2020-02-03 18:42:08,376", + "time_start": "2020-02-03 18:42:08,375" }, "_9ahP4Hu7Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741891, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364878, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 28, + "lineno": 34, "message": "_9ahP4Hu7Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 741.8909072875977, + "msecs": 364.87793922424316, "msg": "_9ahP4Hu7Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.46897315979004, + "relativeCreated": 36.28683090209961, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741953, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364943, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -1535,14 +1667,14 @@ "message": "Compressing Streams result in differnt streams with the same input stream. Therefore the test will compare the decompressed data.", "module": "test_gzip", "moduleLogger": [], - "msecs": 741.9528961181641, + "msecs": 364.9430274963379, "msg": "Compressing Streams result in differnt streams with the same input stream. Therefore the test will compare the decompressed data.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14675, + "pathname": "src/tests/test_gzip.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.530961990356445, - "thread": 139832911451968, + "relativeCreated": 36.351919174194336, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -1550,8 +1682,8 @@ "args": [ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff" ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742211, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.36522, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -1565,47 +1697,47 @@ { "args": [ 0.8666666666666667, - 0.00011706352233886719 + 0.00013399124145507812 ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742126, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_compress", "levelname": "DEBUG", "levelno": 10, - "lineno": 90, + "lineno": 145, "message": "GZIP: Finished to compress a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 742.1259880065918, + "msecs": 365.13590812683105, "msg": "GZIP: Finished to compress a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14675, + "pathname": "src/stringtools/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.70405387878418, - "thread": 139832911451968, + "relativeCreated": 36.5447998046875, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 742.211103439331, + "msecs": 365.2200698852539, "msg": "Compressing stream: %s ", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14675, + "pathname": "src/tests/test_gzip.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.78916931152344, - "thread": 139832911451968, + "relativeCreated": 36.62896156311035, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.511543273925781e-05 + "time_consumption": 8.416175842285156e-05 }, { "args": [ - "(26): 1f 8b 08 00 53 2d 0a 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" + "(26): 1f 8b 08 00 70 5b 38 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742419, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365431, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -1613,54 +1745,54 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 16, - "message": "Extracting stream: (26): 1f 8b 08 00 53 2d 0a 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00", + "message": "Extracting stream: (26): 1f 8b 08 00 70 5b 38 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00", "module": "test_gzip", "moduleLogger": [ { "args": [ 0.8666666666666667, - 6.29425048828125e-05 + 6.198883056640625e-05 ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742341, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_extract", "levelname": "DEBUG", "levelno": 10, - "lineno": 123, + "lineno": 178, "message": "GZIP: Finished to extract a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 742.3410415649414, + "msecs": 365.35191535949707, "msg": "GZIP: Finished to extract a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14675, + "pathname": "src/stringtools/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.91910743713379, - "thread": 139832911451968, + "relativeCreated": 36.760807037353516, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 742.4190044403076, + "msecs": 365.4310703277588, "msg": "Extracting stream: %s", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14675, + "pathname": "src/tests/test_gzip.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.9970703125, - "thread": 139832911451968, + "relativeCreated": 36.839962005615234, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.796287536621094e-05 + "time_consumption": 7.915496826171875e-05 }, { "args": [ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.74267, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365707, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1677,8 +1809,8 @@ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.74252, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365538, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1688,14 +1820,14 @@ "lineno": 22, "message": "Result (Extracted data): (30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ()", "module": "test", - "msecs": 742.5200939178467, + "msecs": 365.5378818511963, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.09815979003906, - "thread": 139832911451968, + "relativeCreated": 36.946773529052734, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1704,8 +1836,8 @@ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742595, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365614, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1715,63 +1847,63 @@ "lineno": 26, "message": "Expectation (Extracted data): result = (30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ()", "module": "test", - "msecs": 742.5949573516846, + "msecs": 365.6139373779297, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.17302322387695, - "thread": 139832911451968, + "relativeCreated": 37.02282905578613, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 742.6700592041016, + "msecs": 365.7069206237793, "msg": "Extracted data is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.248125076293945, - "thread": 139832911451968, + "relativeCreated": 37.11581230163574, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.510185241699219e-05 + "time_consumption": 9.298324584960938e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0007791519165039062, - "time_finished": "2019-12-30 18:01:07,742", - "time_start": "2019-12-30 18:01:07,741" + "time_consumption": 0.0008289813995361328, + "time_finished": "2020-02-03 18:42:08,365", + "time_start": "2020-02-03 18:42:08,364" }, "_Bd9TgI9tEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.74658, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370039, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 42, + "lineno": 48, "message": "_Bd9TgI9tEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 746.5798854827881, + "msecs": 370.0389862060547, "msg": "_Bd9TgI9tEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.15795135498047, + "relativeCreated": 41.44787788391113, "testcaseLogger": [ { "args": [ "':'" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746963, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.37059, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -1787,8 +1919,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746654, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370122, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1798,14 +1930,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 746.6540336608887, + "msecs": 370.12195587158203, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.232099533081055, - "thread": 139832911451968, + "relativeCreated": 41.53084754943848, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1814,8 +1946,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746701, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370287, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1825,14 +1957,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 746.7010021209717, + "msecs": 370.2869415283203, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.27906799316406, - "thread": 139832911451968, + "relativeCreated": 41.69583320617676, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1840,8 +1972,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746784, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370386, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1851,14 +1983,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 746.783971786499, + "msecs": 370.38588523864746, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.362037658691406, - "thread": 139832911451968, + "relativeCreated": 41.794776916503906, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1867,8 +1999,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746852, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370446, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1878,14 +2010,14 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 746.851921081543, + "msecs": 370.44596672058105, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.42998695373535, - "thread": 139832911451968, + "relativeCreated": 41.8548583984375, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1893,8 +2025,8 @@ "STP:", "(17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746924, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370517, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -1904,35 +2036,35 @@ "lineno": 145, "message": "STP: message identified - (17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70", "module": "stp", - "msecs": 746.9239234924316, + "msecs": 370.5170154571533, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.50198936462402, - "thread": 139832911451968, + "relativeCreated": 41.925907135009766, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 746.9630241394043, + "msecs": 370.5899715423584, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.54109001159668, - "thread": 139832911451968, + "relativeCreated": 41.998863220214844, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 7.295608520507812e-05 }, { "args": [ "[]", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747114, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1949,8 +2081,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747031, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370798, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1960,14 +2092,14 @@ "lineno": 22, "message": "Result (First processed STP snippet): [ ] ()", "module": "test", - "msecs": 747.0309734344482, + "msecs": 370.79811096191406, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.609039306640625, - "thread": 139832911451968, + "relativeCreated": 42.20700263977051, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -1976,8 +2108,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747071, + "asctime": "2020-02-03 18:42:08,370", + "created": 1580751728.370914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1987,35 +2119,35 @@ "lineno": 26, "message": "Expectation (First processed STP snippet): result = [ ] ()", "module": "test", - "msecs": 747.0710277557373, + "msecs": 370.9139823913574, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.64909362792969, - "thread": 139832911451968, + "relativeCreated": 42.32287406921387, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 747.1139430999756, + "msecs": 370.98193168640137, "msg": "First processed STP snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.69200897216797, - "thread": 139832911451968, + "relativeCreated": 42.39082336425781, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 6.794929504394531e-05 }, { "args": [ "['testframe for stp']", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747264, + "asctime": "2020-02-03 18:42:08,371", + "created": 1580751728.371165, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2032,8 +2164,8 @@ "[ 'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747177, + "asctime": "2020-02-03 18:42:08,371", + "created": 1580751728.371068, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2043,14 +2175,14 @@ "lineno": 22, "message": "Result (Final processed STP snippet): [ 'testframe for stp' ] ()", "module": "test", - "msecs": 747.1768856048584, + "msecs": 371.06800079345703, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.75495147705078, - "thread": 139832911451968, + "relativeCreated": 42.47689247131348, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2059,8 +2191,8 @@ "[ 'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747217, + "asctime": "2020-02-03 18:42:08,371", + "created": 1580751728.371114, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2070,63 +2202,63 @@ "lineno": 26, "message": "Expectation (Final processed STP snippet): result = [ 'testframe for stp' ] ()", "module": "test", - "msecs": 747.2169399261475, + "msecs": 371.11401557922363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.795005798339844, - "thread": 139832911451968, + "relativeCreated": 42.52290725708008, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 747.2639083862305, + "msecs": 371.16503715515137, "msg": "Final processed STP snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.84197425842285, - "thread": 139832911451968, + "relativeCreated": 42.57392883300781, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 5.1021575927734375e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0006840229034423828, - "time_finished": "2019-12-30 18:01:07,747", - "time_start": "2019-12-30 18:01:07,746" + "time_consumption": 0.0011260509490966797, + "time_finished": "2020-02-03 18:42:08,371", + "time_start": "2020-02-03 18:42:08,370" }, "_G40UUH5DEemxr4bbKXhxkg": { "args": null, - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743666, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366757, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 34, + "lineno": 40, "message": "_G40UUH5DEemxr4bbKXhxkg", "module": "__init__", "moduleLogger": [], - "msecs": 743.6659336090088, + "msecs": 366.7569160461426, "msg": "_G40UUH5DEemxr4bbKXhxkg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.24399948120117, + "relativeCreated": 38.16580772399902, "testcaseLogger": [ { "args": [ "':testframe: for csp'" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743728, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366835, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -2137,14 +2269,14 @@ "message": "Creating testframe for \"':testframe: for csp'\"", "module": "test_csp", "moduleLogger": [], - "msecs": 743.7279224395752, + "msecs": 366.8351173400879, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.30598831176758, - "thread": 139832911451968, + "relativeCreated": 38.244009017944336, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -2153,8 +2285,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743878, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366999, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2171,8 +2303,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743794, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366916, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2182,14 +2314,14 @@ "lineno": 22, "message": "Result (CSP-Frame): ()", "module": "test", - "msecs": 743.7939643859863, + "msecs": 366.9159412384033, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.37203025817871, - "thread": 139832911451968, + "relativeCreated": 38.324832916259766, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2198,8 +2330,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743834, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366956, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2209,61 +2341,61 @@ "lineno": 26, "message": "Expectation (CSP-Frame): result = ()", "module": "test", - "msecs": 743.8340187072754, + "msecs": 366.9559955596924, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.41208457946777, - "thread": 139832911451968, + "relativeCreated": 38.36488723754883, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 743.8778877258301, + "msecs": 366.99891090393066, "msg": "CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.45595359802246, - "thread": 139832911451968, + "relativeCreated": 38.40780258178711, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 + "time_consumption": 4.291534423828125e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00021195411682128906, - "time_finished": "2019-12-30 18:01:07,743", - "time_start": "2019-12-30 18:01:07,743" + "time_consumption": 0.00024199485778808594, + "time_finished": "2020-02-03 18:42:08,366", + "time_start": "2020-02-03 18:42:08,366" }, "_NpOWgI9tEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747365, + "asctime": "2020-02-03 18:42:08,371", + "created": 1580751728.371287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 43, + "lineno": 49, "message": "_NpOWgI9tEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 747.3649978637695, + "msecs": 371.28710746765137, "msg": "_NpOWgI9tEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.943063735961914, + "relativeCreated": 42.69599914550781, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.74743, + "asctime": "2020-02-03 18:42:08,371", + "created": 1580751728.371372, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -2274,14 +2406,14 @@ "message": "Processing wrong data (list)", "module": "test_stp", "moduleLogger": [], - "msecs": 747.4300861358643, + "msecs": 371.3719844818115, "msg": "Processing wrong data (list)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.00815200805664, - "thread": 139832911451968, + "relativeCreated": 42.78087615966797, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -2290,8 +2422,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747571, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.372569, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2308,8 +2440,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.74749, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.37238, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2319,14 +2451,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 747.4899291992188, + "msecs": 372.38001823425293, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.06799507141113, - "thread": 139832911451968, + "relativeCreated": 43.788909912109375, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2335,8 +2467,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.74753, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.372486, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2346,35 +2478,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 747.5299835205078, + "msecs": 372.4861145019531, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.108049392700195, - "thread": 139832911451968, + "relativeCreated": 43.89500617980957, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 747.5709915161133, + "msecs": 372.56908416748047, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.149057388305664, - "thread": 139832911451968, + "relativeCreated": 43.977975845336914, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 8.296966552734375e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747706, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.372844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2391,8 +2523,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747627, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.372692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2402,14 +2534,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 747.6270198822021, + "msecs": 372.6921081542969, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.20508575439453, - "thread": 139832911451968, + "relativeCreated": 44.10099983215332, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2418,8 +2550,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747668, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.372767, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2429,32 +2561,32 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 747.6680278778076, + "msecs": 372.76697158813477, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.24609375, - "thread": 139832911451968, + "relativeCreated": 44.17586326599121, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 747.7059364318848, + "msecs": 372.84398078918457, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.28400230407715, - "thread": 139832911451968, + "relativeCreated": 44.252872467041016, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 7.700920104980469e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.74776, + "asctime": "2020-02-03 18:42:08,372", + "created": 1580751728.37295, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -2465,14 +2597,14 @@ "message": "Processing wrong data (int)", "module": "test_stp", "moduleLogger": [], - "msecs": 747.7600574493408, + "msecs": 372.95007705688477, "msg": "Processing wrong data (int)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.3381233215332, - "thread": 139832911451968, + "relativeCreated": 44.35896873474121, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -2481,8 +2613,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747903, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373239, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2499,8 +2631,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.74782, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373078, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2510,14 +2642,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 747.8199005126953, + "msecs": 373.0781078338623, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.397966384887695, - "thread": 139832911451968, + "relativeCreated": 44.48699951171875, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2526,8 +2658,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747862, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2537,35 +2669,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 747.8621006011963, + "msecs": 373.15893173217773, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.44016647338867, - "thread": 139832911451968, + "relativeCreated": 44.56782341003418, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 747.9031085968018, + "msecs": 373.23904037475586, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.48117446899414, - "thread": 139832911451968, + "relativeCreated": 44.647932052612305, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 8.0108642578125e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748039, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373519, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2582,8 +2714,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,747", - "created": 1577725267.747962, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2593,14 +2725,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 747.9619979858398, + "msecs": 373.35801124572754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.54006385803223, - "thread": 139832911451968, + "relativeCreated": 44.766902923583984, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2609,8 +2741,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748001, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2620,32 +2752,32 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 748.0010986328125, + "msecs": 373.4478950500488, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.57916450500488, - "thread": 139832911451968, + "relativeCreated": 44.85678672790527, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 748.0390071868896, + "msecs": 373.5189437866211, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.61707305908203, - "thread": 139832911451968, + "relativeCreated": 44.92783546447754, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 7.104873657226562e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748096, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373619, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -2656,14 +2788,14 @@ "message": "Processing wrong data (unicode)", "module": "test_stp", "moduleLogger": [], - "msecs": 748.0959892272949, + "msecs": 373.61907958984375, "msg": "Processing wrong data (unicode)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.674055099487305, - "thread": 139832911451968, + "relativeCreated": 45.027971267700195, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -2672,8 +2804,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748237, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2690,8 +2822,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.74816, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373734, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2701,14 +2833,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 748.1598854064941, + "msecs": 373.7339973449707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.73795127868652, - "thread": 139832911451968, + "relativeCreated": 45.14288902282715, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2717,8 +2849,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748198, + "asctime": "2020-02-03 18:42:08,373", + "created": 1580751728.373804, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2728,35 +2860,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 748.1980323791504, + "msecs": 373.80409240722656, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.77609825134277, - "thread": 139832911451968, + "relativeCreated": 45.21298408508301, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 748.236894607544, + "msecs": 373.8870620727539, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.81496047973633, - "thread": 139832911451968, + "relativeCreated": 45.29595375061035, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 8.296966552734375e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748369, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2773,8 +2905,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748294, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2784,14 +2916,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 748.2941150665283, + "msecs": 374.00007247924805, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.8721809387207, - "thread": 139832911451968, + "relativeCreated": 45.40896415710449, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2800,8 +2932,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748331, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374073, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2811,63 +2943,63 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 748.3310699462891, + "msecs": 374.0730285644531, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.909135818481445, - "thread": 139832911451968, + "relativeCreated": 45.48192024230957, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 748.3689785003662, + "msecs": 374.1469383239746, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 52.947044372558594, - "thread": 139832911451968, + "relativeCreated": 45.555830001831055, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 7.390975952148438e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0010039806365966797, - "time_finished": "2019-12-30 18:01:07,748", - "time_start": "2019-12-30 18:01:07,747" + "time_consumption": 0.002859830856323242, + "time_finished": "2020-02-03 18:42:08,374", + "time_start": "2020-02-03 18:42:08,371" }, "_QjJiIIwZEem5qYOdmXl77A": { "args": null, - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743982, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367111, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 35, + "lineno": 41, "message": "_QjJiIIwZEem5qYOdmXl77A", "module": "__init__", "moduleLogger": [], - "msecs": 743.9820766448975, + "msecs": 367.1109676361084, "msg": "_QjJiIIwZEem5qYOdmXl77A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.560142517089844, + "relativeCreated": 38.519859313964844, "testcaseLogger": [ { "args": [ "':testframe: for csp\\n'" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.74418, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367308, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -2883,8 +3015,8 @@ "CSP:", "(10): 3a 74 65 73 74 66 72 61 6d 65" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.74407, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.3672, "exc_info": null, "exc_text": null, "filename": "csp.py", @@ -2894,14 +3026,14 @@ "lineno": 65, "message": "CSP: Leaving data in buffer (to be processed next time): (10): 3a 74 65 73 74 66 72 61 6d 65", "module": "csp", - "msecs": 744.0700531005859, + "msecs": 367.1998977661133, "msg": "%s Leaving data in buffer (to be processed next time): %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/csp.py", - "process": 14675, + "pathname": "src/stringtools/csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.64811897277832, - "thread": 139832911451968, + "relativeCreated": 38.60878944396973, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2909,8 +3041,8 @@ "CSP:", "(19): 3a 74 65 73 74 66 72 61 6d 65 3a 20 66 6f 72 20 63 73 70" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744141, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367269, "exc_info": null, "exc_text": null, "filename": "csp.py", @@ -2920,25 +3052,25 @@ "lineno": 67, "message": "CSP: message identified - (19): 3a 74 65 73 74 66 72 61 6d 65 3a 20 66 6f 72 20 63 73 70", "module": "csp", - "msecs": 744.1411018371582, + "msecs": 367.26903915405273, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/csp.py", - "process": 14675, + "pathname": "src/stringtools/csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.719167709350586, - "thread": 139832911451968, + "relativeCreated": 38.67793083190918, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 744.1799640655518, + "msecs": 367.3079013824463, "msg": "Processing testframe: \"%s\" in two snippets", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.75802993774414, - "thread": 139832911451968, + "relativeCreated": 38.716793060302734, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 3.886222839355469e-05 }, @@ -2947,8 +3079,8 @@ "[]", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744333, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367466, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2965,8 +3097,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744245, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367378, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2976,14 +3108,14 @@ "lineno": 22, "message": "Result (First processed CSP-Snippet): [ ] ()", "module": "test", - "msecs": 744.2450523376465, + "msecs": 367.37799644470215, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.82311820983887, - "thread": 139832911451968, + "relativeCreated": 38.786888122558594, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -2992,8 +3124,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744285, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367418, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3003,25 +3135,25 @@ "lineno": 26, "message": "Expectation (First processed CSP-Snippet): result = [ ] ()", "module": "test", - "msecs": 744.2851066589355, + "msecs": 367.4180507659912, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.86317253112793, - "thread": 139832911451968, + "relativeCreated": 38.826942443847656, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 744.333028793335, + "msecs": 367.4659729003906, "msg": "First processed CSP-Snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.911094665527344, - "thread": 139832911451968, + "relativeCreated": 38.87486457824707, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 4.792213439941406e-05 }, @@ -3030,8 +3162,8 @@ "[':testframe: for csp']", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744482, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367619, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3048,8 +3180,8 @@ "[ ':testframe: for csp' ]", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744396, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367532, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3059,14 +3191,14 @@ "lineno": 22, "message": "Result (Final processed CSP-Frame): [ ':testframe: for csp' ] ()", "module": "test", - "msecs": 744.3959712982178, + "msecs": 367.53201484680176, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.974037170410156, - "thread": 139832911451968, + "relativeCreated": 38.9409065246582, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3075,8 +3207,8 @@ "[ ':testframe: for csp' ]", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744435, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367572, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3086,64 +3218,64 @@ "lineno": 26, "message": "Expectation (Final processed CSP-Frame): result = [ ':testframe: for csp' ] ()", "module": "test", - "msecs": 744.4350719451904, + "msecs": 367.5720691680908, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.01313781738281, - "thread": 139832911451968, + "relativeCreated": 38.980960845947266, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 744.4820404052734, + "msecs": 367.6190376281738, "msg": "Final processed CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.06010627746582, - "thread": 139832911451968, + "relativeCreated": 39.02792930603027, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 4.696846008300781e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0004999637603759766, - "time_finished": "2019-12-30 18:01:07,744", - "time_start": "2019-12-30 18:01:07,743" + "time_consumption": 0.0005080699920654297, + "time_finished": "2020-02-03 18:42:08,367", + "time_start": "2020-02-03 18:42:08,367" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2019-12-30 18:01:07,740", - "created": 1577725267.740599, + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363679, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 23, + "lineno": 29, "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 740.5989170074463, + "msecs": 363.6789321899414, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.17698287963867, + "relativeCreated": 35.08782386779785, "testcaseLogger": [ { "args": [ "de ad be ef", "" ], - "asctime": "2019-12-30 18:01:07,740", - "created": 1577725267.740789, + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363759, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3154,21 +3286,21 @@ "message": "Checking test pattern de ad be ef ().", "module": "test_hexlify", "moduleLogger": [], - "msecs": 740.7889366149902, + "msecs": 363.75904083251953, "msg": "Checking test pattern %s (%s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.36700248718262, - "thread": 139832911451968, + "relativeCreated": 35.16793251037598, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741184, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364132, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3183,8 +3315,8 @@ "args": [ "(4): de ad be ef" ], - "asctime": "2019-12-30 18:01:07,740", - "created": 1577725267.740866, + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363833, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3194,22 +3326,22 @@ "lineno": 29, "message": "Return value of hexlify is (4): de ad be ef", "module": "test_hexlify", - "msecs": 740.86594581604, + "msecs": 363.832950592041, "msg": "Return value of hexlify is %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.44401168823242, - "thread": 139832911451968, + "relativeCreated": 35.24184226989746, + "thread": 139938129311552, "threadName": "MainThread" }, { "args": [ "(4): DE AD BE EF" ], - "asctime": "2019-12-30 18:01:07,740", - "created": 1577725267.74098, + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.36393, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3219,14 +3351,14 @@ "lineno": 31, "message": "Using upper string for comparison: (4): DE AD BE EF", "module": "test_hexlify", - "msecs": 740.9799098968506, + "msecs": 363.92998695373535, "msg": "Using upper string for comparison: %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.55797576904297, - "thread": 139832911451968, + "relativeCreated": 35.3388786315918, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3234,8 +3366,8 @@ "DE", "(4): DE AD BE EF" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741031, + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363977, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3245,14 +3377,14 @@ "lineno": 41, "message": "\"DE\" found in \"(4): DE AD BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 741.0309314727783, + "msecs": 363.97695541381836, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.6089973449707, - "thread": 139832911451968, + "relativeCreated": 35.385847091674805, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3260,8 +3392,8 @@ "AD", "AD BE EF" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741072, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364016, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3271,14 +3403,14 @@ "lineno": 41, "message": "\"AD\" found in \"AD BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 741.0719394683838, + "msecs": 364.016056060791, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.65000534057617, - "thread": 139832911451968, + "relativeCreated": 35.42494773864746, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3286,8 +3418,8 @@ "BE", "BE EF" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741109, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364053, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3297,14 +3429,14 @@ "lineno": 41, "message": "\"BE\" found in \"BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 741.1088943481445, + "msecs": 364.05301094055176, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.686960220336914, - "thread": 139832911451968, + "relativeCreated": 35.4619026184082, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3312,8 +3444,8 @@ "EF", "EF" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741148, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364096, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -3323,63 +3455,63 @@ "lineno": 41, "message": "\"EF\" found in \"EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 741.1479949951172, + "msecs": 364.09592628479004, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.72606086730957, - "thread": 139832911451968, + "relativeCreated": 35.504817962646484, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 741.1839962005615, + "msecs": 364.1319274902344, "msg": "Pattern included all relevant information in the correct order.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.762062072753906, - "thread": 139832911451968, + "relativeCreated": 35.54081916809082, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 3.600120544433594e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0005850791931152344, - "time_finished": "2019-12-30 18:01:07,741", - "time_start": "2019-12-30 18:01:07,740" + "time_consumption": 0.00045299530029296875, + "time_finished": "2020-02-03 18:42:08,364", + "time_start": "2020-02-03 18:42:08,363" }, "_Y_h3gH5CEemxr4bbKXhxkg": { "args": null, - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743354, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 33, + "lineno": 39, "message": "_Y_h3gH5CEemxr4bbKXhxkg", "module": "__init__", "moduleLogger": [], - "msecs": 743.354082107544, + "msecs": 366.426944732666, "msg": "_Y_h3gH5CEemxr4bbKXhxkg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.93214797973633, + "relativeCreated": 37.83583641052246, "testcaseLogger": [ { "args": [ "':testframe: for csp'" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.74342, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366498, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -3390,14 +3522,14 @@ "message": "Creating testframe for \"':testframe: for csp'\"", "module": "test_csp", "moduleLogger": [], - "msecs": 743.419885635376, + "msecs": 366.4979934692383, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.99795150756836, - "thread": 139832911451968, + "relativeCreated": 37.90688514709473, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -3406,8 +3538,8 @@ "':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743566, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366648, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3424,8 +3556,8 @@ "':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743486, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366566, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3435,14 +3567,14 @@ "lineno": 22, "message": "Result (CSP-Frame): ':testframe: for csp\\n' ()", "module": "test", - "msecs": 743.4859275817871, + "msecs": 366.5659427642822, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.06399345397949, - "thread": 139832911451968, + "relativeCreated": 37.97483444213867, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3451,8 +3583,8 @@ "':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743525, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366606, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3462,61 +3594,61 @@ "lineno": 26, "message": "Expectation (CSP-Frame): result = ':testframe: for csp\\n' ()", "module": "test", - "msecs": 743.5250282287598, + "msecs": 366.6059970855713, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.10309410095215, - "thread": 139832911451968, + "relativeCreated": 38.014888763427734, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 743.5660362243652, + "msecs": 366.64795875549316, "msg": "CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 48.14410209655762, - "thread": 139832911451968, + "relativeCreated": 38.05685043334961, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 4.1961669921875e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00021195411682128906, - "time_finished": "2019-12-30 18:01:07,743", - "time_start": "2019-12-30 18:01:07,743" + "time_consumption": 0.00022101402282714844, + "time_finished": "2020-02-03 18:42:08,366", + "time_start": "2020-02-03 18:42:08,366" }, "_ZhyRAI9OEemAMMFgxXT6lA": { "args": null, - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744582, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367724, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 36, + "lineno": 42, "message": "_ZhyRAI9OEemAMMFgxXT6lA", "module": "__init__", "moduleLogger": [], - "msecs": 744.581937789917, + "msecs": 367.7239418029785, "msg": "_ZhyRAI9OEemAMMFgxXT6lA", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.160003662109375, + "relativeCreated": 39.13283348083496, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744645, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367793, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -3527,14 +3659,14 @@ "message": "Processing wrong data (list)", "module": "test_csp", "moduleLogger": [], - "msecs": 744.6451187133789, + "msecs": 367.79308319091797, "msg": "Processing wrong data (list)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.22318458557129, - "thread": 139832911451968, + "relativeCreated": 39.201974868774414, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -3543,8 +3675,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744791, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367946, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3561,8 +3693,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744711, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367861, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3572,14 +3704,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 744.7109222412109, + "msecs": 367.8610324859619, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.28898811340332, - "thread": 139832911451968, + "relativeCreated": 39.26992416381836, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3588,8 +3720,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744752, + "asctime": "2020-02-03 18:42:08,367", + "created": 1580751728.367905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3599,35 +3731,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 744.7519302368164, + "msecs": 367.9049015045166, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.32999610900879, - "thread": 139832911451968, + "relativeCreated": 39.31379318237305, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 744.7910308837891, + "msecs": 367.94590950012207, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.369096755981445, - "thread": 139832911451968, + "relativeCreated": 39.354801177978516, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 4.100799560546875e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744925, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3644,8 +3776,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.74485, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3655,14 +3787,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 744.8499202728271, + "msecs": 368.0078983306885, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.42798614501953, - "thread": 139832911451968, + "relativeCreated": 39.41679000854492, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3671,8 +3803,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744887, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368049, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3682,32 +3814,32 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 744.887113571167, + "msecs": 368.04890632629395, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.465179443359375, - "thread": 139832911451968, + "relativeCreated": 39.45779800415039, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 744.9250221252441, + "msecs": 368.0880069732666, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.50308799743652, - "thread": 139832911451968, + "relativeCreated": 39.49689865112305, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.790855407714844e-05 + "time_consumption": 3.910064697265625e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,744", - "created": 1577725267.744981, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368145, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -3718,14 +3850,14 @@ "message": "Processing wrong data (int)", "module": "test_csp", "moduleLogger": [], - "msecs": 744.981050491333, + "msecs": 368.1449890136719, "msg": "Processing wrong data (int)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.55911636352539, - "thread": 139832911451968, + "relativeCreated": 39.55388069152832, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -3734,8 +3866,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745121, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368363, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3752,8 +3884,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745043, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368227, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3763,14 +3895,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 745.0430393218994, + "msecs": 368.2270050048828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.6211051940918, - "thread": 139832911451968, + "relativeCreated": 39.63589668273926, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3779,8 +3911,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745082, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3790,35 +3922,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 745.081901550293, + "msecs": 368.29400062561035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.65996742248535, - "thread": 139832911451968, + "relativeCreated": 39.7028923034668, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 745.1210021972656, + "msecs": 368.3629035949707, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.69906806945801, - "thread": 139832911451968, + "relativeCreated": 39.77179527282715, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 6.890296936035156e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745257, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3835,8 +3967,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745182, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3846,14 +3978,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 745.1820373535156, + "msecs": 368.4680461883545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.76010322570801, - "thread": 139832911451968, + "relativeCreated": 39.87693786621094, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3862,8 +3994,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.74522, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368535, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3873,32 +4005,32 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 745.2199459075928, + "msecs": 368.53504180908203, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.798011779785156, - "thread": 139832911451968, + "relativeCreated": 39.94393348693848, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 745.2569007873535, + "msecs": 368.59893798828125, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.8349666595459, - "thread": 139832911451968, + "relativeCreated": 40.007829666137695, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.695487976074219e-05 + "time_consumption": 6.389617919921875e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745313, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368705, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -3909,14 +4041,14 @@ "message": "Processing wrong data (unicode)", "module": "test_csp", "moduleLogger": [], - "msecs": 745.3129291534424, + "msecs": 368.70503425598145, "msg": "Processing wrong data (unicode)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14675, + "pathname": "src/tests/test_csp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.890995025634766, - "thread": 139832911451968, + "relativeCreated": 40.11392593383789, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -3925,8 +4057,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745483, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3943,8 +4075,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745374, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.36882, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3954,14 +4086,14 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 745.3739643096924, + "msecs": 368.8199520111084, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.952030181884766, - "thread": 139832911451968, + "relativeCreated": 40.228843688964844, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -3970,8 +4102,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745412, + "asctime": "2020-02-03 18:42:08,368", + "created": 1580751728.368894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3981,35 +4113,35 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 745.4121112823486, + "msecs": 368.894100189209, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 49.990177154541016, - "thread": 139832911451968, + "relativeCreated": 40.30299186706543, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 745.4829216003418, + "msecs": 368.98303031921387, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.06098747253418, - "thread": 139832911451968, + "relativeCreated": 40.39192199707031, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.081031799316406e-05 + "time_consumption": 8.893013000488281e-05 }, { "args": [ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745624, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4026,8 +4158,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745546, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369057, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4037,14 +4169,14 @@ "lineno": 22, "message": "Result (Buffer still empty): '' ()", "module": "test", - "msecs": 745.5461025238037, + "msecs": 369.05694007873535, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.124168395996094, - "thread": 139832911451968, + "relativeCreated": 40.4658317565918, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4053,8 +4185,8 @@ "''", "" ], - "asctime": "2019-12-30 18:01:07,745", - "created": 1577725267.745585, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369098, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4064,61 +4196,1169 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = '' ()", "module": "test", - "msecs": 745.5849647521973, + "msecs": 369.0979480743408, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.16303062438965, - "thread": 139832911451968, + "relativeCreated": 40.506839752197266, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 745.6240653991699, + "msecs": 369.1420555114746, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.202131271362305, - "thread": 139832911451968, + "relativeCreated": 40.550947189331055, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 4.410743713378906e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0010421276092529297, - "time_finished": "2019-12-30 18:01:07,745", - "time_start": "2019-12-30 18:01:07,744" + "time_consumption": 0.0014181137084960938, + "time_finished": "2020-02-03 18:42:08,369", + "time_start": "2020-02-03 18:42:08,367" }, - "_dpJzwCcUEeqsHsnJQYCN8Q": { + "_dB5IoEaTEeq5fPlXIeQCXQ": { "args": null, - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751503, + "asctime": "2020-02-03 18:42:08,358", + "created": 1580751728.3589, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 47, + "lineno": 24, + "message": "_dB5IoEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 358.9000701904297, + "msg": "_dB5IoEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.308961868286133, + "testcaseLogger": [ + { + "args": [ + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359224, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1.17e-10 is correct (Content '117p' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1.17e-10", + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.35911, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1.17e-10): '117p' ()", + "module": "test", + "msecs": 359.11011695861816, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.51900863647461, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1.17e-10", + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359175, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1.17e-10): result = '117p' ()", + "module": "test", + "msecs": 359.1749668121338, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.583858489990234, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 359.2240810394287, + "msg": "Physical representation for 1.17e-10 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.632972717285156, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.9114227294921875e-05 + }, + { + "args": [ + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359401, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 5.4e-08 is correct (Content '54n' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 5.4e-08", + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359315, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 5.4e-08): '54n' ()", + "module": "test", + "msecs": 359.3149185180664, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.72381019592285, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 5.4e-08", + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359359, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 5.4e-08): result = '54n' ()", + "module": "test", + "msecs": 359.3590259552002, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.76791763305664, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 359.40098762512207, + "msg": "Physical representation for 5.4e-08 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.809879302978516, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.1961669921875e-05 + }, + { + "args": [ + "'25.3\\xc2\\xb5'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359562, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 2.53e-05 is correct (Content '25.3\\xc2\\xb5' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 2.53e-05", + "'25.3\\xc2\\xb5'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359477, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 2.53e-05): '25.3\\xc2\\xb5' ()", + "module": "test", + "msecs": 359.47704315185547, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.885934829711914, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 2.53e-05", + "'25.3\\xc2\\xb5'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359519, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 2.53e-05): result = '25.3\\xc2\\xb5' ()", + "module": "test", + "msecs": 359.51900482177734, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.92789649963379, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 359.5619201660156, + "msg": "Physical representation for 2.53e-05 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 30.97081184387207, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.291534423828125e-05 + }, + { + "args": [ + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359715, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 0.1 is correct (Content '100m' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 0.1", + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359634, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 0.1): '100m' ()", + "module": "test", + "msecs": 359.6339225769043, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.042814254760742, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 0.1", + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359676, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 0.1): result = '100m' ()", + "module": "test", + "msecs": 359.6758842468262, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.084775924682617, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 359.7149848937988, + "msg": "Physical representation for 0.1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.123876571655273, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.910064697265625e-05 + }, + { + "args": [ + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359864, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1 is correct (Content '1' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1", + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359785, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1): '1' ()", + "module": "test", + "msecs": 359.7850799560547, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.193971633911133, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1", + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359824, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1): result = '1' ()", + "module": "test", + "msecs": 359.82394218444824, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.232833862304688, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 359.8639965057373, + "msg": "Physical representation for 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.27288818359375, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + }, + { + "args": [ + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360014, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1000 is correct (Content '1k' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1000", + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359937, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1000): '1k' ()", + "module": "test", + "msecs": 359.9369525909424, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.345844268798828, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1000", + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,359", + "created": 1580751728.359976, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1000): result = '1k' ()", + "module": "test", + "msecs": 359.97605323791504, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.384944915771484, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.0139617919922, + "msg": "Physical representation for 1000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.422853469848633, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.790855407714844e-05 + }, + { + "args": [ + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360167, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1005001 is correct (Content '1.01M' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1005001", + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.36009, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1005001): '1.01M' ()", + "module": "test", + "msecs": 360.0900173187256, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.49890899658203, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1005001", + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360129, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1005001): result = '1.01M' ()", + "module": "test", + "msecs": 360.12911796569824, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.538009643554688, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.1670265197754, + "msg": "Physical representation for 1005001 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.575918197631836, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.790855407714844e-05 + }, + { + "args": [ + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360322, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1004000000 is correct (Content '1G' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1004000000", + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360244, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1004000000): '1G' ()", + "module": "test", + "msecs": 360.2440357208252, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.65292739868164, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1004000000", + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360283, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1004000000): result = '1G' ()", + "module": "test", + "msecs": 360.28289794921875, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.691789627075195, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.3219985961914, + "msg": "Physical representation for 1004000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.73089027404785, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.910064697265625e-05 + }, + { + "args": [ + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.36047, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1003000000000 is correct (Content '1T' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1003000000000", + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360395, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1003000000000): '1T' ()", + "module": "test", + "msecs": 360.3949546813965, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.80384635925293, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1003000000000", + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360433, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1003000000000): result = '1T' ()", + "module": "test", + "msecs": 360.43310165405273, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.84199333190918, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.4700565338135, + "msg": "Physical representation for 1003000000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.878948211669922, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.695487976074219e-05 + }, + { + "args": [ + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360622, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 10000000000000000 is correct (Content '10P' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 10000000000000000", + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360545, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 10000000000000000): '10P' ()", + "module": "test", + "msecs": 360.54491996765137, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.953811645507812, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 10000000000000000", + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360584, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 10000000000000000): result = '10P' ()", + "module": "test", + "msecs": 360.584020614624, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 31.99291229248047, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.6219291687012, + "msg": "Physical representation for 10000000000000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.03082084655762, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.790855407714844e-05 + }, + { + "args": [ + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360766, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 17.17 is correct (Content '17.17' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 17.17", + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360691, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 17.17): '17.17' ()", + "module": "test", + "msecs": 360.6910705566406, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.09996223449707, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 17.17", + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360729, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 17.17): result = '17.17' ()", + "module": "test", + "msecs": 360.7289791107178, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.13787078857422, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.7659339904785, + "msg": "Physical representation for 17.17 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.17482566833496, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.695487976074219e-05 + }, + { + "args": [ + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360917, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 117000 is correct (Content '117k' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 117000", + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360841, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 117000): '117k' ()", + "module": "test", + "msecs": 360.8410358428955, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.24992752075195, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 117000", + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360879, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 117000): result = '117k' ()", + "module": "test", + "msecs": 360.87894439697266, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.2878360748291, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 360.9170913696289, + "msg": "Physical representation for 117000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.32598304748535, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.814697265625e-05 + }, + { + "args": [ + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.36106, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 117.17 is correct (Content '117.2' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 117.17", + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,360", + "created": 1580751728.360984, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 117.17): '117.2' ()", + "module": "test", + "msecs": 360.98408699035645, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.39297866821289, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 117.17", + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361022, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 117.17): result = '117.2' ()", + "module": "test", + "msecs": 361.0219955444336, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.43088722229004, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.05990409851074, + "msg": "Physical representation for 117.17 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.46879577636719, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.790855407714844e-05 + } + ], + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 0.0021598339080810547, + "time_finished": "2020-02-03 18:42:08,361", + "time_start": "2020-02-03 18:42:08,358" + }, + "_dpJzwCcUEeqsHsnJQYCN8Q": { + "args": null, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377447, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 53, "message": "_dpJzwCcUEeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 751.5029907226562, + "msecs": 377.44688987731934, "msg": "_dpJzwCcUEeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.08105659484863, + "relativeCreated": 48.85578155517578, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752019, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.37795, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -4133,8 +5373,8 @@ "args": [ "': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 751.629114151001, + "msecs": 377.6431083679199, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.20718002319336, - "thread": 139832911451968, + "relativeCreated": 49.05200004577637, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4186,8 +5426,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751676, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377709, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4197,14 +5437,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 751.676082611084, + "msecs": 377.70891189575195, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.25414848327637, - "thread": 139832911451968, + "relativeCreated": 49.1178035736084, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4212,8 +5452,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751742, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377775, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4223,14 +5463,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 751.741886138916, + "msecs": 377.7749538421631, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.3199520111084, - "thread": 139832911451968, + "relativeCreated": 49.18384552001953, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4238,8 +5478,8 @@ "STP:", 100 ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751823, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377834, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4249,14 +5489,14 @@ "lineno": 137, "message": "STP: data (64) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 751.8229484558105, + "msecs": 377.8340816497803, "msg": "%s data (%02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.40101432800293, - "thread": 139832911451968, + "relativeCreated": 49.24297332763672, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4264,8 +5504,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751935, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377899, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4275,35 +5515,35 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 751.9350051879883, + "msecs": 377.8989315032959, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.513071060180664, - "thread": 139832911451968, + "relativeCreated": 49.307823181152344, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 752.018928527832, + "msecs": 377.94995307922363, "msg": "Processing data with an insufficient end pattern.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.596994400024414, - "thread": 139832911451968, + "relativeCreated": 49.35884475708008, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.392333984375e-05 + "time_consumption": 5.1021575927734375e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752314, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378157, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4320,8 +5560,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752147, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378041, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4331,14 +5571,14 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync and data again after start of frame): [ [ ] ] ()", "module": "test", - "msecs": 752.1469593048096, + "msecs": 378.04102897644043, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.72502517700195, - "thread": 139832911451968, + "relativeCreated": 49.449920654296875, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4347,8 +5587,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.75222, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.37809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4358,35 +5598,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync and data again after start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 752.2199153900146, + "msecs": 378.08990478515625, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.79798126220703, - "thread": 139832911451968, + "relativeCreated": 49.498796463012695, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 752.3140907287598, + "msecs": 378.1569004058838, "msg": "Return value list if processing data_sync and data again after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 56.89215660095215, - "thread": 139832911451968, + "relativeCreated": 49.565792083740234, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 9.417533874511719e-05 + "time_consumption": 6.699562072753906e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752586, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378679, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4403,8 +5643,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752433, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378598, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4414,14 +5654,14 @@ "lineno": 22, "message": "Result (State after processing data_sync and data again after start of frame): 0 ()", "module": "test", - "msecs": 752.4330615997314, + "msecs": 378.5979747772217, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.01112747192383, - "thread": 139832911451968, + "relativeCreated": 50.006866455078125, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4430,8 +5670,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752504, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378639, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4441,35 +5681,35 @@ "lineno": 26, "message": "Expectation (State after processing data_sync and data again after start of frame): result = 0 ()", "module": "test", - "msecs": 752.5041103363037, + "msecs": 378.63898277282715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.082176208496094, - "thread": 139832911451968, + "relativeCreated": 50.047874450683594, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 752.5858879089355, + "msecs": 378.6790370941162, "msg": "State after processing data_sync and data again after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.16395378112793, - "thread": 139832911451968, + "relativeCreated": 50.087928771972656, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.177757263183594e-05 + "time_consumption": 4.00543212890625e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752902, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378821, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4486,8 +5726,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752713, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378744, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4497,14 +5737,14 @@ "lineno": 22, "message": "Result (Buffer size after processing data with insufficient end pattern): 0 ()", "module": "test", - "msecs": 752.7129650115967, + "msecs": 378.74388694763184, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.29103088378906, - "thread": 139832911451968, + "relativeCreated": 50.15277862548828, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4513,8 +5753,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,752", - "created": 1577725267.752786, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378782, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4524,32 +5764,32 @@ "lineno": 26, "message": "Expectation (Buffer size after processing data with insufficient end pattern): result = 0 ()", "module": "test", - "msecs": 752.7859210968018, + "msecs": 378.7820339202881, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.36398696899414, - "thread": 139832911451968, + "relativeCreated": 50.19092559814453, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 752.9020309448242, + "msecs": 378.82089614868164, "msg": "Buffer size after processing data with insufficient end pattern is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 57.4800968170166, - "thread": 139832911451968, + "relativeCreated": 50.229787826538086, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00011610984802246094 + "time_consumption": 3.886222839355469e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.754453, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379157, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -4564,8 +5804,8 @@ "args": [ "': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 753.64089012146, + "msecs": 378.9379596710205, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 58.218955993652344, - "thread": 139832911451968, + "relativeCreated": 50.34685134887695, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4617,8 +5857,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,753", - "created": 1577725267.753805, + "asctime": "2020-02-03 18:42:08,378", + "created": 1580751728.378978, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4628,14 +5868,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 753.8049221038818, + "msecs": 378.97801399230957, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 58.38298797607422, - "thread": 139832911451968, + "relativeCreated": 50.386905670166016, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4643,8 +5883,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,753", - "created": 1577725267.753966, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379029, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4654,14 +5894,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 753.9660930633545, + "msecs": 379.0290355682373, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 58.544158935546875, - "thread": 139832911451968, + "relativeCreated": 50.43792724609375, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4670,8 +5910,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.754101, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379069, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4681,14 +5921,14 @@ "lineno": 119, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 754.101037979126, + "msecs": 379.06908988952637, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 58.67910385131836, - "thread": 139832911451968, + "relativeCreated": 50.47798156738281, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4696,8 +5936,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.754256, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379117, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -4707,35 +5947,35 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 754.256010055542, + "msecs": 379.1170120239258, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 58.834075927734375, - "thread": 139832911451968, + "relativeCreated": 50.52590370178223, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 754.4529438018799, + "msecs": 379.15706634521484, "msg": "Processing data with an insufficient end pattern (start pattern instead of end pattern).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.031009674072266, - "thread": 139832911451968, + "relativeCreated": 50.56595802307129, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00019693374633789062 + "time_consumption": 4.00543212890625e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.75497, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4752,8 +5992,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.754699, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379226, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4763,14 +6003,14 @@ "lineno": 22, "message": "Result (Return value list if processing 2nd start of frame): [ [ ] ] ()", "module": "test", - "msecs": 754.6989917755127, + "msecs": 379.2259693145752, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.27705764770508, - "thread": 139832911451968, + "relativeCreated": 50.63486099243164, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4779,8 +6019,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,754", - "created": 1577725267.754765, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379267, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4790,35 +6030,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing 2nd start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 754.7650337219238, + "msecs": 379.26697731018066, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.34309959411621, - "thread": 139832911451968, + "relativeCreated": 50.67586898803711, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 754.9700736999512, + "msecs": 379.3210983276367, "msg": "Return value list if processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.548139572143555, - "thread": 139832911451968, + "relativeCreated": 50.729990005493164, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00020503997802734375 + "time_consumption": 5.412101745605469e-05 }, { "args": [ "3", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.7552, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379478, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4835,8 +6075,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755083, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4846,14 +6086,14 @@ "lineno": 22, "message": "Result (State after processing 2nd start of frame): 3 ()", "module": "test", - "msecs": 755.0830841064453, + "msecs": 379.38594818115234, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.661149978637695, - "thread": 139832911451968, + "relativeCreated": 50.79483985900879, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4862,8 +6102,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755134, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379426, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4873,35 +6113,35 @@ "lineno": 26, "message": "Expectation (State after processing 2nd start of frame): result = 3 ()", "module": "test", - "msecs": 755.134105682373, + "msecs": 379.4260025024414, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.71217155456543, - "thread": 139832911451968, + "relativeCreated": 50.83489418029785, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 755.1999092102051, + "msecs": 379.47797775268555, "msg": "State after processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.77797508239746, - "thread": 139832911451968, + "relativeCreated": 50.88686943054199, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 5.1975250244140625e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755461, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379616, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4918,8 +6158,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755325, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379539, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4929,14 +6169,14 @@ "lineno": 22, "message": "Result (Buffer size after processing 2nd start of frame): 0 ()", "module": "test", - "msecs": 755.3250789642334, + "msecs": 379.53901290893555, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.90314483642578, - "thread": 139832911451968, + "relativeCreated": 50.94790458679199, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -4945,8 +6185,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755387, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4956,32 +6196,32 @@ "lineno": 26, "message": "Expectation (Buffer size after processing 2nd start of frame): result = 0 ()", "module": "test", - "msecs": 755.3870677947998, + "msecs": 379.5759677886963, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 59.96513366699219, - "thread": 139832911451968, + "relativeCreated": 50.984859466552734, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 755.4609775543213, + "msecs": 379.61602210998535, "msg": "Buffer size after processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.03904342651367, - "thread": 139832911451968, + "relativeCreated": 51.0249137878418, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.390975952148438e-05 + "time_consumption": 4.00543212890625e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756084, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379946, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -4996,8 +6236,8 @@ "args": [ "': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 755.6920051574707, + "msecs": 379.7309398651123, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.270071029663086, - "thread": 139832911451968, + "relativeCreated": 51.13983154296875, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5049,8 +6289,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755772, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379773, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5060,14 +6300,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 755.7721138000488, + "msecs": 379.7729015350342, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.35017967224121, - "thread": 139832911451968, + "relativeCreated": 51.181793212890625, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5075,8 +6315,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755843, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379822, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5086,14 +6326,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 755.842924118042, + "msecs": 379.8220157623291, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.420989990234375, - "thread": 139832911451968, + "relativeCreated": 51.23090744018555, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5101,8 +6341,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755915, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379861, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5112,14 +6352,14 @@ "lineno": 133, "message": "STP: second data sync (3a) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 755.9149265289307, + "msecs": 379.86111640930176, "msg": "%s second data sync (%02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.49299240112305, - "thread": 139832911451968, + "relativeCreated": 51.2700080871582, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5127,8 +6367,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:07,755", - "created": 1577725267.755997, + "asctime": "2020-02-03 18:42:08,379", + "created": 1580751728.379905, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5138,35 +6378,35 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 755.9969425201416, + "msecs": 379.90498542785645, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.575008392333984, - "thread": 139832911451968, + "relativeCreated": 51.31387710571289, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 756.0839653015137, + "msecs": 379.9459934234619, "msg": "Processing data with an insufficient end pattern (two times sync instead of end pattern).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.662031173706055, - "thread": 139832911451968, + "relativeCreated": 51.35488510131836, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.702278137207031e-05 + "time_consumption": 4.100799560546875e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.75634, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5183,8 +6423,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756199, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380014, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5194,14 +6434,14 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync twice after start of frame): [ [ ] ] ()", "module": "test", - "msecs": 756.1988830566406, + "msecs": 380.01394271850586, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.77694892883301, - "thread": 139832911451968, + "relativeCreated": 51.422834396362305, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5210,8 +6450,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756262, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380054, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5221,35 +6461,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync twice after start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 756.2620639801025, + "msecs": 380.0539970397949, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.84012985229492, - "thread": 139832911451968, + "relativeCreated": 51.46288871765137, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 756.3400268554688, + "msecs": 380.10311126708984, "msg": "Return value list if processing data_sync twice after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 60.91809272766113, - "thread": 139832911451968, + "relativeCreated": 51.51200294494629, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.796287536621094e-05 + "time_consumption": 4.9114227294921875e-05 }, { "args": [ "1", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756621, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5266,8 +6506,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756492, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380168, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5277,14 +6517,14 @@ "lineno": 22, "message": "Result (State after processing data_sync twice after start of frame): 1 ()", "module": "test", - "msecs": 756.4918994903564, + "msecs": 380.16796112060547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.06996536254883, - "thread": 139832911451968, + "relativeCreated": 51.576852798461914, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5293,8 +6533,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756555, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380206, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5304,63 +6544,63 @@ "lineno": 26, "message": "Expectation (State after processing data_sync twice after start of frame): result = 1 ()", "module": "test", - "msecs": 756.5550804138184, + "msecs": 380.2061080932617, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.13314628601074, - "thread": 139832911451968, + "relativeCreated": 51.614999771118164, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 756.6208839416504, + "msecs": 380.2490234375, "msg": "State after processing data_sync twice after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.19894981384277, - "thread": 139832911451968, + "relativeCreated": 51.657915115356445, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 4.291534423828125e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.005117893218994141, - "time_finished": "2019-12-30 18:01:07,756", - "time_start": "2019-12-30 18:01:07,751" + "time_consumption": 0.002802133560180664, + "time_finished": "2020-02-03 18:42:08,380", + "time_start": "2020-02-03 18:42:08,377" }, "_fp-i0Hu8Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.74278, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365843, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 29, + "lineno": 35, "message": "_fp-i0Hu8Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 742.7799701690674, + "msecs": 365.8430576324463, "msg": "_fp-i0Hu8Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.358036041259766, + "relativeCreated": 37.251949310302734, "testcaseLogger": [ { "args": [ "(26): 1f 8b 08 00 34 e0 04 5d 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.74303, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.36605, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -5374,48 +6614,48 @@ { "args": [ 0.8666666666666667, - 4.792213439941406e-05 + 5.1975250244140625e-05 ], - "asctime": "2019-12-30 18:01:07,742", - "created": 1577725267.742947, + "asctime": "2020-02-03 18:42:08,365", + "created": 1580751728.365968, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_extract", "levelname": "DEBUG", "levelno": 10, - "lineno": 123, + "lineno": 178, "message": "GZIP: Finished to extract a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 742.9471015930176, + "msecs": 365.9679889678955, "msg": "GZIP: Finished to extract a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14675, + "pathname": "src/stringtools/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.52516746520996, - "thread": 139832911451968, + "relativeCreated": 37.37688064575195, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 743.0300712585449, + "msecs": 366.05000495910645, "msg": "Extracting stream: %s", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14675, + "pathname": "src/tests/test_gzip.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.608137130737305, - "thread": 139832911451968, + "relativeCreated": 37.45889663696289, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 8.20159912109375e-05 }, { "args": [ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743251, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366316, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5432,8 +6672,8 @@ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.743167, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5443,14 +6683,14 @@ "lineno": 22, "message": "Result (Extracted data): '(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff' ()", "module": "test", - "msecs": 743.1669235229492, + "msecs": 366.2281036376953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.7449893951416, - "thread": 139832911451968, + "relativeCreated": 37.63699531555176, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5459,8 +6699,8 @@ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:07,743", - "created": 1577725267.74321, + "asctime": "2020-02-03 18:42:08,366", + "created": 1580751728.366275, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5470,61 +6710,1115 @@ "lineno": 26, "message": "Expectation (Extracted data): result = '(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff' ()", "module": "test", - "msecs": 743.2100772857666, + "msecs": 366.2750720977783, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.788143157958984, - "thread": 139832911451968, + "relativeCreated": 37.683963775634766, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 743.2510852813721, + "msecs": 366.3160800933838, "msg": "Extracted data is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 47.82915115356445, - "thread": 139832911451968, + "relativeCreated": 37.724971771240234, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 4.100799560546875e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0004711151123046875, - "time_finished": "2019-12-30 18:01:07,743", - "time_start": "2019-12-30 18:01:07,742" + "time_consumption": 0.0004730224609375, + "time_finished": "2020-02-03 18:42:08,366", + "time_start": "2020-02-03 18:42:08,365" }, - "_n3BdUCcREeqsHsnJQYCN8Q": { + "_hpUmwEaTEeq5fPlXIeQCXQ": { "args": null, - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749883, + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.36118, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 46, + "lineno": 25, + "message": "_hpUmwEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 361.18006706237793, + "msg": "_hpUmwEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.588958740234375, + "testcaseLogger": [ + { + "args": [ + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361342, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 59 is correct (Content '00:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 59", + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361262, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 59): '00:59' ()", + "module": "test", + "msecs": 361.26208305358887, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.67097473144531, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 59", + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361302, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 59): result = '00:59' ()", + "module": "test", + "msecs": 361.3018989562988, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.71079063415527, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.3419532775879, + "msg": "Time representation for 59 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.750844955444336, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + }, + { + "args": [ + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361491, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 60 is correct (Content '01:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 60", + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361413, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 60): '01:00' ()", + "module": "test", + "msecs": 361.41300201416016, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.8218936920166, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 60", + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361451, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 60): result = '01:00' ()", + "module": "test", + "msecs": 361.4509105682373, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.85980224609375, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.49096488952637, + "msg": "Time representation for 60 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.89985656738281, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + }, + { + "args": [ + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361633, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 3599 is correct (Content '59:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 3599", + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361554, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 3599): '59:59' ()", + "module": "test", + "msecs": 361.5539073944092, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.962799072265625, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 3599", + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361591, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 3599): result = '59:59' ()", + "module": "test", + "msecs": 361.591100692749, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 32.99999237060547, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.6330623626709, + "msg": "Time representation for 3599 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.041954040527344, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.1961669921875e-05 + }, + { + "args": [ + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361782, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 3600 is correct (Content '01:00:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 3600", + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361703, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 3600): '01:00:00' ()", + "module": "test", + "msecs": 361.70291900634766, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.1118106842041, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 3600", + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361744, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 3600): result = '01:00:00' ()", + "module": "test", + "msecs": 361.7439270019531, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.15281867980957, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.7820739746094, + "msg": "Time representation for 3600 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.19096565246582, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.814697265625e-05 + }, + { + "args": [ + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361922, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86399 is correct (Content '23:59:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86399", + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361847, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86399): '23:59:59' ()", + "module": "test", + "msecs": 361.846923828125, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.255815505981445, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86399", + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361884, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86399): result = '23:59:59' ()", + "module": "test", + "msecs": 361.88411712646484, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.29300880432129, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 361.922025680542, + "msg": "Time representation for 86399 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.33091735839844, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.790855407714844e-05 + }, + { + "args": [ + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362063, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86400 is correct (Content '1D' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86400", + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,361", + "created": 1580751728.361988, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86400): '1D' ()", + "module": "test", + "msecs": 361.9880676269531, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.39695930480957, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86400", + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362026, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86400): result = '1D' ()", + "module": "test", + "msecs": 362.0259761810303, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.43486785888672, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 362.062931060791, + "msg": "Time representation for 86400 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.47182273864746, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 3.695487976074219e-05 + }, + { + "args": [ + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362254, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86459 is correct (Content '1D 00:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86459", + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362132, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86459): '1D 00:59' ()", + "module": "test", + "msecs": 362.13207244873047, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.540964126586914, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86459", + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362199, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86459): result = '1D 00:59' ()", + "module": "test", + "msecs": 362.199068069458, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.60795974731445, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 362.25390434265137, + "msg": "Time representation for 86459 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.66279602050781, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 5.4836273193359375e-05 + }, + { + "args": [ + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362404, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 90000 is correct (Content '1D 01:00:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 90000", + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362324, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 90000): '1D 01:00:00' ()", + "module": "test", + "msecs": 362.3239994049072, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.73289108276367, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 90000", + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362364, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 90000): result = '1D 01:00:00' ()", + "module": "test", + "msecs": 362.3640537261963, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.772945404052734, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 362.40410804748535, + "msg": "Time representation for 90000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.8129997253418, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + } + ], + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 0.0012240409851074219, + "time_finished": "2020-02-03 18:42:08,362", + "time_start": "2020-02-03 18:42:08,361" + }, + "_iXxBIEaTEeq5fPlXIeQCXQ": { + "args": null, + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.36252, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 26, + "message": "_iXxBIEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 362.5199794769287, + "msg": "_iXxBIEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 33.928871154785156, + "testcaseLogger": [ + { + "args": [ + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362903, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 17.4 is correct (Content '87/5' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 17.4", + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.3628, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 17.4): '87/5' ()", + "module": "test", + "msecs": 362.79988288879395, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.20877456665039, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 17.4", + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362855, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 17.4): result = '87/5' ()", + "module": "test", + "msecs": 362.8549575805664, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.26384925842285, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 362.9031181335449, + "msg": "Fraction representation for 17.4 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.31200981140137, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.8160552978515625e-05 + }, + { + "args": [ + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363086, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.25 is correct (Content '1/4' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.25", + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,362", + "created": 1580751728.362999, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.25): '1/4' ()", + "module": "test", + "msecs": 362.99896240234375, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.407854080200195, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.25", + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363043, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.25): result = '1/4' ()", + "module": "test", + "msecs": 363.04306983947754, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.451961517333984, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 363.0859851837158, + "msg": "Fraction representation for 0.25 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.494876861572266, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.291534423828125e-05 + }, + { + "args": [ + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363318, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.1 is correct (Content '1/10' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.1", + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363233, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.1): '1/10' ()", + "module": "test", + "msecs": 363.2330894470215, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.64198112487793, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.1", + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363277, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.1): result = '1/10' ()", + "module": "test", + "msecs": 363.2769584655762, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.68585014343262, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 363.31796646118164, + "msg": "Fraction representation for 0.1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.726858139038086, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.100799560546875e-05 + }, + { + "args": [ + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.36356, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.01666667 is correct (Content '1/60' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.01666667", + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363473, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.01666667): '1/60' ()", + "module": "test", + "msecs": 363.47293853759766, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.8818302154541, + "thread": 139938129311552, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.01666667", + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,363", + "created": 1580751728.363518, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.01666667): result = '1/60' ()", + "module": "test", + "msecs": 363.51799964904785, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.9268913269043, + "thread": 139938129311552, + "threadName": "MainThread" + } + ], + "msecs": 363.5599613189697, + "msg": "Fraction representation for 0.01666667 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32333, + "processName": "MainProcess", + "relativeCreated": 34.96885299682617, + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 4.1961669921875e-05 + } + ], + "thread": 139938129311552, + "threadName": "MainThread", + "time_consumption": 0.0010399818420410156, + "time_finished": "2020-02-03 18:42:08,363", + "time_start": "2020-02-03 18:42:08,362" + }, + "_n3BdUCcREeqsHsnJQYCN8Q": { + "args": null, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376208, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 52, "message": "_n3BdUCcREeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 749.8829364776611, + "msecs": 376.2080669403076, "msg": "_n3BdUCcREeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.461002349853516, + "relativeCreated": 47.61695861816406, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750093, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376441, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -5539,8 +7833,8 @@ "args": [ "':1'" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749948, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376286, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -5550,14 +7844,14 @@ "lineno": 100, "message": "Sending ':1' to stp.", "module": "test_stp", - "msecs": 749.9480247497559, + "msecs": 376.2860298156738, "msg": "Sending %s to stp.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.52609062194824, - "thread": 139832911451968, + "relativeCreated": 47.69492149353027, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5565,8 +7859,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749999, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376345, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5576,14 +7870,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 749.9990463256836, + "msecs": 376.3449192047119, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.57711219787598, - "thread": 139832911451968, + "relativeCreated": 47.75381088256836, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5592,8 +7886,8 @@ 58, 49 ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750046, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376396, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5603,35 +7897,35 @@ "lineno": 108, "message": "STP: no start pattern (3a 31) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_IDLE", "module": "stp", - "msecs": 750.0460147857666, + "msecs": 376.39594078063965, "msg": "%s no start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.624080657958984, - "thread": 139832911451968, + "relativeCreated": 47.804832458496094, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 750.0929832458496, + "msecs": 376.44100189208984, "msg": "Processing data with an insufficient start pattern.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.67104911804199, - "thread": 139832911451968, + "relativeCreated": 47.84989356994629, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 4.506111145019531e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.75036, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376612, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5648,8 +7942,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750198, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376514, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5659,14 +7953,14 @@ "lineno": 22, "message": "Result (Return value list if processing incorrect start of frame): [ [ ] ] ()", "module": "test", - "msecs": 750.1978874206543, + "msecs": 376.5139579772949, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.77595329284668, - "thread": 139832911451968, + "relativeCreated": 47.92284965515137, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5675,8 +7969,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750271, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.37656, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5686,35 +7980,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing incorrect start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 750.2710819244385, + "msecs": 376.5599727630615, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.84914779663086, - "thread": 139832911451968, + "relativeCreated": 47.96886444091797, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 750.3600120544434, + "msecs": 376.61194801330566, "msg": "Return value list if processing incorrect start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 54.93807792663574, - "thread": 139832911451968, + "relativeCreated": 48.02083969116211, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 8.893013000488281e-05 + "time_consumption": 5.1975250244140625e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750589, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5731,8 +8025,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750457, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376689, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5742,14 +8036,14 @@ "lineno": 22, "message": "Result (State after processing incorrect start of frame): 0 ()", "module": "test", - "msecs": 750.4570484161377, + "msecs": 376.68895721435547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.03511428833008, - "thread": 139832911451968, + "relativeCreated": 48.097848892211914, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5758,8 +8052,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750523, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376728, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5769,32 +8063,32 @@ "lineno": 26, "message": "Expectation (State after processing incorrect start of frame): result = 0 ()", "module": "test", - "msecs": 750.5230903625488, + "msecs": 376.7280578613281, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.10115623474121, - "thread": 139832911451968, + "relativeCreated": 48.13694953918457, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 750.5888938903809, + "msecs": 376.7719268798828, "msg": "State after processing incorrect start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.16695976257324, - "thread": 139832911451968, + "relativeCreated": 48.18081855773926, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 4.38690185546875e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750938, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376979, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -5809,8 +8103,8 @@ "args": [ "'::'" ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750686, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376838, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -5820,14 +8114,14 @@ "lineno": 110, "message": "Sending '::' to stp.", "module": "test_stp", - "msecs": 750.6859302520752, + "msecs": 376.83796882629395, "msg": "Sending %s to stp.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.26399612426758, - "thread": 139832911451968, + "relativeCreated": 48.24686050415039, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5835,8 +8129,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750765, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376894, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5846,14 +8140,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 750.7650852203369, + "msecs": 376.8939971923828, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.3431510925293, - "thread": 139832911451968, + "relativeCreated": 48.30288887023926, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5861,8 +8155,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,750", - "created": 1577725267.750867, + "asctime": "2020-02-03 18:42:08,376", + "created": 1580751728.376937, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -5872,35 +8166,35 @@ "lineno": 110, "message": "STP: 2nd data sync (3a) received => keep state", "module": "stp", - "msecs": 750.8668899536133, + "msecs": 376.9369125366211, "msg": "%s 2nd data sync (%02x) received => keep state", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.444955825805664, - "thread": 139832911451968, + "relativeCreated": 48.34580421447754, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 750.9379386901855, + "msecs": 376.97911262512207, "msg": "Processing data with an insufficient start pattern (two times sync).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.51600456237793, - "thread": 139832911451968, + "relativeCreated": 48.388004302978516, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 7.104873657226562e-05 + "time_consumption": 4.220008850097656e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751227, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5917,8 +8211,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751052, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377054, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5928,14 +8222,14 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync twice): [ [ ] ] ()", "module": "test", - "msecs": 751.0519027709961, + "msecs": 377.05397605895996, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.62996864318848, - "thread": 139832911451968, + "relativeCreated": 48.462867736816406, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -5944,8 +8238,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751126, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377102, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5955,35 +8249,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync twice): result = [ [ ] ] ()", "module": "test", - "msecs": 751.1260509490967, + "msecs": 377.1018981933594, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.70411682128906, - "thread": 139832911451968, + "relativeCreated": 48.51078987121582, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 751.2269020080566, + "msecs": 377.16197967529297, "msg": "Return value list if processing data_sync twice is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.80496788024902, - "thread": 139832911451968, + "relativeCreated": 48.570871353149414, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00010085105895996094 + "time_consumption": 6.008148193359375e-05 }, { "args": [ "1", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751385, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377314, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6000,8 +8294,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751301, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6011,14 +8305,14 @@ "lineno": 22, "message": "Result (State after processing data_sync twice): 1 ()", "module": "test", - "msecs": 751.3010501861572, + "msecs": 377.2280216217041, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.87911605834961, - "thread": 139832911451968, + "relativeCreated": 48.63691329956055, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6027,8 +8321,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:07,751", - "created": 1577725267.751343, + "asctime": "2020-02-03 18:42:08,377", + "created": 1580751728.377271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6038,63 +8332,63 @@ "lineno": 26, "message": "Expectation (State after processing data_sync twice): result = 1 ()", "module": "test", - "msecs": 751.3430118560791, + "msecs": 377.2709369659424, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.921077728271484, - "thread": 139832911451968, + "relativeCreated": 48.67982864379883, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 751.384973526001, + "msecs": 377.31409072875977, "msg": "State after processing data_sync twice is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 55.96303939819336, - "thread": 139832911451968, + "relativeCreated": 48.72298240661621, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 4.315376281738281e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0015020370483398438, - "time_finished": "2019-12-30 18:01:07,751", - "time_start": "2019-12-30 18:01:07,749" + "time_consumption": 0.0011060237884521484, + "time_finished": "2020-02-03 18:42:08,377", + "time_start": "2020-02-03 18:42:08,376" }, "_pavPUHsZEemK6PYOxF9rHw": { "args": null, - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741294, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 24, + "lineno": 30, "message": "_pavPUHsZEemK6PYOxF9rHw", "module": "__init__", "moduleLogger": [], - "msecs": 741.2939071655273, + "msecs": 364.24803733825684, "msg": "_pavPUHsZEemK6PYOxF9rHw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.87197303771973, + "relativeCreated": 35.65692901611328, "testcaseLogger": [ { "args": [ 4 ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741356, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364318, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -6105,14 +8399,14 @@ "message": "Checking test pattern with length 4.", "module": "test_hexlify", "moduleLogger": [], - "msecs": 741.3558959960938, + "msecs": 364.3178939819336, "msg": "Checking test pattern with length %d.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 45.93396186828613, - "thread": 139832911451968, + "relativeCreated": 35.72678565979004, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6122,8 +8416,8 @@ "(4): de ad be ef", 0 ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741462, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364427, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -6134,52 +8428,52 @@ "message": "\"(4)\" is in \"(4): de ad be ef\" at position 0", "module": "test_hexlify", "moduleLogger": [], - "msecs": 741.461992263794, + "msecs": 364.4270896911621, "msg": "\"%s\" is in \"%s\" at position %d", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14675, + "pathname": "src/tests/test_hexlify.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.04005813598633, - "thread": 139832911451968, + "relativeCreated": 35.835981369018555, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156, - "time_finished": "2019-12-30 18:01:07,741", - "time_start": "2019-12-30 18:01:07,741" + "time_consumption": 0.00017905235290527344, + "time_finished": "2020-02-03 18:42:08,364", + "time_start": "2020-02-03 18:42:08,364" }, "_rhV88Hu9Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741566, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 25, + "lineno": 31, "message": "_rhV88Hu9Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 741.5659427642822, + "msecs": 364.54105377197266, "msg": "_rhV88Hu9Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.14400863647461, + "relativeCreated": 35.9499454498291, "testcaseLogger": [ { "args": [ 4 ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741629, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364608, "exc_info": null, "exc_text": null, "filename": "test_linefeed_filter.py", @@ -6190,14 +8484,14 @@ "message": "Checking test pattern with length 4.", "module": "test_linefeed_filter", "moduleLogger": [], - "msecs": 741.628885269165, + "msecs": 364.6080493927002, "msg": "Checking test pattern with length %d.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_linefeed_filter.py", - "process": 14675, + "pathname": "src/tests/test_linefeed_filter.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.20695114135742, - "thread": 139832911451968, + "relativeCreated": 36.01694107055664, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -6206,8 +8500,8 @@ "'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.74179, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6224,8 +8518,8 @@ "'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741702, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364687, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6235,14 +8529,14 @@ "lineno": 22, "message": "Result (Returnvalue of linefeed_filter): 'test\\\\r\\\\n123\\\\r\\\\n' ()", "module": "test", - "msecs": 741.7020797729492, + "msecs": 364.6869659423828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.2801456451416, - "thread": 139832911451968, + "relativeCreated": 36.09585762023926, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6251,8 +8545,8 @@ "'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:07,741", - "created": 1577725267.741744, + "asctime": "2020-02-03 18:42:08,364", + "created": 1580751728.364728, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6262,61 +8556,61 @@ "lineno": 26, "message": "Expectation (Returnvalue of linefeed_filter): result = 'test\\\\r\\\\n123\\\\r\\\\n' ()", "module": "test", - "msecs": 741.7440414428711, + "msecs": 364.7279739379883, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.32210731506348, - "thread": 139832911451968, + "relativeCreated": 36.13686561584473, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 741.7900562286377, + "msecs": 364.76802825927734, "msg": "Returnvalue of linefeed_filter is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 46.36812210083008, - "thread": 139832911451968, + "relativeCreated": 36.17691993713379, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 4.00543212890625e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.00022411346435546875, - "time_finished": "2019-12-30 18:01:07,741", - "time_start": "2019-12-30 18:01:07,741" + "time_consumption": 0.0002269744873046875, + "time_finished": "2020-02-03 18:42:08,364", + "time_start": "2020-02-03 18:42:08,364" }, "_wMotUCclEeqsHsnJQYCN8Q": { "args": null, - "asctime": "2019-12-30 18:01:07,756", - "created": 1577725267.756836, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.38037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 48, + "lineno": 54, "message": "_wMotUCclEeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 756.8359375, + "msecs": 380.3699016571045, "msg": "_wMotUCclEeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.41400337219238, + "relativeCreated": 51.77879333496094, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757593, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380835, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -6331,8 +8625,8 @@ "args": [ "': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 757.033109664917, + "msecs": 380.4929256439209, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.611175537109375, - "thread": 139832911451968, + "relativeCreated": 51.901817321777344, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6384,8 +8678,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757096, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380533, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6395,22 +8689,22 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 757.0960521697998, + "msecs": 380.53297996520996, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.67411804199219, - "thread": 139832911451968, + "relativeCreated": 51.941871643066406, + "thread": 139938129311552, "threadName": "MainThread" }, { "args": [ "255" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757169, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.38058, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -6420,22 +8714,22 @@ "lineno": 163, "message": "Setting state of stp to 255.", "module": "test_stp", - "msecs": 757.1690082550049, + "msecs": 380.57994842529297, "msg": "Setting state of stp to %s.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.747074127197266, - "thread": 139832911451968, + "relativeCreated": 51.988840103149414, + "thread": 139938129311552, "threadName": "MainThread" }, { "args": [ "': adding value (3a) back to data again and changing state -> STP_STATE_IDLE", "module": "stp", - "msecs": 757.3230266571045, + "msecs": 380.66792488098145, "msg": "%s unknown state (%s) => adding value (%02x) back to data again and changing state -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.901092529296875, - "thread": 139832911451968, + "relativeCreated": 52.07681655883789, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6487,8 +8781,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757398, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380714, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6498,14 +8792,14 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 757.3978900909424, + "msecs": 380.71393966674805, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 61.975955963134766, - "thread": 139832911451968, + "relativeCreated": 52.12283134460449, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6513,8 +8807,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.75746, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380753, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6524,14 +8818,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 757.4601173400879, + "msecs": 380.7530403137207, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.03818321228027, - "thread": 139832911451968, + "relativeCreated": 52.16193199157715, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6540,8 +8834,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757525, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380791, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6551,35 +8845,35 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 757.5249671936035, + "msecs": 380.79094886779785, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.1030330657959, - "thread": 139832911451968, + "relativeCreated": 52.1998405456543, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 757.5929164886475, + "msecs": 380.83505630493164, "msg": "Corrupting stp state and processing data.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.170982360839844, - "thread": 139832911451968, + "relativeCreated": 52.243947982788086, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 6.794929504394531e-05 + "time_consumption": 4.410743713378906e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757778, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380999, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6596,8 +8890,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757679, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.38091, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6607,14 +8901,14 @@ "lineno": 22, "message": "Result (Return value list if processing start of a frame after state had been corrupted): [ [ ] ] ()", "module": "test", - "msecs": 757.6789855957031, + "msecs": 380.90991973876953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.25705146789551, - "thread": 139832911451968, + "relativeCreated": 52.31881141662598, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6623,8 +8917,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757722, + "asctime": "2020-02-03 18:42:08,380", + "created": 1580751728.380951, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6634,35 +8928,35 @@ "lineno": 26, "message": "Expectation (Return value list if processing start of a frame after state had been corrupted): result = [ [ ] ] ()", "module": "test", - "msecs": 757.7219009399414, + "msecs": 380.950927734375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.29996681213379, - "thread": 139832911451968, + "relativeCreated": 52.359819412231445, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 757.7779293060303, + "msecs": 380.9990882873535, "msg": "Return value list if processing start of a frame after state had been corrupted is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.355995178222656, - "thread": 139832911451968, + "relativeCreated": 52.40797996520996, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 4.8160552978515625e-05 }, { "args": [ "3", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757925, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.38114, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6679,8 +8973,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757844, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.381062, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6690,14 +8984,14 @@ "lineno": 22, "message": "Result (State after processing start of a frame after state had been corrupted): 3 ()", "module": "test", - "msecs": 757.8439712524414, + "msecs": 381.0620307922363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.42203712463379, - "thread": 139832911451968, + "relativeCreated": 52.47092247009277, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6706,8 +9000,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757883, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.3811, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6717,35 +9011,35 @@ "lineno": 26, "message": "Expectation (State after processing start of a frame after state had been corrupted): result = 3 ()", "module": "test", - "msecs": 757.8830718994141, + "msecs": 381.0999393463135, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.461137771606445, - "thread": 139832911451968, + "relativeCreated": 52.50883102416992, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 757.9250335693359, + "msecs": 381.13999366760254, "msg": "State after processing start of a frame after state had been corrupted is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.50309944152832, - "thread": 139832911451968, + "relativeCreated": 52.548885345458984, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 4.00543212890625e-05 }, { "args": [ "2", "" ], - "asctime": "2019-12-30 18:01:07,758", - "created": 1577725267.758061, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.381277, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6762,8 +9056,8 @@ "2", "" ], - "asctime": "2019-12-30 18:01:07,757", - "created": 1577725267.757984, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.381202, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6773,14 +9067,14 @@ "lineno": 22, "message": "Result (Buffer size after corrupting stp state): 2 ()", "module": "test", - "msecs": 757.983922958374, + "msecs": 381.20198249816895, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.561988830566406, - "thread": 139832911451968, + "relativeCreated": 52.61087417602539, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6789,8 +9083,8 @@ "2", "" ], - "asctime": "2019-12-30 18:01:07,758", - "created": 1577725267.758022, + "asctime": "2020-02-03 18:42:08,381", + "created": 1580751728.381239, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6800,63 +9094,63 @@ "lineno": 26, "message": "Expectation (Buffer size after corrupting stp state): result = 2 ()", "module": "test", - "msecs": 758.0220699310303, + "msecs": 381.2389373779297, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.600135803222656, - "thread": 139832911451968, + "relativeCreated": 52.64782905578613, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 758.0609321594238, + "msecs": 381.27708435058594, "msg": "Buffer size after corrupting stp state is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 62.63899803161621, - "thread": 139832911451968, + "relativeCreated": 52.68597602844238, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.886222839355469e-05 + "time_consumption": 3.814697265625e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0012249946594238281, - "time_finished": "2019-12-30 18:01:07,758", - "time_start": "2019-12-30 18:01:07,756" + "time_consumption": 0.0009071826934814453, + "time_finished": "2020-02-03 18:42:08,381", + "time_start": "2020-02-03 18:42:08,380" }, "_xOCgkI9yEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748486, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374427, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 44, + "lineno": 50, "message": "_xOCgkI9yEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 748.4860420227051, + "msecs": 374.42708015441895, "msg": "_xOCgkI9yEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.06410789489746, + "relativeCreated": 45.83597183227539, "testcaseLogger": [ { "args": [ "'::>'" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748985, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375011, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -6872,8 +9166,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.74856, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.37452, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6883,14 +9177,14 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 748.5599517822266, + "msecs": 374.52006340026855, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.138017654418945, - "thread": 139832911451968, + "relativeCreated": 45.928955078125, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6899,8 +9193,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748603, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374568, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6910,14 +9204,14 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 748.603105545044, + "msecs": 374.56798553466797, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.18117141723633, - "thread": 139832911451968, + "relativeCreated": 45.976877212524414, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6925,8 +9219,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748673, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374651, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6936,14 +9230,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 748.6729621887207, + "msecs": 374.6509552001953, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.251028060913086, - "thread": 139832911451968, + "relativeCreated": 46.05984687805176, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6952,8 +9246,8 @@ 58, 61 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748714, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374696, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6963,14 +9257,14 @@ "lineno": 129, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 748.7139701843262, + "msecs": 374.6960163116455, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.292036056518555, - "thread": 139832911451968, + "relativeCreated": 46.10490798950195, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -6978,8 +9272,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748761, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.37475, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -6989,14 +9283,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 748.7609386444092, + "msecs": 374.74989891052246, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.33900451660156, - "thread": 139832911451968, + "relativeCreated": 46.158790588378906, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7005,8 +9299,8 @@ 58, 61 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748801, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374795, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7016,14 +9310,14 @@ "lineno": 129, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 748.8009929656982, + "msecs": 374.79496002197266, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.379058837890625, - "thread": 139832911451968, + "relativeCreated": 46.2038516998291, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7031,8 +9325,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748841, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374847, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7042,14 +9336,14 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 748.8410472869873, + "msecs": 374.8469352722168, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.41911315917969, - "thread": 139832911451968, + "relativeCreated": 46.25582695007324, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7058,8 +9352,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748883, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374889, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7069,14 +9363,14 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 748.8830089569092, + "msecs": 374.8888969421387, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.46107482910156, - "thread": 139832911451968, + "relativeCreated": 46.29778861999512, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7084,8 +9378,8 @@ "STP:", "(21): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 3a 3c 73 74 70 3a 3e" ], - "asctime": "2019-12-30 18:01:07,748", - "created": 1577725267.748947, + "asctime": "2020-02-03 18:42:08,374", + "created": 1580751728.374969, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7095,35 +9389,35 @@ "lineno": 145, "message": "STP: message identified - (21): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 3a 3c 73 74 70 3a 3e", "module": "stp", - "msecs": 748.9469051361084, + "msecs": 374.9690055847168, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14675, + "pathname": "src/stringtools/stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.52497100830078, - "thread": 139832911451968, + "relativeCreated": 46.37789726257324, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 748.9850521087646, + "msecs": 375.0109672546387, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.56311798095703, - "thread": 139832911451968, + "relativeCreated": 46.41985893249512, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 + "time_consumption": 4.1961669921875e-05 }, { "args": [ "['testframe for :']", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.749147, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375208, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7140,8 +9434,8 @@ "[ 'testframe for :' ]", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.74906, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.37511, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7151,14 +9445,14 @@ "lineno": 22, "message": "Result (Processed STP-Frame): [ 'testframe for :' ] ()", "module": "test", - "msecs": 749.0599155426025, + "msecs": 375.1099109649658, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.63798141479492, - "thread": 139832911451968, + "relativeCreated": 46.518802642822266, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7167,8 +9461,8 @@ "[ 'testframe for :' ]", "" ], - "asctime": "2019-12-30 18:01:07,749", - "created": 1577725267.7491, + "asctime": "2020-02-03 18:42:08,375", + "created": 1580751728.375157, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7178,63 +9472,63 @@ "lineno": 26, "message": "Expectation (Processed STP-Frame): result = [ 'testframe for :' ] ()", "module": "test", - "msecs": 749.0999698638916, + "msecs": 375.15711784362793, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.678035736083984, - "thread": 139832911451968, + "relativeCreated": 46.566009521484375, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 749.1469383239746, + "msecs": 375.20790100097656, "msg": "Processed STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 53.72500419616699, - "thread": 139832911451968, + "relativeCreated": 46.61679267883301, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 5.078315734863281e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0006608963012695312, - "time_finished": "2019-12-30 18:01:07,749", - "time_start": "2019-12-30 18:01:07,748" + "time_consumption": 0.0007808208465576172, + "time_finished": "2020-02-03 18:42:08,375", + "time_start": "2020-02-03 18:42:08,374" }, "_xiZqMI92Eemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746208, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369671, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 41, + "lineno": 47, "message": "_xiZqMI92Eemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 746.2079524993896, + "msecs": 369.671106338501, "msg": "_xiZqMI92Eemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14675, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.78601837158203, + "relativeCreated": 41.07999801635742, "testcaseLogger": [ { "args": [ "'testframe for :'" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746304, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369768, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -7245,14 +9539,14 @@ "message": "Creating testframe including start and end pattern for \"'testframe for :'\"", "module": "test_stp", "moduleLogger": [], - "msecs": 746.3040351867676, + "msecs": 369.7679042816162, "msg": "Creating testframe including start and end pattern for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14675, + "pathname": "src/tests/test_stp.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.88210105895996, - "thread": 139832911451968, + "relativeCreated": 41.176795959472656, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -7261,8 +9555,8 @@ "'::>'", "" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746462, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369925, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7279,8 +9573,8 @@ "'::>'", "" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746379, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369841, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7290,14 +9584,14 @@ "lineno": 22, "message": "Result (STP-Frame): '::>' ()", "module": "test", - "msecs": 746.3788986206055, + "msecs": 369.8410987854004, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.95696449279785, - "thread": 139832911451968, + "relativeCreated": 41.249990463256836, + "thread": 139938129311552, "threadName": "MainThread" }, { @@ -7306,8 +9600,8 @@ "'::>'", "" ], - "asctime": "2019-12-30 18:01:07,746", - "created": 1577725267.746421, + "asctime": "2020-02-03 18:42:08,369", + "created": 1580751728.369884, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7317,39 +9611,42 @@ "lineno": 26, "message": "Expectation (STP-Frame): result = '::>' ()", "module": "test", - "msecs": 746.4210987091064, + "msecs": 369.8840141296387, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 50.99916458129883, - "thread": 139832911451968, + "relativeCreated": 41.29290580749512, + "thread": 139938129311552, "threadName": "MainThread" } ], - "msecs": 746.4621067047119, + "msecs": 369.92502212524414, "msg": "STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14675, + "pathname": "src/unittest/test.py", + "process": 32333, "processName": "MainProcess", - "relativeCreated": 51.0401725769043, - "thread": 139832911451968, + "relativeCreated": 41.333913803100586, + "thread": 139938129311552, "threadName": "MainThread", "time_consumption": 4.100799560546875e-05 } ], - "thread": 139832911451968, + "thread": 139938129311552, "threadName": "MainThread", - "time_consumption": 0.0002541542053222656, - "time_finished": "2019-12-30 18:01:07,746", - "time_start": "2019-12-30 18:01:07,746" + "time_consumption": 0.00025391578674316406, + "time_finished": "2020-02-03 18:42:08,369", + "time_start": "2020-02-03 18:42:08,369" } }, "testrun_id": "p2", - "time_consumption": 0.015398740768432617, + "time_consumption": 0.019787073135375977, "uid_list_sorted": [ + "_dB5IoEaTEeq5fPlXIeQCXQ", + "_hpUmwEaTEeq5fPlXIeQCXQ", + "_iXxBIEaTEeq5fPlXIeQCXQ", "_XzMFcHYZEem_kd-7nxt1sg", "_pavPUHsZEemK6PYOxF9rHw", "_rhV88Hu9Eemborg4LxXa3A", @@ -7383,11 +9680,15 @@ "_NpOWgI9tEemg3cv-3xZ25Q": "Frame processing - Input data type error", "_QjJiIIwZEem5qYOdmXl77A": "Frame processing", "_TzZlUI9jEemg3cv-3xZ25Q": "Stream Definition", + "_ViQHQEaTEeq5fPlXIeQCXQ": "Human readable value representations", "_XzMFcHYZEem_kd-7nxt1sg": "Hexadecimal Values", "_Y_h3gH5CEemxr4bbKXhxkg": "Frame creation", "_ZhyRAI9OEemAMMFgxXT6lA": "Frame processing - Input data type error", + "_dB5IoEaTEeq5fPlXIeQCXQ": "Physical representation", "_dpJzwCcUEeqsHsnJQYCN8Q": "Frame processing - Incorrect end pattern", "_fp-i0Hu8Eemborg4LxXa3A": "Extract", + "_hpUmwEaTEeq5fPlXIeQCXQ": "Time representation", + "_iXxBIEaTEeq5fPlXIeQCXQ": "Fraction representation", "_n3BdUCcREeqsHsnJQYCN8Q": "Frame processing - Incorrect start patterns", "_pavPUHsZEemK6PYOxF9rHw": "Number of Bytes", "_rhV88Hu9Eemborg4LxXa3A": "CRLF-Filter", @@ -7400,8 +9701,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 18, - "number_of_tests": 18, + "number_of_successfull_tests": 21, + "number_of_tests": 21, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -7412,33 +9713,33 @@ "testcases": { "_-yWo4I9sEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1453066, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7782712, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 40, + "lineno": 46, "message": "_-yWo4I9sEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 145.30658721923828, + "msecs": 778.2711982727051, "msg": "_-yWo4I9sEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.90085411071777, + "relativeCreated": 72.23939895629883, "stack_info": null, "testcaseLogger": [ { "args": [ "b'testframe for stp'" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1453798, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7783914, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -7449,15 +9750,15 @@ "message": "Creating testframe for \"b'testframe for stp'\"", "module": "test_stp", "moduleLogger": [], - "msecs": 145.37978172302246, + "msecs": 778.3913612365723, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.97404861450195, + "relativeCreated": 72.35956192016602, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -7466,8 +9767,8 @@ "b':'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1454985, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7786052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7484,8 +9785,8 @@ "b':'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1454303, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7784698, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7495,15 +9796,15 @@ "lineno": 22, "message": "Result (STP-Frame): b':' ()", "module": "test", - "msecs": 145.430326461792, + "msecs": 778.4698009490967, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.024593353271484, + "relativeCreated": 72.43800163269043, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7512,8 +9813,8 @@ "b':'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.145465, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7785149, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7523,66 +9824,66 @@ "lineno": 26, "message": "Expectation (STP-Frame): result = b':' ()", "module": "test", - "msecs": 145.46489715576172, + "msecs": 778.5148620605469, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.05916404724121, + "relativeCreated": 72.48306274414062, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 145.49851417541504, + "msecs": 778.6052227020264, "msg": "STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.09278106689453, + "relativeCreated": 72.57342338562012, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.361701965332031e-05 + "time_consumption": 9.036064147949219e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0001919269561767578, - "time_finished": "2019-12-30 18:01:08,145", - "time_start": "2019-12-30 18:01:08,145" + "time_consumption": 0.00033402442932128906, + "time_finished": "2020-02-03 18:42:08,778", + "time_start": "2020-02-03 18:42:08,778" }, "_5_z4MI9yEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1487162, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7821007, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 45, + "lineno": 51, "message": "_5_z4MI9yEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 148.71621131896973, + "msecs": 782.1006774902344, "msg": "_5_z4MI9yEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.31047821044922, + "relativeCreated": 76.06887817382812, "stack_info": null, "testcaseLogger": [ { "args": [ "b'_:'" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1490715, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7825227, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -7598,8 +9899,8 @@ "STP:", 95 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1487837, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7822359, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7609,15 +9910,15 @@ "lineno": 100, "message": "STP: no data sync (5f) received => ignoring byte", "module": "stp", - "msecs": 148.78368377685547, + "msecs": 782.235860824585, "msg": "%s no data sync (%02x) received => ignoring byte", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.37795066833496, + "relativeCreated": 76.20406150817871, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7625,8 +9926,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1488256, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7822895, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7636,15 +9937,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 148.82564544677734, + "msecs": 782.2895050048828, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.41991233825684, + "relativeCreated": 76.25770568847656, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7653,8 +9954,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1488624, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7823257, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7664,15 +9965,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 148.86236190795898, + "msecs": 782.3257446289062, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.45662879943848, + "relativeCreated": 76.2939453125, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7680,8 +9981,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1489382, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.782398, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7691,15 +9992,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 148.93817901611328, + "msecs": 782.397985458374, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.53244590759277, + "relativeCreated": 76.36618614196777, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7708,8 +10009,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.148975, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.782434, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7719,15 +10020,15 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 148.97489547729492, + "msecs": 782.4339866638184, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.56916236877441, + "relativeCreated": 76.40218734741211, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7735,8 +10036,8 @@ "STP:", "(17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.149025, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7824883, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -7746,37 +10047,37 @@ "lineno": 145, "message": "STP: message identified - (17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70", "module": "stp", - "msecs": 149.02496337890625, + "msecs": 782.4883460998535, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.61923027038574, + "relativeCreated": 76.45654678344727, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 149.07145500183105, + "msecs": 782.5226783752441, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.66572189331055, + "relativeCreated": 76.49087905883789, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.649162292480469e-05 + "time_consumption": 3.4332275390625e-05 }, { "args": [ "[b'testframe for stp']", "" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.149363, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7826698, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7793,8 +10094,8 @@ "[ b'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1491826, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7825892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7804,15 +10105,15 @@ "lineno": 22, "message": "Result (Processed STP-Frame): [ b'testframe for stp' ] ()", "module": "test", - "msecs": 149.18255805969238, + "msecs": 782.5891971588135, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.77682495117188, + "relativeCreated": 76.55739784240723, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -7821,8 +10122,8 @@ "[ b'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1492636, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7826264, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7832,64 +10133,64 @@ "lineno": 26, "message": "Expectation (Processed STP-Frame): result = [ b'testframe for stp' ] ()", "module": "test", - "msecs": 149.2636203765869, + "msecs": 782.6263904571533, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.8578872680664, + "relativeCreated": 76.59459114074707, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 149.36304092407227, + "msecs": 782.6697826385498, "msg": "Processed STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.95730781555176, + "relativeCreated": 76.63798332214355, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 9.942054748535156e-05 + "time_consumption": 4.3392181396484375e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0006468296051025391, - "time_finished": "2019-12-30 18:01:08,149", - "time_start": "2019-12-30 18:01:08,148" + "time_consumption": 0.0005691051483154297, + "time_finished": "2020-02-03 18:42:08,782", + "time_start": "2020-02-03 18:42:08,782" }, "_9ahP4Hu7Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1420813, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7733302, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 28, + "lineno": 34, "message": "_9ahP4Hu7Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 142.08126068115234, + "msecs": 773.3302116394043, "msg": "_9ahP4Hu7Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.675527572631836, + "relativeCreated": 67.29841232299805, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.142131, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7733858, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -7900,15 +10201,15 @@ "message": "Compressing Streams result in differnt streams with the same input stream. Therefore the test will compare the decompressed data.", "module": "test_gzip", "moduleLogger": [], - "msecs": 142.13109016418457, + "msecs": 773.385763168335, "msg": "Compressing Streams result in differnt streams with the same input stream. Therefore the test will compare the decompressed data.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14677, + "pathname": "src/tests/test_gzip.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.72535705566406, + "relativeCreated": 67.35396385192871, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -7916,8 +10217,8 @@ "args": [ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1424253, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7737448, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -7931,49 +10232,49 @@ { "args": [ 0.8666666666666667, - 0.00017547607421875 + 0.0002346038818359375 ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1423514, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7736685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_compress", "levelname": "DEBUG", "levelno": 10, - "lineno": 90, + "lineno": 145, "message": "GZIP: Finished to compress a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 142.3513889312744, + "msecs": 773.6685276031494, "msg": "GZIP: Finished to compress a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14677, + "pathname": "src/stringtools/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.945655822753906, + "relativeCreated": 67.63672828674316, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 142.4252986907959, + "msecs": 773.7448215484619, "msg": "Compressing stream: %s ", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14677, + "pathname": "src/tests/test_gzip.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.01956558227539, + "relativeCreated": 67.71302223205566, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 7.390975952148438e-05 + "time_consumption": 7.62939453125e-05 }, { "args": [ - "(26): 1f 8b 08 00 54 2d 0a 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" + "(26): 1f 8b 08 00 70 5b 38 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1426442, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.774009, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -7981,56 +10282,56 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 16, - "message": "Extracting stream: (26): 1f 8b 08 00 54 2d 0a 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00", + "message": "Extracting stream: (26): 1f 8b 08 00 70 5b 38 5e 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00", "module": "test_gzip", "moduleLogger": [ { "args": [ 0.8666666666666667, - 9.751319885253906e-05 + 0.00012373924255371094 ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1425784, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.773937, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_extract", "levelname": "DEBUG", "levelno": 10, - "lineno": 123, + "lineno": 178, "message": "GZIP: Finished to extract a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 142.5783634185791, + "msecs": 773.9369869232178, "msg": "GZIP: Finished to extract a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14677, + "pathname": "src/stringtools/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.172630310058594, + "relativeCreated": 67.90518760681152, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 142.64416694641113, + "msecs": 774.0089893341064, "msg": "Extracting stream: %s", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14677, + "pathname": "src/tests/test_gzip.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.238433837890625, + "relativeCreated": 67.9771900177002, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 6.580352783203125e-05 + "time_consumption": 7.200241088867188e-05 }, { "args": [ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1429036, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7742536, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8047,8 +10348,8 @@ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1427226, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7741039, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8058,15 +10359,15 @@ "lineno": 22, "message": "Result (Extracted data): (30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ()", "module": "test", - "msecs": 142.72260665893555, + "msecs": 774.1038799285889, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.31687355041504, + "relativeCreated": 68.07208061218262, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8075,8 +10376,8 @@ "(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff", "" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1427855, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7741861, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8086,66 +10387,66 @@ "lineno": 26, "message": "Expectation (Extracted data): result = (30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ()", "module": "test", - "msecs": 142.78554916381836, + "msecs": 774.1861343383789, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.37981605529785, + "relativeCreated": 68.15433502197266, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 142.90356636047363, + "msecs": 774.2536067962646, "msg": "Extracted data is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.497833251953125, + "relativeCreated": 68.2218074798584, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00011801719665527344 + "time_consumption": 6.747245788574219e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0008223056793212891, - "time_finished": "2019-12-30 18:01:08,142", - "time_start": "2019-12-30 18:01:08,142" + "time_consumption": 0.0009233951568603516, + "time_finished": "2020-02-03 18:42:08,774", + "time_start": "2020-02-03 18:42:08,773" }, "_Bd9TgI9tEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1458359, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7796388, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 42, + "lineno": 48, "message": "_Bd9TgI9tEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 145.83587646484375, + "msecs": 779.6387672424316, "msg": "_Bd9TgI9tEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.43014335632324, + "relativeCreated": 73.60696792602539, "stack_info": null, "testcaseLogger": [ { "args": [ "b':'" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1461418, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.779997, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -8161,8 +10462,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1459, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7797186, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8172,15 +10473,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 145.90001106262207, + "msecs": 779.7186374664307, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.49427795410156, + "relativeCreated": 73.68683815002441, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8189,8 +10490,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1459382, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.779767, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8200,15 +10501,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 145.93815803527832, + "msecs": 779.7670364379883, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.53242492675781, + "relativeCreated": 73.73523712158203, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8216,8 +10517,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1460197, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7798545, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8227,15 +10528,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 146.01969718933105, + "msecs": 779.8545360565186, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.61396408081055, + "relativeCreated": 73.8227367401123, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8244,8 +10545,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146057, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7798963, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8255,15 +10556,15 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 146.0568904876709, + "msecs": 779.8962593078613, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.65115737915039, + "relativeCreated": 73.86445999145508, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8271,8 +10572,8 @@ "STP:", "(17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1461058, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.779954, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -8282,37 +10583,37 @@ "lineno": 145, "message": "STP: message identified - (17): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 73 74 70", "module": "stp", - "msecs": 146.10576629638672, + "msecs": 779.9539566040039, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.70003318786621, + "relativeCreated": 73.92215728759766, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 146.14176750183105, + "msecs": 779.9971103668213, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.73603439331055, + "relativeCreated": 73.96531105041504, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 4.315376281738281e-05 }, { "args": [ "[]", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.14627, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7801533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8329,8 +10630,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1461947, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7800653, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8340,15 +10641,15 @@ "lineno": 22, "message": "Result (First processed STP snippet): [ ] ()", "module": "test", - "msecs": 146.1946964263916, + "msecs": 780.0652980804443, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.788963317871094, + "relativeCreated": 74.03349876403809, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8357,8 +10658,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1462293, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780105, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8368,37 +10669,37 @@ "lineno": 26, "message": "Expectation (First processed STP snippet): result = [ ] ()", "module": "test", - "msecs": 146.22926712036133, + "msecs": 780.1051139831543, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.82353401184082, + "relativeCreated": 74.07331466674805, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 146.2700366973877, + "msecs": 780.1532745361328, "msg": "First processed STP snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.86430358886719, + "relativeCreated": 74.12147521972656, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.076957702636719e-05 + "time_consumption": 4.8160552978515625e-05 }, { "args": [ "[b'testframe for stp']", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1464775, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8415,8 +10716,8 @@ "[ b'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146317, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7802088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8426,15 +10727,15 @@ "lineno": 22, "message": "Result (Final processed STP snippet): [ b'testframe for stp' ] ()", "module": "test", - "msecs": 146.3170051574707, + "msecs": 780.2088260650635, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.911272048950195, + "relativeCreated": 74.17702674865723, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8443,8 +10744,8 @@ "[ b'testframe for stp' ]", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146431, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7802474, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8454,66 +10755,66 @@ "lineno": 26, "message": "Expectation (Final processed STP snippet): result = [ b'testframe for stp' ] ()", "module": "test", - "msecs": 146.43096923828125, + "msecs": 780.2474498748779, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.02523612976074, + "relativeCreated": 74.21565055847168, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 146.47746086120605, + "msecs": 780.2939414978027, "msg": "Final processed STP snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.07172775268555, + "relativeCreated": 74.26214218139648, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 4.649162292480469e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0006415843963623047, - "time_finished": "2019-12-30 18:01:08,146", - "time_start": "2019-12-30 18:01:08,145" + "time_consumption": 0.0006551742553710938, + "time_finished": "2020-02-03 18:42:08,780", + "time_start": "2020-02-03 18:42:08,779" }, "_G40UUH5DEemxr4bbKXhxkg": { "args": null, - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1436596, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7751892, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 34, + "lineno": 40, "message": "_G40UUH5DEemxr4bbKXhxkg", "module": "__init__", "moduleLogger": [], - "msecs": 143.6595916748047, + "msecs": 775.1891613006592, "msg": "_G40UUH5DEemxr4bbKXhxkg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.25385856628418, + "relativeCreated": 69.15736198425293, "stack_info": null, "testcaseLogger": [ { "args": [ "b':testframe: for csp'" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1437058, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7752748, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -8524,15 +10825,15 @@ "message": "Creating testframe for \"b':testframe: for csp'\"", "module": "test_csp", "moduleLogger": [], - "msecs": 143.7058448791504, + "msecs": 775.2747535705566, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.30011177062988, + "relativeCreated": 69.24295425415039, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -8541,8 +10842,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.143834, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7756674, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8559,8 +10860,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1437643, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7755172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8570,15 +10871,15 @@ "lineno": 22, "message": "Result (CSP-Frame): ()", "module": "test", - "msecs": 143.76425743103027, + "msecs": 775.5172252655029, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.358524322509766, + "relativeCreated": 69.48542594909668, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8587,8 +10888,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1437995, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7756085, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8598,64 +10899,64 @@ "lineno": 26, "message": "Expectation (CSP-Frame): result = ()", "module": "test", - "msecs": 143.7995433807373, + "msecs": 775.6085395812988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.3938102722168, + "relativeCreated": 69.57674026489258, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 143.83411407470703, + "msecs": 775.6674289703369, "msg": "CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.42838096618652, + "relativeCreated": 69.63562965393066, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.457069396972656e-05 + "time_consumption": 5.888938903808594e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00017452239990234375, - "time_finished": "2019-12-30 18:01:08,143", - "time_start": "2019-12-30 18:01:08,143" + "time_consumption": 0.0004782676696777344, + "time_finished": "2020-02-03 18:42:08,775", + "time_start": "2020-02-03 18:42:08,775" }, "_NpOWgI9tEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146553, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780399, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 43, + "lineno": 49, "message": "_NpOWgI9tEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 146.55303955078125, + "msecs": 780.3990840911865, "msg": "_NpOWgI9tEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.14730644226074, + "relativeCreated": 74.36728477478027, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1466084, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780453, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -8666,15 +10967,15 @@ "message": "Processing wrong data (list)", "module": "test_stp", "moduleLogger": [], - "msecs": 146.6083526611328, + "msecs": 780.4529666900635, "msg": "Processing wrong data (list)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.202619552612305, + "relativeCreated": 74.42116737365723, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -8683,8 +10984,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1467297, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7805731, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8701,8 +11002,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146657, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8712,15 +11013,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 146.65699005126953, + "msecs": 780.5030345916748, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.25125694274902, + "relativeCreated": 74.47123527526855, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8729,8 +11030,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1466925, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7805386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8740,37 +11041,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 146.69251441955566, + "msecs": 780.5385589599609, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.286781311035156, + "relativeCreated": 74.50675964355469, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 146.7297077178955, + "msecs": 780.5731296539307, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.323974609375, + "relativeCreated": 74.54133033752441, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.719329833984375e-05 + "time_consumption": 3.457069396972656e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.14689, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.78069, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8787,8 +11088,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.146773, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780619, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8798,15 +11099,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 146.773099899292, + "msecs": 780.6189060211182, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.367366790771484, + "relativeCreated": 74.58710670471191, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8815,8 +11116,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1468356, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7806559, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8826,34 +11127,34 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 146.8355655670166, + "msecs": 780.6558609008789, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.429832458496094, + "relativeCreated": 74.62406158447266, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 146.88992500305176, + "msecs": 780.6899547576904, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.48419189453125, + "relativeCreated": 74.65815544128418, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.435943603515625e-05 + "time_consumption": 3.409385681152344e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1469333, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7807326, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -8864,15 +11165,15 @@ "message": "Processing wrong data (int)", "module": "test_stp", "moduleLogger": [], - "msecs": 146.93331718444824, + "msecs": 780.7326316833496, "msg": "Processing wrong data (int)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.527584075927734, + "relativeCreated": 74.70083236694336, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -8881,8 +11182,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1470454, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7808485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8899,8 +11200,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,146", - "created": 1577725268.1469798, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7807813, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8910,15 +11211,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 146.97980880737305, + "msecs": 780.7812690734863, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.57407569885254, + "relativeCreated": 74.74946975708008, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -8927,8 +11228,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1470127, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7808151, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8938,37 +11239,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 147.01271057128906, + "msecs": 780.8151245117188, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.606977462768555, + "relativeCreated": 74.7833251953125, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 147.04537391662598, + "msecs": 780.848503112793, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.63964080810547, + "relativeCreated": 74.81670379638672, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.266334533691406e-05 + "time_consumption": 3.337860107421875e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.147152, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7809691, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8985,8 +11286,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1470873, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.780893, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8996,15 +11297,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 147.08733558654785, + "msecs": 780.893087387085, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.681602478027344, + "relativeCreated": 74.86128807067871, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9013,8 +11314,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1471193, + "asctime": "2020-02-03 18:42:08,780", + "created": 1580751728.7809293, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9024,34 +11325,34 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 147.11928367614746, + "msecs": 780.9293270111084, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.71355056762695, + "relativeCreated": 74.89752769470215, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 147.15194702148438, + "msecs": 780.9691429138184, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.74621391296387, + "relativeCreated": 74.93734359741211, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.266334533691406e-05 + "time_consumption": 3.981590270996094e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.147191, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7810154, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -9062,15 +11363,15 @@ "message": "Processing wrong data (str)", "module": "test_stp", "moduleLogger": [], - "msecs": 147.19104766845703, + "msecs": 781.0153961181641, "msg": "Processing wrong data (str)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.78531455993652, + "relativeCreated": 74.98359680175781, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -9079,8 +11380,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.147306, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7811344, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9097,8 +11398,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1472402, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7810655, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9108,15 +11409,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 147.24016189575195, + "msecs": 781.0654640197754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.834428787231445, + "relativeCreated": 75.03366470336914, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9125,8 +11426,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1472735, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7810986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9136,37 +11437,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 147.27354049682617, + "msecs": 781.0986042022705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.867807388305664, + "relativeCreated": 75.06680488586426, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 147.30596542358398, + "msecs": 781.1343669891357, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.90023231506348, + "relativeCreated": 75.10256767272949, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.24249267578125e-05 + "time_consumption": 3.5762786865234375e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1474748, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7812493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9183,8 +11484,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1473608, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7811832, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9194,15 +11495,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 147.36080169677734, + "msecs": 781.1832427978516, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 63.955068588256836, + "relativeCreated": 75.15144348144531, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9211,8 +11512,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1474206, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7812166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9222,66 +11523,66 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 147.42064476013184, + "msecs": 781.2166213989258, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.01491165161133, + "relativeCreated": 75.18482208251953, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 147.4747657775879, + "msecs": 781.2492847442627, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.06903266906738, + "relativeCreated": 75.21748542785645, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.412101745605469e-05 + "time_consumption": 3.266334533691406e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0009217262268066406, - "time_finished": "2019-12-30 18:01:08,147", - "time_start": "2019-12-30 18:01:08,146" + "time_consumption": 0.0008502006530761719, + "time_finished": "2020-02-03 18:42:08,781", + "time_start": "2020-02-03 18:42:08,780" }, "_QjJiIIwZEem5qYOdmXl77A": { "args": null, - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1439028, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7758234, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 35, + "lineno": 41, "message": "_QjJiIIwZEem5qYOdmXl77A", "module": "__init__", "moduleLogger": [], - "msecs": 143.90277862548828, + "msecs": 775.8233547210693, "msg": "_QjJiIIwZEem5qYOdmXl77A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.49704551696777, + "relativeCreated": 69.79155540466309, "stack_info": null, "testcaseLogger": [ { "args": [ "b':testframe: for csp\\n'" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144063, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7761395, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -9297,8 +11598,8 @@ "CSP:", "(10): 3a 74 65 73 74 66 72 61 6d 65" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.143974, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7759628, "exc_info": null, "exc_text": null, "filename": "csp.py", @@ -9308,15 +11609,15 @@ "lineno": 65, "message": "CSP: Leaving data in buffer (to be processed next time): (10): 3a 74 65 73 74 66 72 61 6d 65", "module": "csp", - "msecs": 143.97406578063965, + "msecs": 775.9628295898438, "msg": "%s Leaving data in buffer (to be processed next time): %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/csp.py", - "process": 14677, + "pathname": "src/stringtools/csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.56833267211914, + "relativeCreated": 69.9310302734375, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9324,8 +11625,8 @@ "CSP:", "(19): 3a 74 65 73 74 66 72 61 6d 65 3a 20 66 6f 72 20 63 73 70" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1440294, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7760637, "exc_info": null, "exc_text": null, "filename": "csp.py", @@ -9335,37 +11636,37 @@ "lineno": 67, "message": "CSP: message identified - (19): 3a 74 65 73 74 66 72 61 6d 65 3a 20 66 6f 72 20 63 73 70", "module": "csp", - "msecs": 144.0293788909912, + "msecs": 776.0636806488037, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/csp.py", - "process": 14677, + "pathname": "src/stringtools/csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.6236457824707, + "relativeCreated": 70.03188133239746, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.06299591064453, + "msecs": 776.139497756958, "msg": "Processing testframe: \"%s\" in two snippets", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.65726280212402, + "relativeCreated": 70.10769844055176, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.361701965332031e-05 + "time_consumption": 7.581710815429688e-05 }, { "args": [ "[]", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144192, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7764156, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9382,8 +11683,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1441185, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.776255, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9393,15 +11694,15 @@ "lineno": 22, "message": "Result (First processed CSP-Snippet): [ ] ()", "module": "test", - "msecs": 144.1185474395752, + "msecs": 776.2548923492432, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.71281433105469, + "relativeCreated": 70.22309303283691, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9410,8 +11711,8 @@ "[ ]", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1441538, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7763236, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9421,37 +11722,37 @@ "lineno": 26, "message": "Expectation (First processed CSP-Snippet): result = [ ] ()", "module": "test", - "msecs": 144.15383338928223, + "msecs": 776.3235569000244, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.74810028076172, + "relativeCreated": 70.29175758361816, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.19198036193848, + "msecs": 776.4155864715576, "msg": "First processed CSP-Snippet is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.78624725341797, + "relativeCreated": 70.38378715515137, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 + "time_consumption": 9.202957153320312e-05 }, { "args": [ "[b':testframe: for csp']", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144324, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7766898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9468,8 +11769,8 @@ "[ b':testframe: for csp' ]", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1442394, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7765272, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9479,15 +11780,15 @@ "lineno": 22, "message": "Result (Final processed CSP-Frame): [ b':testframe: for csp' ] ()", "module": "test", - "msecs": 144.2394256591797, + "msecs": 776.5271663665771, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.83369255065918, + "relativeCreated": 70.4953670501709, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9496,8 +11797,8 @@ "[ b':testframe: for csp' ]", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1442766, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7765982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9507,58 +11808,58 @@ "lineno": 26, "message": "Expectation (Final processed CSP-Frame): result = [ b':testframe: for csp' ] ()", "module": "test", - "msecs": 144.27661895751953, + "msecs": 776.5982151031494, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.87088584899902, + "relativeCreated": 70.56641578674316, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.32406425476074, + "msecs": 776.6897678375244, "msg": "Final processed CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.918331146240234, + "relativeCreated": 70.65796852111816, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.744529724121094e-05 + "time_consumption": 9.1552734375e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00042128562927246094, - "time_finished": "2019-12-30 18:01:08,144", - "time_start": "2019-12-30 18:01:08,143" + "time_consumption": 0.0008664131164550781, + "time_finished": "2020-02-03 18:42:08,776", + "time_start": "2020-02-03 18:42:08,775" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2019-12-30 18:01:08,140", - "created": 1577725268.1407516, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7721083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 23, + "lineno": 29, "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 140.75160026550293, + "msecs": 772.1083164215088, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.34586715698242, + "relativeCreated": 66.07651710510254, "stack_info": null, "testcaseLogger": [ { @@ -9566,8 +11867,8 @@ "de ad be ef", "" ], - "asctime": "2019-12-30 18:01:08,140", - "created": 1577725268.1409588, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7721698, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9578,22 +11879,22 @@ "message": "Checking test pattern de ad be ef ().", "module": "test_hexlify", "moduleLogger": [], - "msecs": 140.9587860107422, + "msecs": 772.169828414917, "msg": "Checking test pattern %s (%s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.55305290222168, + "relativeCreated": 66.13802909851074, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1414554, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7726297, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9608,8 +11909,8 @@ "args": [ "(4): de ad be ef" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1410325, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7722266, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9619,23 +11920,23 @@ "lineno": 29, "message": "Return value of hexlify is (4): de ad be ef", "module": "test_hexlify", - "msecs": 141.03245735168457, + "msecs": 772.2265720367432, "msg": "Return value of hexlify is %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.62672424316406, + "relativeCreated": 66.19477272033691, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { "args": [ "(4): DE AD BE EF" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1412742, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7724502, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9645,15 +11946,15 @@ "lineno": 31, "message": "Using upper string for comparison: (4): DE AD BE EF", "module": "test_hexlify", - "msecs": 141.27421379089355, + "msecs": 772.4502086639404, "msg": "Using upper string for comparison: %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.86848068237305, + "relativeCreated": 66.41840934753418, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9661,8 +11962,8 @@ "DE", "(4): DE AD BE EF" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1413217, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.772494, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9672,15 +11973,15 @@ "lineno": 41, "message": "\"DE\" found in \"(4): DE AD BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 141.32165908813477, + "msecs": 772.4940776824951, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.91592597961426, + "relativeCreated": 66.46227836608887, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9688,8 +11989,8 @@ "AD", "AD BE EF" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1413584, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7725344, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9699,15 +12000,15 @@ "lineno": 41, "message": "\"AD\" found in \"AD BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 141.3583755493164, + "msecs": 772.5343704223633, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.9526424407959, + "relativeCreated": 66.50257110595703, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9715,8 +12016,8 @@ "BE", "BE EF" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1413922, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7725668, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9726,15 +12027,15 @@ "lineno": 41, "message": "\"BE\" found in \"BE EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 141.39223098754883, + "msecs": 772.5667953491211, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 57.98649787902832, + "relativeCreated": 66.53499603271484, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9742,8 +12043,8 @@ "EF", "EF" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1414242, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7725987, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -9753,66 +12054,66 @@ "lineno": 41, "message": "\"EF\" found in \"EF\"... Reducing pattern", "module": "test_hexlify", - "msecs": 141.42417907714844, + "msecs": 772.5987434387207, "msg": "\"%s\" found in \"%s\"... Reducing pattern", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.01844596862793, + "relativeCreated": 66.56694412231445, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 141.45541191101074, + "msecs": 772.6297378540039, "msg": "Pattern included all relevant information in the correct order.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.049678802490234, + "relativeCreated": 66.59793853759766, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.123283386230469e-05 + "time_consumption": 3.0994415283203125e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0007038116455078125, - "time_finished": "2019-12-30 18:01:08,141", - "time_start": "2019-12-30 18:01:08,140" + "time_consumption": 0.0005214214324951172, + "time_finished": "2020-02-03 18:42:08,772", + "time_start": "2020-02-03 18:42:08,772" }, "_Y_h3gH5CEemxr4bbKXhxkg": { "args": null, - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1434166, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7748706, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 33, + "lineno": 39, "message": "_Y_h3gH5CEemxr4bbKXhxkg", "module": "__init__", "moduleLogger": [], - "msecs": 143.4166431427002, + "msecs": 774.8706340789795, "msg": "_Y_h3gH5CEemxr4bbKXhxkg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.01091003417969, + "relativeCreated": 68.83883476257324, "stack_info": null, "testcaseLogger": [ { "args": [ "b':testframe: for csp'" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1434705, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7749321, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -9823,15 +12124,15 @@ "message": "Creating testframe for \"b':testframe: for csp'\"", "module": "test_csp", "moduleLogger": [], - "msecs": 143.47052574157715, + "msecs": 774.9321460723877, "msg": "Creating testframe for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.06479263305664, + "relativeCreated": 68.90034675598145, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -9840,8 +12141,8 @@ "b':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1435885, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7750697, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9858,8 +12159,8 @@ "b':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1435194, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.774995, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9869,15 +12170,15 @@ "lineno": 22, "message": "Result (CSP-Frame): b':testframe: for csp\\n' ()", "module": "test", - "msecs": 143.51940155029297, + "msecs": 774.9950885772705, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.11366844177246, + "relativeCreated": 68.96328926086426, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -9886,8 +12187,8 @@ "b':testframe: for csp\\n'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1435542, + "asctime": "2020-02-03 18:42:08,775", + "created": 1580751728.7750323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9897,64 +12198,64 @@ "lineno": 26, "message": "Expectation (CSP-Frame): result = b':testframe: for csp\\n' ()", "module": "test", - "msecs": 143.5542106628418, + "msecs": 775.0322818756104, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.14847755432129, + "relativeCreated": 69.0004825592041, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 143.58854293823242, + "msecs": 775.0697135925293, "msg": "CSP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.182809829711914, + "relativeCreated": 69.03791427612305, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.4332275390625e-05 + "time_consumption": 3.743171691894531e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00017189979553222656, - "time_finished": "2019-12-30 18:01:08,143", - "time_start": "2019-12-30 18:01:08,143" + "time_consumption": 0.0001990795135498047, + "time_finished": "2020-02-03 18:42:08,775", + "time_start": "2020-02-03 18:42:08,774" }, "_ZhyRAI9OEemAMMFgxXT6lA": { "args": null, - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1443968, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7768807, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 36, + "lineno": 42, "message": "_ZhyRAI9OEemAMMFgxXT6lA", "module": "__init__", "moduleLogger": [], - "msecs": 144.39678192138672, + "msecs": 776.8807411193848, "msg": "_ZhyRAI9OEemAMMFgxXT6lA", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 60.99104881286621, + "relativeCreated": 70.84894180297852, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1444454, + "asctime": "2020-02-03 18:42:08,776", + "created": 1580751728.7769954, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -9965,15 +12266,15 @@ "message": "Processing wrong data (list)", "module": "test_csp", "moduleLogger": [], - "msecs": 144.44541931152344, + "msecs": 776.9954204559326, "msg": "Processing wrong data (list)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.03968620300293, + "relativeCreated": 70.96362113952637, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -9982,8 +12283,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1445665, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7771642, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10000,8 +12301,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1444933, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7770913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10011,15 +12312,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 144.49334144592285, + "msecs": 777.0912647247314, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.087608337402344, + "relativeCreated": 71.0594654083252, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10028,8 +12329,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1445282, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7771282, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10039,37 +12340,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 144.52815055847168, + "msecs": 777.1282196044922, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.12241744995117, + "relativeCreated": 71.09642028808594, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.56653594970703, + "msecs": 777.1642208099365, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.16080284118652, + "relativeCreated": 71.13242149353027, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.838539123535156e-05 + "time_consumption": 3.600120544433594e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1446762, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7772949, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10086,8 +12387,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1446104, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7772155, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10097,15 +12398,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 144.61040496826172, + "msecs": 777.2154808044434, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.20467185974121, + "relativeCreated": 71.18368148803711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10114,8 +12415,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144643, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7772534, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10125,34 +12426,34 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 144.64306831359863, + "msecs": 777.2533893585205, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.237335205078125, + "relativeCreated": 71.22159004211426, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.67620849609375, + "msecs": 777.2948741912842, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.27047538757324, + "relativeCreated": 71.26307487487793, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.314018249511719e-05 + "time_consumption": 4.1484832763671875e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1447158, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.777347, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -10163,15 +12464,15 @@ "message": "Processing wrong data (int)", "module": "test_csp", "moduleLogger": [], - "msecs": 144.7157859802246, + "msecs": 777.3470878601074, "msg": "Processing wrong data (int)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.3100528717041, + "relativeCreated": 71.31528854370117, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -10180,8 +12481,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1448333, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.777484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10198,8 +12499,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1447616, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7774036, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10209,15 +12510,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 144.7615623474121, + "msecs": 777.4035930633545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.3558292388916, + "relativeCreated": 71.37179374694824, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10226,8 +12527,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1447973, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7774398, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10237,37 +12538,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 144.79732513427734, + "msecs": 777.4398326873779, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.391592025756836, + "relativeCreated": 71.40803337097168, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.83332633972168, + "msecs": 777.4839401245117, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.42759323120117, + "relativeCreated": 71.45214080810547, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 4.410743713378906e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1449566, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.777609, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10284,8 +12585,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144876, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7775369, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10295,15 +12596,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 144.87600326538086, + "msecs": 777.5368690490723, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.47027015686035, + "relativeCreated": 71.50506973266602, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10312,8 +12613,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.144924, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7775736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10323,34 +12624,34 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 144.92392539978027, + "msecs": 777.5735855102539, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.518192291259766, + "relativeCreated": 71.54178619384766, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 144.9565887451172, + "msecs": 777.60910987854, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.55085563659668, + "relativeCreated": 71.57731056213379, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.266334533691406e-05 + "time_consumption": 3.552436828613281e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,144", - "created": 1577725268.1449974, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7776713, "exc_info": null, "exc_text": null, "filename": "test_csp.py", @@ -10361,15 +12662,15 @@ "message": "Processing wrong data (str)", "module": "test_csp", "moduleLogger": [], - "msecs": 144.99735832214355, + "msecs": 777.6713371276855, "msg": "Processing wrong data (str)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_csp.py", - "process": 14677, + "pathname": "src/tests/test_csp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.59162521362305, + "relativeCreated": 71.6395378112793, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -10378,8 +12679,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1451087, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7778606, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10396,8 +12697,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1450424, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7777455, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10407,15 +12708,15 @@ "lineno": 22, "message": "Result (Wrong data exception): ()", "module": "test", - "msecs": 145.04241943359375, + "msecs": 777.7454853057861, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.63668632507324, + "relativeCreated": 71.71368598937988, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10424,8 +12725,8 @@ "", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1450758, + "asctime": "2020-02-03 18:42:08,777", + "created": 1580751728.7777941, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10435,37 +12736,37 @@ "lineno": 26, "message": "Expectation (Wrong data exception): result = ()", "module": "test", - "msecs": 145.07579803466797, + "msecs": 777.7941226959229, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.67006492614746, + "relativeCreated": 71.7623233795166, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 145.10869979858398, + "msecs": 777.8606414794922, "msg": "Wrong data exception is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.70296669006348, + "relativeCreated": 71.82884216308594, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.2901763916015625e-05 + "time_consumption": 6.651878356933594e-05 }, { "args": [ "b''", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1452184, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7781034, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10482,8 +12783,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1451528, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.778014, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10493,15 +12794,15 @@ "lineno": 22, "message": "Result (Buffer still empty): b'' ()", "module": "test", - "msecs": 145.15280723571777, + "msecs": 778.0139446258545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.747074127197266, + "relativeCreated": 71.98214530944824, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10510,8 +12811,8 @@ "b''", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.145186, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.778064, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10521,64 +12822,1212 @@ "lineno": 26, "message": "Expectation (Buffer still empty): result = b'' ()", "module": "test", - "msecs": 145.1859474182129, + "msecs": 778.0640125274658, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.78021430969238, + "relativeCreated": 72.03221321105957, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 145.2183723449707, + "msecs": 778.1033515930176, "msg": "Buffer still empty is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 61.812639236450195, + "relativeCreated": 72.07155227661133, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.24249267578125e-05 + "time_consumption": 3.933906555175781e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0008215904235839844, - "time_finished": "2019-12-30 18:01:08,145", - "time_start": "2019-12-30 18:01:08,144" + "time_consumption": 0.0012226104736328125, + "time_finished": "2020-02-03 18:42:08,778", + "time_start": "2020-02-03 18:42:08,776" }, - "_dpJzwCcUEeqsHsnJQYCN8Q": { + "_dB5IoEaTEeq5fPlXIeQCXQ": { "args": null, - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1522748, + "asctime": "2020-02-03 18:42:08,767", + "created": 1580751728.7679908, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 47, + "lineno": 24, + "message": "_dB5IoEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 767.9908275604248, + "msg": "_dB5IoEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 61.959028244018555, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.768334, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1.17e-10 is correct (Content '117p' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1.17e-10", + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.768223, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1.17e-10): '117p' ()", + "module": "test", + "msecs": 768.2230472564697, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.19124794006348, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1.17e-10", + "'117p'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7682862, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1.17e-10): result = '117p' ()", + "module": "test", + "msecs": 768.2862281799316, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.25442886352539, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 768.333911895752, + "msg": "Physical representation for 1.17e-10 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.3021125793457, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 4.76837158203125e-05 + }, + { + "args": [ + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7684898, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 5.4e-08 is correct (Content '54n' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 5.4e-08", + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7684102, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 5.4e-08): '54n' ()", + "module": "test", + "msecs": 768.4102058410645, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.3784065246582, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 5.4e-08", + "'54n'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.76845, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 5.4e-08): result = '54n' ()", + "module": "test", + "msecs": 768.4500217437744, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.418222427368164, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 768.4898376464844, + "msg": "Physical representation for 5.4e-08 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.458038330078125, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.981590270996094e-05 + }, + { + "args": [ + "'25.3\u00b5'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7686324, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 2.53e-05 is correct (Content '25.3\u00b5' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 2.53e-05", + "'25.3\u00b5'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7685573, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 2.53e-05): '25.3\u00b5' ()", + "module": "test", + "msecs": 768.5573101043701, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.52551078796387, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 2.53e-05", + "'25.3\u00b5'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7685955, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 2.53e-05): result = '25.3\u00b5' ()", + "module": "test", + "msecs": 768.5954570770264, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.56365776062012, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 768.6324119567871, + "msg": "Physical representation for 2.53e-05 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.60061264038086, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.695487976074219e-05 + }, + { + "args": [ + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7687805, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 0.1 is correct (Content '100m' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 0.1", + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7687016, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 0.1): '100m' ()", + "module": "test", + "msecs": 768.7015533447266, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.66975402832031, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 0.1", + "'100m'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7687402, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 0.1): result = '100m' ()", + "module": "test", + "msecs": 768.740177154541, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.708377838134766, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 768.7804698944092, + "msg": "Physical representation for 0.1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.74867057800293, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 4.029273986816406e-05 + }, + { + "args": [ + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7689137, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1 is correct (Content '1' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1", + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.768841, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1): '1' ()", + "module": "test", + "msecs": 768.841028213501, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.80922889709473, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1", + "'1'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.768879, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1): result = '1' ()", + "module": "test", + "msecs": 768.8789367675781, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.847137451171875, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 768.913745880127, + "msg": "Physical representation for 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.8819465637207, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.4809112548828125e-05 + }, + { + "args": [ + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7690704, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1000 is correct (Content '1k' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1000", + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,768", + "created": 1580751728.7689734, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1000): '1k' ()", + "module": "test", + "msecs": 768.9733505249023, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.941551208496094, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1000", + "'1k'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7690122, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1000): result = '1k' ()", + "module": "test", + "msecs": 769.0122127532959, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 62.98041343688965, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.0703868865967, + "msg": "Physical representation for 1000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.03858757019043, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 5.817413330078125e-05 + }, + { + "args": [ + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7692144, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1005001 is correct (Content '1.01M' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1005001", + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.769143, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1005001): '1.01M' ()", + "module": "test", + "msecs": 769.1431045532227, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.111305236816406, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1005001", + "'1.01M'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7691782, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1005001): result = '1.01M' ()", + "module": "test", + "msecs": 769.1781520843506, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.146352767944336, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.214391708374, + "msg": "Physical representation for 1005001 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.18259239196777, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.62396240234375e-05 + }, + { + "args": [ + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7693496, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1004000000 is correct (Content '1G' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1004000000", + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7692819, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1004000000): '1G' ()", + "module": "test", + "msecs": 769.2818641662598, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.250064849853516, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1004000000", + "'1G'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7693162, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1004000000): result = '1G' ()", + "module": "test", + "msecs": 769.3161964416504, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.28439712524414, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.3495750427246, + "msg": "Physical representation for 1004000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.31777572631836, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.337860107421875e-05 + }, + { + "args": [ + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7694783, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 1003000000000 is correct (Content '1T' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 1003000000000", + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7694106, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 1003000000000): '1T' ()", + "module": "test", + "msecs": 769.4106101989746, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.37881088256836, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 1003000000000", + "'1T'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7694447, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 1003000000000): result = '1T' ()", + "module": "test", + "msecs": 769.4447040557861, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.41290473937988, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.4783210754395, + "msg": "Physical representation for 1003000000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.4465217590332, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.361701965332031e-05 + }, + { + "args": [ + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7696116, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 10000000000000000 is correct (Content '10P' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 10000000000000000", + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7695403, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 10000000000000000): '10P' ()", + "module": "test", + "msecs": 769.5403099060059, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.50851058959961, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 10000000000000000", + "'10P'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7695777, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 10000000000000000): result = '10P' ()", + "module": "test", + "msecs": 769.5777416229248, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.545942306518555, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.6115970611572, + "msg": "Physical representation for 10000000000000000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.57979774475098, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.3855438232421875e-05 + }, + { + "args": [ + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.769733, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 17.17 is correct (Content '17.17' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 17.17", + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7696662, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 17.17): '17.17' ()", + "module": "test", + "msecs": 769.6661949157715, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.634395599365234, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 17.17", + "'17.17'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7696998, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 17.17): result = '17.17' ()", + "module": "test", + "msecs": 769.6998119354248, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.668012619018555, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.7329521179199, + "msg": "Physical representation for 17.17 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.70115280151367, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.314018249511719e-05 + }, + { + "args": [ + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7698672, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 117000 is correct (Content '117k' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 117000", + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7697968, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 117000): '117k' ()", + "module": "test", + "msecs": 769.7968482971191, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.76504898071289, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 117000", + "'117k'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7698343, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 117000): result = '117k' ()", + "module": "test", + "msecs": 769.8342800140381, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.802480697631836, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.8671817779541, + "msg": "Physical representation for 117000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.83538246154785, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.2901763916015625e-05 + }, + { + "args": [ + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7699878, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Physical representation for 117.17 is correct (Content '117.2' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Physical representation for 117.17", + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.7699213, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Physical representation for 117.17): '117.2' ()", + "module": "test", + "msecs": 769.9213027954102, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.889503479003906, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Physical representation for 117.17", + "'117.2'", + "" + ], + "asctime": "2020-02-03 18:42:08,769", + "created": 1580751728.769955, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Physical representation for 117.17): result = '117.2' ()", + "module": "test", + "msecs": 769.9549198150635, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.92312049865723, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 769.9878215789795, + "msg": "Physical representation for 117.17 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 63.95602226257324, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.2901763916015625e-05 + } + ], + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 0.0019969940185546875, + "time_finished": "2020-02-03 18:42:08,769", + "time_start": "2020-02-03 18:42:08,767" + }, + "_dpJzwCcUEeqsHsnJQYCN8Q": { + "args": null, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7836766, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 53, "message": "_dpJzwCcUEeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 152.27484703063965, + "msecs": 783.6766242980957, "msg": "_dpJzwCcUEeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.86911392211914, + "relativeCreated": 77.64482498168945, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1527357, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7839646, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -10593,8 +14042,8 @@ "args": [ "b': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 152.42695808410645, + "msecs": 783.7793827056885, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.02122497558594, + "relativeCreated": 77.74758338928223, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10648,8 +14097,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1524677, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7838156, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10659,15 +14108,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 152.4677276611328, + "msecs": 783.8156223297119, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.0619945526123, + "relativeCreated": 77.78382301330566, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10675,8 +14124,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1525197, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7838576, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10686,15 +14135,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 152.51970291137695, + "msecs": 783.8575839996338, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.11396980285645, + "relativeCreated": 77.82578468322754, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10702,8 +14151,8 @@ "STP:", 100 ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.152594, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7838936, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10713,15 +14162,15 @@ "lineno": 137, "message": "STP: data (64) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 152.59408950805664, + "msecs": 783.8935852050781, "msg": "%s data (%02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.18835639953613, + "relativeCreated": 77.86178588867188, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10729,8 +14178,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1526668, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7839308, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -10740,37 +14189,37 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 152.66680717468262, + "msecs": 783.930778503418, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.26107406616211, + "relativeCreated": 77.89897918701172, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 152.73571014404297, + "msecs": 783.9646339416504, "msg": "Processing data with an insufficient end pattern.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.32997703552246, + "relativeCreated": 77.93283462524414, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 6.890296936035156e-05 + "time_consumption": 3.3855438232421875e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1530066, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7841005, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10787,8 +14236,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1528456, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7840197, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10798,15 +14247,15 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync and data again after start of frame): [ [ ] ] ()", "module": "test", - "msecs": 152.8456211090088, + "msecs": 784.0197086334229, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.43988800048828, + "relativeCreated": 77.9879093170166, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10815,8 +14264,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1529253, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7840567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10826,37 +14275,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync and data again after start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 152.9252529144287, + "msecs": 784.0566635131836, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.5195198059082, + "relativeCreated": 78.02486419677734, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 153.00655364990234, + "msecs": 784.1005325317383, "msg": "Return value list if processing data_sync and data again after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.60082054138184, + "relativeCreated": 78.06873321533203, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 8.130073547363281e-05 + "time_consumption": 4.38690185546875e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1532018, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7842212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10873,8 +14322,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1530867, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7841492, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10884,15 +14333,15 @@ "lineno": 22, "message": "Result (State after processing data_sync and data again after start of frame): 0 ()", "module": "test", - "msecs": 153.08666229248047, + "msecs": 784.149169921875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.68092918395996, + "relativeCreated": 78.11737060546875, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10901,8 +14350,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1531472, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7841828, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10912,37 +14361,37 @@ "lineno": 26, "message": "Expectation (State after processing data_sync and data again after start of frame): result = 0 ()", "module": "test", - "msecs": 153.14722061157227, + "msecs": 784.1827869415283, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.74148750305176, + "relativeCreated": 78.15098762512207, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 153.20181846618652, + "msecs": 784.2211723327637, "msg": "State after processing data_sync and data again after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.79608535766602, + "relativeCreated": 78.18937301635742, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.459785461425781e-05 + "time_consumption": 3.838539123535156e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.153426, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.784337, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10959,8 +14408,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1532793, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7842708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10970,15 +14419,15 @@ "lineno": 22, "message": "Result (Buffer size after processing data with insufficient end pattern): 0 ()", "module": "test", - "msecs": 153.27930450439453, + "msecs": 784.2707633972168, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.87357139587402, + "relativeCreated": 78.23896408081055, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -10987,8 +14436,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.153351, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7843041, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10998,34 +14447,34 @@ "lineno": 26, "message": "Expectation (Buffer size after processing data with insufficient end pattern): result = 0 ()", "module": "test", - "msecs": 153.3510684967041, + "msecs": 784.304141998291, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 69.9453353881836, + "relativeCreated": 78.27234268188477, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 153.425931930542, + "msecs": 784.337043762207, "msg": "Buffer size after processing data with insufficient end pattern is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.02019882202148, + "relativeCreated": 78.30524444580078, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 7.486343383789062e-05 + "time_consumption": 3.2901763916015625e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1539254, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7846212, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -11040,8 +14489,8 @@ "args": [ "b': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 153.5813808441162, + "msecs": 784.4383716583252, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.1756477355957, + "relativeCreated": 78.40657234191895, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11095,8 +14544,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1536424, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7844741, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11106,15 +14555,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 153.6424160003662, + "msecs": 784.4741344451904, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.2366828918457, + "relativeCreated": 78.44233512878418, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11122,8 +14571,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1537008, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.784515, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11133,15 +14582,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 153.7008285522461, + "msecs": 784.5149040222168, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.29509544372559, + "relativeCreated": 78.48310470581055, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11150,8 +14599,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.1537478, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7845495, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11161,15 +14610,15 @@ "lineno": 119, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 153.7477970123291, + "msecs": 784.5494747161865, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.3420639038086, + "relativeCreated": 78.51767539978027, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11177,8 +14626,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:08,153", - "created": 1577725268.153868, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7845871, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11188,37 +14637,37 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 153.8679599761963, + "msecs": 784.5871448516846, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.46222686767578, + "relativeCreated": 78.55534553527832, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 153.92541885375977, + "msecs": 784.6212387084961, "msg": "Processing data with an insufficient end pattern (start pattern instead of end pattern).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.51968574523926, + "relativeCreated": 78.58943939208984, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.745887756347656e-05 + "time_consumption": 3.409385681152344e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1541502, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7847562, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11235,8 +14684,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1540108, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7846737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11246,15 +14695,15 @@ "lineno": 22, "message": "Result (Return value list if processing 2nd start of frame): [ [ ] ] ()", "module": "test", - "msecs": 154.01077270507812, + "msecs": 784.6736907958984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.60503959655762, + "relativeCreated": 78.64189147949219, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11263,8 +14712,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1540773, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.78471, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11274,37 +14723,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing 2nd start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 154.07729148864746, + "msecs": 784.7099304199219, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.67155838012695, + "relativeCreated": 78.67813110351562, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 154.15024757385254, + "msecs": 784.7561836242676, "msg": "Return value list if processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.74451446533203, + "relativeCreated": 78.72438430786133, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 7.295608520507812e-05 + "time_consumption": 4.6253204345703125e-05 }, { "args": [ "3", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.154335, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7848735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11321,8 +14770,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1542237, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.784804, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11332,15 +14781,15 @@ "lineno": 22, "message": "Result (State after processing 2nd start of frame): 3 ()", "module": "test", - "msecs": 154.22368049621582, + "msecs": 784.804105758667, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.81794738769531, + "relativeCreated": 78.77230644226074, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11349,8 +14798,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1542761, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.784837, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11360,37 +14809,37 @@ "lineno": 26, "message": "Expectation (State after processing 2nd start of frame): result = 3 ()", "module": "test", - "msecs": 154.27613258361816, + "msecs": 784.837007522583, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.87039947509766, + "relativeCreated": 78.80520820617676, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 154.33502197265625, + "msecs": 784.8734855651855, "msg": "State after processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.92928886413574, + "relativeCreated": 78.8416862487793, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.888938903808594e-05 + "time_consumption": 3.647804260253906e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1545057, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.784988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11407,8 +14856,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1543918, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7849221, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11418,15 +14867,15 @@ "lineno": 22, "message": "Result (Buffer size after processing 2nd start of frame): 0 ()", "module": "test", - "msecs": 154.39176559448242, + "msecs": 784.9221229553223, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 70.98603248596191, + "relativeCreated": 78.89032363891602, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11435,8 +14884,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.15445, + "asctime": "2020-02-03 18:42:08,784", + "created": 1580751728.7849557, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11446,34 +14895,34 @@ "lineno": 26, "message": "Expectation (Buffer size after processing 2nd start of frame): result = 0 ()", "module": "test", - "msecs": 154.4499397277832, + "msecs": 784.9557399749756, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.0442066192627, + "relativeCreated": 78.92394065856934, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 154.50572967529297, + "msecs": 784.9879264831543, "msg": "Buffer size after processing 2nd start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.09999656677246, + "relativeCreated": 78.95612716674805, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.5789947509765625e-05 + "time_consumption": 3.218650817871094e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.154993, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7852683, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -11488,8 +14937,8 @@ "args": [ "b': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 154.64401245117188, + "msecs": 785.0799560546875, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.23827934265137, + "relativeCreated": 79.04815673828125, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11543,8 +14992,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1546972, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7851176, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11554,15 +15003,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 154.69717979431152, + "msecs": 785.1176261901855, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.29144668579102, + "relativeCreated": 79.0858268737793, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11570,8 +15019,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1547627, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7851586, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11581,15 +15030,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 154.76274490356445, + "msecs": 785.158634185791, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.35701179504395, + "relativeCreated": 79.12683486938477, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11597,8 +15046,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.1548865, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.785194, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11608,15 +15057,15 @@ "lineno": 133, "message": "STP: second data sync (3a) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 154.88648414611816, + "msecs": 785.193920135498, "msg": "%s second data sync (%02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.48075103759766, + "relativeCreated": 79.1621208190918, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11624,8 +15073,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:08,154", - "created": 1577725268.154948, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7852337, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -11635,37 +15084,37 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 154.94799613952637, + "msecs": 785.233736038208, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.54226303100586, + "relativeCreated": 79.20193672180176, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 154.99305725097656, + "msecs": 785.2683067321777, "msg": "Processing data with an insufficient end pattern (two times sync instead of end pattern).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.58732414245605, + "relativeCreated": 79.23650741577148, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 3.457069396972656e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.155135, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.785399, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11682,8 +15131,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1550477, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7853203, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11693,15 +15142,15 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync twice after start of frame): [ [ ] ] ()", "module": "test", - "msecs": 155.04765510559082, + "msecs": 785.3202819824219, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.64192199707031, + "relativeCreated": 79.28848266601562, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11710,8 +15159,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.155088, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7853568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11721,37 +15170,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync twice after start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 155.08794784545898, + "msecs": 785.3567600250244, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.68221473693848, + "relativeCreated": 79.32496070861816, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 155.134916305542, + "msecs": 785.3989601135254, "msg": "Return value list if processing data_sync twice after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.72918319702148, + "relativeCreated": 79.36716079711914, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 4.220008850097656e-05 }, { "args": [ "1", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1552517, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7855122, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11768,8 +15217,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1551838, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.785447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11779,15 +15228,15 @@ "lineno": 22, "message": "Result (State after processing data_sync twice after start of frame): 1 ()", "module": "test", - "msecs": 155.1837921142578, + "msecs": 785.4468822479248, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.7780590057373, + "relativeCreated": 79.41508293151855, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11796,8 +15245,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.155218, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7854793, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11807,66 +15256,66 @@ "lineno": 26, "message": "Expectation (State after processing data_sync twice after start of frame): result = 1 ()", "module": "test", - "msecs": 155.21788597106934, + "msecs": 785.4793071746826, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.81215286254883, + "relativeCreated": 79.44750785827637, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 155.25174140930176, + "msecs": 785.5122089385986, "msg": "State after processing data_sync twice after start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.84600830078125, + "relativeCreated": 79.48040962219238, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.3855438232421875e-05 + "time_consumption": 3.2901763916015625e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0029768943786621094, - "time_finished": "2019-12-30 18:01:08,155", - "time_start": "2019-12-30 18:01:08,152" + "time_consumption": 0.0018355846405029297, + "time_finished": "2020-02-03 18:42:08,785", + "time_start": "2020-02-03 18:42:08,783" }, "_fp-i0Hu8Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1429856, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7743552, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 29, + "lineno": 35, "message": "_fp-i0Hu8Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 142.98558235168457, + "msecs": 774.3551731109619, "msg": "_fp-i0Hu8Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.57984924316406, + "relativeCreated": 68.32337379455566, "stack_info": null, "testcaseLogger": [ { "args": [ "(26): 1f 8b 08 00 34 e0 04 5d 02 ff 63 60 40 01 ff 51 01 00 2d 8a 7d de 1e 00 00 00" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1431673, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.774574, "exc_info": null, "exc_text": null, "filename": "test_gzip.py", @@ -11880,50 +15329,50 @@ { "args": [ 0.8666666666666667, - 6.29425048828125e-05 + 8.440017700195312e-05 ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.143103, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.774503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "gzip_extract", "levelname": "DEBUG", "levelno": 10, - "lineno": 123, + "lineno": 178, "message": "GZIP: Finished to extract a string (compression_rate=0.867, consumed_time=0.0s).", "module": "__init__", - "msecs": 143.10288429260254, + "msecs": 774.5029926300049, "msg": "GZIP: Finished to extract a string (compression_rate=%.3f, consumed_time=%.1fs).", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/__init__.py", - "process": 14677, + "pathname": "src/stringtools/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.69715118408203, + "relativeCreated": 68.47119331359863, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 143.16725730895996, + "msecs": 774.5740413665771, "msg": "Extracting stream: %s", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_gzip.py", - "process": 14677, + "pathname": "src/tests/test_gzip.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.76152420043945, + "relativeCreated": 68.5422420501709, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 6.437301635742188e-05 + "time_consumption": 7.104873657226562e-05 }, { "args": [ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1433418, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7747788, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11940,8 +15389,8 @@ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.1432679, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7746954, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11951,15 +15400,15 @@ "lineno": 22, "message": "Result (Extracted data): '(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff' ()", "module": "test", - "msecs": 143.26786994934082, + "msecs": 774.6953964233398, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.86213684082031, + "relativeCreated": 68.6635971069336, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -11968,8 +15417,8 @@ "'(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff'", "" ], - "asctime": "2019-12-30 18:01:08,143", - "created": 1577725268.143306, + "asctime": "2020-02-03 18:42:08,774", + "created": 1580751728.7747397, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11979,64 +15428,1156 @@ "lineno": 26, "message": "Expectation (Extracted data): result = '(30): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff' ()", "module": "test", - "msecs": 143.30601692199707, + "msecs": 774.7397422790527, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.90028381347656, + "relativeCreated": 68.70794296264648, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 143.3417797088623, + "msecs": 774.7788429260254, "msg": "Extracted data is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 59.9360466003418, + "relativeCreated": 68.74704360961914, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.5762786865234375e-05 + "time_consumption": 3.910064697265625e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0003561973571777344, - "time_finished": "2019-12-30 18:01:08,143", - "time_start": "2019-12-30 18:01:08,142" + "time_consumption": 0.00042366981506347656, + "time_finished": "2020-02-03 18:42:08,774", + "time_start": "2020-02-03 18:42:08,774" }, - "_n3BdUCcREeqsHsnJQYCN8Q": { + "_hpUmwEaTEeq5fPlXIeQCXQ": { "args": null, - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1495078, + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7700944, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 46, + "lineno": 25, + "message": "_hpUmwEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 770.0943946838379, + "msg": "_hpUmwEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.06259536743164, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7702694, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 59 is correct (Content '00:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 59", + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.770185, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 59): '00:59' ()", + "module": "test", + "msecs": 770.1849937438965, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.15319442749023, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 59", + "'00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7702346, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 59): result = '00:59' ()", + "module": "test", + "msecs": 770.2345848083496, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.20278549194336, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.2693939208984, + "msg": "Time representation for 59 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.23759460449219, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.4809112548828125e-05 + }, + { + "args": [ + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7703936, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 60 is correct (Content '01:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 60", + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7703235, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 60): '01:00' ()", + "module": "test", + "msecs": 770.3235149383545, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.29171562194824, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 60", + "'01:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7703576, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 60): result = '01:00' ()", + "module": "test", + "msecs": 770.357608795166, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.32580947875977, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.3936100006104, + "msg": "Time representation for 60 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.3618106842041, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.600120544433594e-05 + }, + { + "args": [ + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.770514, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 3599 is correct (Content '59:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 3599", + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7704463, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 3599): '59:59' ()", + "module": "test", + "msecs": 770.4463005065918, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.41450119018555, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 3599", + "'59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7704804, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 3599): result = '59:59' ()", + "module": "test", + "msecs": 770.4803943634033, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.44859504699707, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.5140113830566, + "msg": "Time representation for 3599 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.48221206665039, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.361701965332031e-05 + }, + { + "args": [ + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7706325, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 3600 is correct (Content '01:00:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 3600", + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7705662, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 3600): '01:00:00' ()", + "module": "test", + "msecs": 770.5662250518799, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.53442573547363, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 3600", + "'01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7705994, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 3600): result = '01:00:00' ()", + "module": "test", + "msecs": 770.599365234375, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.56756591796875, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.6325054168701, + "msg": "Time representation for 3600 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.60070610046387, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.314018249511719e-05 + }, + { + "args": [ + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7707515, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86399 is correct (Content '23:59:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86399", + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7706833, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86399): '23:59:59' ()", + "module": "test", + "msecs": 770.6832885742188, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.6514892578125, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86399", + "'23:59:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7707162, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86399): result = '23:59:59' ()", + "module": "test", + "msecs": 770.7161903381348, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.68439102172852, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.7514762878418, + "msg": "Time representation for 86399 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.71967697143555, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.528594970703125e-05 + }, + { + "args": [ + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.770875, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86400 is correct (Content '1D' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86400", + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7708077, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86400): '1D' ()", + "module": "test", + "msecs": 770.8077430725098, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.77594375610352, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86400", + "'1D'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7708416, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86400): result = '1D' ()", + "module": "test", + "msecs": 770.8415985107422, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.80979919433594, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.8749771118164, + "msg": "Time representation for 86400 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.84317779541016, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.337860107421875e-05 + }, + { + "args": [ + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7709997, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 86459 is correct (Content '1D 00:59' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 86459", + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.770933, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 86459): '1D 00:59' ()", + "module": "test", + "msecs": 770.9329128265381, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.90111351013184, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 86459", + "'1D 00:59'", + "" + ], + "asctime": "2020-02-03 18:42:08,770", + "created": 1580751728.7709665, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 86459): result = '1D 00:59' ()", + "module": "test", + "msecs": 770.9665298461914, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.93473052978516, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 770.9996700286865, + "msg": "Time representation for 86459 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 64.96787071228027, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.314018249511719e-05 + }, + { + "args": [ + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7711222, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Time representation for 90000 is correct (Content '1D 01:00:00' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time representation for 90000", + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7710552, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time representation for 90000): '1D 01:00:00' ()", + "module": "test", + "msecs": 771.0552215576172, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.02342224121094, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Time representation for 90000", + "'1D 01:00:00'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7710893, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Time representation for 90000): result = '1D 01:00:00' ()", + "module": "test", + "msecs": 771.0893154144287, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.05751609802246, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 771.1222171783447, + "msg": "Time representation for 90000 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.09041786193848, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.2901763916015625e-05 + } + ], + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 0.001027822494506836, + "time_finished": "2020-02-03 18:42:08,771", + "time_start": "2020-02-03 18:42:08,770" + }, + "_iXxBIEaTEeq5fPlXIeQCXQ": { + "args": null, + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7712178, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 26, + "message": "_iXxBIEaTEeq5fPlXIeQCXQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 771.2178230285645, + "msg": "_iXxBIEaTEeq5fPlXIeQCXQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.1860237121582, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.771504, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 17.4 is correct (Content '87/5' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 17.4", + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7714124, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 17.4): '87/5' ()", + "module": "test", + "msecs": 771.4123725891113, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.38057327270508, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 17.4", + "'87/5'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7714605, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 17.4): result = '87/5' ()", + "module": "test", + "msecs": 771.4605331420898, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.4287338256836, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 771.5039253234863, + "msg": "Fraction representation for 17.4 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.47212600708008, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 4.3392181396484375e-05 + }, + { + "args": [ + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7716682, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.25 is correct (Content '1/4' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.25", + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7715845, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.25): '1/4' ()", + "module": "test", + "msecs": 771.5845108032227, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.5527114868164, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.25", + "'1/4'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.77163, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.25): result = '1/4' ()", + "module": "test", + "msecs": 771.630048751831, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.5982494354248, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 771.6681957244873, + "msg": "Fraction representation for 0.25 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.63639640808105, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.814697265625e-05 + }, + { + "args": [ + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7718456, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.1 is correct (Content '1/10' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.1", + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7717695, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.1): '1/10' ()", + "module": "test", + "msecs": 771.7695236206055, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.73772430419922, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.1", + "'1/10'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7718096, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.1): result = '1/10' ()", + "module": "test", + "msecs": 771.8095779418945, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.77777862548828, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 771.8455791473389, + "msg": "Fraction representation for 0.1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.81377983093262, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.600120544433594e-05 + }, + { + "args": [ + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.772016, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Fraction representation for 0.01666667 is correct (Content '1/60' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Fraction representation for 0.01666667", + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7719417, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Fraction representation for 0.01666667): '1/60' ()", + "module": "test", + "msecs": 771.9416618347168, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.90986251831055, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + }, + { + "args": [ + "Fraction representation for 0.01666667", + "'1/60'", + "" + ], + "asctime": "2020-02-03 18:42:08,771", + "created": 1580751728.7719803, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Fraction representation for 0.01666667): result = '1/60' ()", + "module": "test", + "msecs": 771.9802856445312, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.948486328125, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread" + } + ], + "msecs": 772.0160484313965, + "msg": "Fraction representation for 0.01666667 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 32335, + "processName": "MainProcess", + "relativeCreated": 65.98424911499023, + "stack_info": null, + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 3.5762786865234375e-05 + } + ], + "thread": 140532198459200, + "threadName": "MainThread", + "time_consumption": 0.0007982254028320312, + "time_finished": "2020-02-03 18:42:08,772", + "time_start": "2020-02-03 18:42:08,771" + }, + "_n3BdUCcREeqsHsnJQYCN8Q": { + "args": null, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7827518, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 52, "message": "_n3BdUCcREeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 149.5077610015869, + "msecs": 782.7517986297607, "msg": "_n3BdUCcREeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.1020278930664, + "relativeCreated": 76.71999931335449, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.149832, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7829242, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12051,8 +16592,8 @@ "args": [ "b':1'" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1496124, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.782809, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12062,15 +16603,15 @@ "lineno": 100, "message": "Sending b':1' to stp.", "module": "test_stp", - "msecs": 149.6124267578125, + "msecs": 782.8090190887451, "msg": "Sending %s to stp.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.20669364929199, + "relativeCreated": 76.77721977233887, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12078,8 +16619,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1496964, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7828543, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12089,15 +16630,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 149.69635009765625, + "msecs": 782.8543186187744, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.29061698913574, + "relativeCreated": 76.82251930236816, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12106,8 +16647,8 @@ 58, 49 ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1497684, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.782891, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12117,37 +16658,37 @@ "lineno": 108, "message": "STP: no start pattern (3a 31) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_IDLE", "module": "stp", - "msecs": 149.76835250854492, + "msecs": 782.891035079956, "msg": "%s no start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.36261940002441, + "relativeCreated": 76.8592357635498, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 149.83201026916504, + "msecs": 782.9241752624512, "msg": "Processing data with an insufficient start pattern.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.42627716064453, + "relativeCreated": 76.89237594604492, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 6.365776062011719e-05 + "time_consumption": 3.314018249511719e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,150", - "created": 1577725268.150107, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7830663, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12164,8 +16705,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1499264, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.782981, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12175,15 +16716,15 @@ "lineno": 22, "message": "Result (Return value list if processing incorrect start of frame): [ [ ] ] ()", "module": "test", - "msecs": 149.92642402648926, + "msecs": 782.9809188842773, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.52069091796875, + "relativeCreated": 76.9491195678711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12192,8 +16733,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,149", - "created": 1577725268.1499977, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7830207, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12203,37 +16744,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing incorrect start of frame): result = [ [ ] ] ()", "module": "test", - "msecs": 149.99771118164062, + "msecs": 783.0207347869873, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.59197807312012, + "relativeCreated": 76.98893547058105, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 150.10690689086914, + "msecs": 783.0662727355957, "msg": "Return value list if processing incorrect start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.70117378234863, + "relativeCreated": 77.03447341918945, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00010919570922851562 + "time_consumption": 4.553794860839844e-05 }, { "args": [ "0", "" ], - "asctime": "2019-12-30 18:01:08,150", - "created": 1577725268.1505911, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7831826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12250,8 +16791,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,150", - "created": 1577725268.150192, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7831156, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12261,15 +16802,15 @@ "lineno": 22, "message": "Result (State after processing incorrect start of frame): 0 ()", "module": "test", - "msecs": 150.1920223236084, + "msecs": 783.1156253814697, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.78628921508789, + "relativeCreated": 77.08382606506348, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12278,8 +16819,8 @@ "0", "" ], - "asctime": "2019-12-30 18:01:08,150", - "created": 1577725268.1503477, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7831492, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12289,34 +16830,34 @@ "lineno": 26, "message": "Expectation (State after processing incorrect start of frame): result = 0 ()", "module": "test", - "msecs": 150.34770965576172, + "msecs": 783.149242401123, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 66.94197654724121, + "relativeCreated": 77.1174430847168, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 150.5911350250244, + "msecs": 783.1826210021973, "msg": "State after processing incorrect start of frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 67.1854019165039, + "relativeCreated": 77.15082168579102, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0002434253692626953 + "time_consumption": 3.337860107421875e-05 }, { "args": [], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.1514008, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7833428, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12331,8 +16872,8 @@ "args": [ "b'::'" ], - "asctime": "2019-12-30 18:01:08,150", - "created": 1577725268.1509066, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7832322, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12342,15 +16883,15 @@ "lineno": 110, "message": "Sending b'::' to stp.", "module": "test_stp", - "msecs": 150.90656280517578, + "msecs": 783.2322120666504, "msg": "Sending %s to stp.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 67.50082969665527, + "relativeCreated": 77.20041275024414, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12358,8 +16899,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.1511364, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7832754, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12369,15 +16910,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 151.1363983154297, + "msecs": 783.2753658294678, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 67.73066520690918, + "relativeCreated": 77.24356651306152, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12385,8 +16926,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.151271, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7833104, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12396,37 +16937,37 @@ "lineno": 110, "message": "STP: 2nd data sync (3a) received => keep state", "module": "stp", - "msecs": 151.27110481262207, + "msecs": 783.3104133605957, "msg": "%s 2nd data sync (%02x) received => keep state", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 67.86537170410156, + "relativeCreated": 77.27861404418945, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 151.40080451965332, + "msecs": 783.3428382873535, "msg": "Processing data with an insufficient start pattern (two times sync).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 67.99507141113281, + "relativeCreated": 77.31103897094727, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00012969970703125 + "time_consumption": 3.24249267578125e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.1518493, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7834737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12443,8 +16984,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.1515605, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7833924, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12454,15 +16995,15 @@ "lineno": 22, "message": "Result (Return value list if processing data_sync twice): [ [ ] ] ()", "module": "test", - "msecs": 151.56054496765137, + "msecs": 783.3924293518066, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.15481185913086, + "relativeCreated": 77.36063003540039, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12471,8 +17012,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,151", - "created": 1577725268.1517072, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7834282, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12482,37 +17023,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing data_sync twice): result = [ [ ] ] ()", "module": "test", - "msecs": 151.70717239379883, + "msecs": 783.4281921386719, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.30143928527832, + "relativeCreated": 77.39639282226562, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 151.84926986694336, + "msecs": 783.4737300872803, "msg": "Return value list if processing data_sync twice is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.44353675842285, + "relativeCreated": 77.44193077087402, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00014209747314453125 + "time_consumption": 4.553794860839844e-05 }, { "args": [ "1", "" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1521492, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.783588, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12529,8 +17070,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.1520069, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7835217, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12540,15 +17081,15 @@ "lineno": 22, "message": "Result (State after processing data_sync twice): 1 ()", "module": "test", - "msecs": 152.0068645477295, + "msecs": 783.5216522216797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.60113143920898, + "relativeCreated": 77.48985290527344, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12557,8 +17098,8 @@ "1", "" ], - "asctime": "2019-12-30 18:01:08,152", - "created": 1577725268.15211, + "asctime": "2020-02-03 18:42:08,783", + "created": 1580751728.7835543, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12568,66 +17109,66 @@ "lineno": 26, "message": "Expectation (State after processing data_sync twice): result = 1 ()", "module": "test", - "msecs": 152.11009979248047, + "msecs": 783.5543155670166, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.70436668395996, + "relativeCreated": 77.52251625061035, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 152.14920043945312, + "msecs": 783.5879325866699, "msg": "State after processing data_sync twice is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 68.74346733093262, + "relativeCreated": 77.55613327026367, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 3.361701965332031e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.002641439437866211, - "time_finished": "2019-12-30 18:01:08,152", - "time_start": "2019-12-30 18:01:08,149" + "time_consumption": 0.0008361339569091797, + "time_finished": "2020-02-03 18:42:08,783", + "time_start": "2020-02-03 18:42:08,782" }, "_pavPUHsZEemK6PYOxF9rHw": { "args": null, - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1415348, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7727165, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 24, + "lineno": 30, "message": "_pavPUHsZEemK6PYOxF9rHw", "module": "__init__", "moduleLogger": [], - "msecs": 141.53480529785156, + "msecs": 772.7165222167969, "msg": "_pavPUHsZEemK6PYOxF9rHw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.129072189331055, + "relativeCreated": 66.68472290039062, "stack_info": null, "testcaseLogger": [ { "args": [ 4 ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1415834, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.7727704, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -12638,15 +17179,15 @@ "message": "Checking test pattern with length 4.", "module": "test_hexlify", "moduleLogger": [], - "msecs": 141.58344268798828, + "msecs": 772.7704048156738, "msg": "Checking test pattern with length %d.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.17770957946777, + "relativeCreated": 66.73860549926758, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12656,8 +17197,8 @@ "(4): de ad be ef", 0 ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1417487, + "asctime": "2020-02-03 18:42:08,772", + "created": 1580751728.772949, "exc_info": null, "exc_text": null, "filename": "test_hexlify.py", @@ -12668,54 +17209,54 @@ "message": "\"(4)\" is in \"(4): de ad be ef\" at position 0", "module": "test_hexlify", "moduleLogger": [], - "msecs": 141.74866676330566, + "msecs": 772.9489803314209, "msg": "\"%s\" is in \"%s\" at position %d", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_hexlify.py", - "process": 14677, + "pathname": "src/tests/test_hexlify.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.342933654785156, + "relativeCreated": 66.91718101501465, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00021386146545410156, - "time_finished": "2019-12-30 18:01:08,141", - "time_start": "2019-12-30 18:01:08,141" + "time_consumption": 0.00023245811462402344, + "time_finished": "2020-02-03 18:42:08,772", + "time_start": "2020-02-03 18:42:08,772" }, "_rhV88Hu9Eemborg4LxXa3A": { "args": null, - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1418273, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.773058, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 25, + "lineno": 31, "message": "_rhV88Hu9Eemborg4LxXa3A", "module": "__init__", "moduleLogger": [], - "msecs": 141.82734489440918, + "msecs": 773.0579376220703, "msg": "_rhV88Hu9Eemborg4LxXa3A", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.42161178588867, + "relativeCreated": 67.02613830566406, "stack_info": null, "testcaseLogger": [ { "args": [ 4 ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1418786, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7731123, "exc_info": null, "exc_text": null, "filename": "test_linefeed_filter.py", @@ -12726,15 +17267,15 @@ "message": "Checking test pattern with length 4.", "module": "test_linefeed_filter", "moduleLogger": [], - "msecs": 141.87860488891602, + "msecs": 773.1122970581055, "msg": "Checking test pattern with length %d.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_linefeed_filter.py", - "process": 14677, + "pathname": "src/tests/test_linefeed_filter.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.47287178039551, + "relativeCreated": 67.08049774169922, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -12743,8 +17284,8 @@ "b'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:08,142", - "created": 1577725268.1420107, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.7732508, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12761,8 +17302,8 @@ "b'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1419368, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.773174, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12772,15 +17313,15 @@ "lineno": 22, "message": "Result (Returnvalue of linefeed_filter): b'test\\\\r\\\\n123\\\\r\\\\n' ()", "module": "test", - "msecs": 141.9367790222168, + "msecs": 773.1740474700928, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.53104591369629, + "relativeCreated": 67.14224815368652, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12789,8 +17330,8 @@ "b'test\\\\r\\\\n123\\\\r\\\\n'", "" ], - "asctime": "2019-12-30 18:01:08,141", - "created": 1577725268.1419742, + "asctime": "2020-02-03 18:42:08,773", + "created": 1580751728.773214, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12800,64 +17341,64 @@ "lineno": 26, "message": "Expectation (Returnvalue of linefeed_filter): result = b'test\\\\r\\\\n123\\\\r\\\\n' ()", "module": "test", - "msecs": 141.97421073913574, + "msecs": 773.2141017913818, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.568477630615234, + "relativeCreated": 67.18230247497559, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 142.01068878173828, + "msecs": 773.2508182525635, "msg": "Returnvalue of linefeed_filter is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 58.60495567321777, + "relativeCreated": 67.21901893615723, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.647804260253906e-05 + "time_consumption": 3.6716461181640625e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00018334388732910156, - "time_finished": "2019-12-30 18:01:08,142", - "time_start": "2019-12-30 18:01:08,141" + "time_consumption": 0.00019288063049316406, + "time_finished": "2020-02-03 18:42:08,773", + "time_start": "2020-02-03 18:42:08,773" }, "_wMotUCclEeqsHsnJQYCN8Q": { "args": null, - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1553516, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7856095, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 48, + "lineno": 54, "message": "_wMotUCclEeqsHsnJQYCN8Q", "module": "__init__", "moduleLogger": [], - "msecs": 155.3516387939453, + "msecs": 785.6094837188721, "msg": "_wMotUCclEeqsHsnJQYCN8Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 71.9459056854248, + "relativeCreated": 79.57768440246582, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1557658, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7860188, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12872,8 +17413,8 @@ "args": [ "b': changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 155.44962882995605, + "msecs": 785.7115268707275, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.04389572143555, + "relativeCreated": 79.67972755432129, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -12927,8 +17468,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1554868, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.785748, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -12938,23 +17479,23 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.4868221282959, + "msecs": 785.7480049133301, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.08108901977539, + "relativeCreated": 79.71620559692383, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { "args": [ "255" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1555293, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.785789, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -12964,23 +17505,23 @@ "lineno": 163, "message": "Setting state of stp to 255.", "module": "test_stp", - "msecs": 155.52926063537598, + "msecs": 785.7890129089355, "msg": "Setting state of stp to %s.", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.12352752685547, + "relativeCreated": 79.7572135925293, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { "args": [ "b': adding value (3a) back to data again and changing state -> STP_STATE_IDLE", "module": "stp", - "msecs": 155.6093692779541, + "msecs": 785.869836807251, "msg": "%s unknown state (%s) => adding value (%02x) back to data again and changing state -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.2036361694336, + "relativeCreated": 79.83803749084473, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13034,8 +17575,8 @@ "STP:", "(2): 74 65" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1556487, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7859087, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13045,15 +17586,15 @@ "lineno": 69, "message": "STP: Chunking \"(2): 74 65\" from buffer", "module": "stp", - "msecs": 155.64870834350586, + "msecs": 785.9086990356445, "msg": "%s Chunking \"%s\" from buffer", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.24297523498535, + "relativeCreated": 79.87689971923828, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13061,8 +17602,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1556854, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7859445, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13072,15 +17613,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 155.6854248046875, + "msecs": 785.9444618225098, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.27969169616699, + "relativeCreated": 79.91266250610352, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13089,8 +17630,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1557224, + "asctime": "2020-02-03 18:42:08,785", + "created": 1580751728.7859786, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13100,37 +17641,37 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 155.72237968444824, + "msecs": 785.9785556793213, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.31664657592773, + "relativeCreated": 79.94675636291504, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 155.76577186584473, + "msecs": 786.0188484191895, "msg": "Corrupting stp state and processing data.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.36003875732422, + "relativeCreated": 79.9870491027832, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.3392181396484375e-05 + "time_consumption": 4.029273986816406e-05 }, { "args": [ "[[]]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1559024, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7861898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13147,8 +17688,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1558187, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7860823, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13158,15 +17699,15 @@ "lineno": 22, "message": "Result (Return value list if processing start of a frame after state had been corrupted): [ [ ] ] ()", "module": "test", - "msecs": 155.81870079040527, + "msecs": 786.0822677612305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.41296768188477, + "relativeCreated": 80.05046844482422, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13175,8 +17716,8 @@ "[ [ ] ]", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1558566, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.786121, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13186,37 +17727,37 @@ "lineno": 26, "message": "Expectation (Return value list if processing start of a frame after state had been corrupted): result = [ [ ] ] ()", "module": "test", - "msecs": 155.85660934448242, + "msecs": 786.1208915710449, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.45087623596191, + "relativeCreated": 80.08909225463867, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 155.90238571166992, + "msecs": 786.1897945404053, "msg": "Return value list if processing start of a frame after state had been corrupted is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.49665260314941, + "relativeCreated": 80.15799522399902, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 4.57763671875e-05 + "time_consumption": 6.890296936035156e-05 }, { "args": [ "3", "" ], - "asctime": "2019-12-30 18:01:08,156", - "created": 1577725268.1560216, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7863202, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13233,8 +17774,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1559527, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7862532, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13244,15 +17785,15 @@ "lineno": 22, "message": "Result (State after processing start of a frame after state had been corrupted): 3 ()", "module": "test", - "msecs": 155.95269203186035, + "msecs": 786.2532138824463, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.54695892333984, + "relativeCreated": 80.22141456604004, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13261,8 +17802,8 @@ "3", "" ], - "asctime": "2019-12-30 18:01:08,155", - "created": 1577725268.1559877, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7862868, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13272,37 +17813,37 @@ "lineno": 26, "message": "Expectation (State after processing start of a frame after state had been corrupted): result = 3 ()", "module": "test", - "msecs": 155.98773956298828, + "msecs": 786.2868309020996, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.58200645446777, + "relativeCreated": 80.25503158569336, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 156.0215950012207, + "msecs": 786.3202095031738, "msg": "State after processing start of a frame after state had been corrupted is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.6158618927002, + "relativeCreated": 80.28841018676758, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.3855438232421875e-05 + "time_consumption": 3.337860107421875e-05 }, { "args": [ "2", "" ], - "asctime": "2019-12-30 18:01:08,156", - "created": 1577725268.1561327, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7864318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13319,8 +17860,8 @@ "2", "" ], - "asctime": "2019-12-30 18:01:08,156", - "created": 1577725268.1560652, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.7863662, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13330,15 +17871,15 @@ "lineno": 22, "message": "Result (Buffer size after corrupting stp state): 2 ()", "module": "test", - "msecs": 156.0652256011963, + "msecs": 786.3662242889404, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.65949249267578, + "relativeCreated": 80.33442497253418, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13347,8 +17888,8 @@ "2", "" ], - "asctime": "2019-12-30 18:01:08,156", - "created": 1577725268.1560988, + "asctime": "2020-02-03 18:42:08,786", + "created": 1580751728.786399, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13358,66 +17899,66 @@ "lineno": 26, "message": "Expectation (Buffer size after corrupting stp state): result = 2 ()", "module": "test", - "msecs": 156.0988426208496, + "msecs": 786.3988876342773, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.6931095123291, + "relativeCreated": 80.3670883178711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 156.13269805908203, + "msecs": 786.4317893981934, "msg": "Buffer size after corrupting stp state is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 72.72696495056152, + "relativeCreated": 80.39999008178711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.3855438232421875e-05 + "time_consumption": 3.2901763916015625e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.0007810592651367188, - "time_finished": "2019-12-30 18:01:08,156", - "time_start": "2019-12-30 18:01:08,155" + "time_consumption": 0.0008223056793212891, + "time_finished": "2020-02-03 18:42:08,786", + "time_start": "2020-02-03 18:42:08,785" }, "_xOCgkI9yEemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.147633, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7813468, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 44, + "lineno": 50, "message": "_xOCgkI9yEemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 147.63307571411133, + "msecs": 781.3467979431152, "msg": "_xOCgkI9yEemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.22734260559082, + "relativeCreated": 75.31499862670898, "stack_info": null, "testcaseLogger": [ { "args": [ "b'::>'" ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1484537, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7818627, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -13433,8 +17974,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.147737, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7814083, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13444,15 +17985,15 @@ "lineno": 98, "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "module": "stp", - "msecs": 147.7370262145996, + "msecs": 781.4083099365234, "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.3312931060791, + "relativeCreated": 75.37651062011719, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13461,8 +18002,8 @@ 58, 60 ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1478052, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7814467, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13472,15 +18013,15 @@ "lineno": 103, "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 147.80521392822266, + "msecs": 781.4466953277588, "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.39948081970215, + "relativeCreated": 75.41489601135254, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13488,8 +18029,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,147", - "created": 1577725268.1479301, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.781516, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13499,15 +18040,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 147.93014526367188, + "msecs": 781.5160751342773, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.52441215515137, + "relativeCreated": 75.4842758178711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13516,8 +18057,8 @@ 58, 61 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1480007, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7815766, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13527,15 +18068,15 @@ "lineno": 129, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 148.00071716308594, + "msecs": 781.5766334533691, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.59498405456543, + "relativeCreated": 75.54483413696289, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13543,8 +18084,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1480904, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7816284, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13554,15 +18095,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 148.09036254882812, + "msecs": 781.6283702850342, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.68462944030762, + "relativeCreated": 75.59657096862793, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13571,8 +18112,8 @@ 58, 61 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1481595, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7816658, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13582,15 +18123,15 @@ "lineno": 129, "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "module": "stp", - "msecs": 148.15950393676758, + "msecs": 781.6658020019531, "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.75377082824707, + "relativeCreated": 75.63400268554688, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13598,8 +18139,8 @@ "STP:", 58 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1482272, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7817037, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13609,15 +18150,15 @@ "lineno": 114, "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "module": "stp", - "msecs": 148.22721481323242, + "msecs": 781.7037105560303, "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.82148170471191, + "relativeCreated": 75.67191123962402, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13626,8 +18167,8 @@ 58, 62 ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1482916, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7817602, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13637,15 +18178,15 @@ "lineno": 124, "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "module": "stp", - "msecs": 148.29158782958984, + "msecs": 781.7602157592773, "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.88585472106934, + "relativeCreated": 75.7284164428711, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13653,8 +18194,8 @@ "STP:", "(21): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 3a 3c 73 74 70 3a 3e" ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1483846, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7818282, "exc_info": null, "exc_text": null, "filename": "stp.py", @@ -13664,37 +18205,37 @@ "lineno": 145, "message": "STP: message identified - (21): 74 65 73 74 66 72 61 6d 65 20 66 6f 72 20 3a 3c 73 74 70 3a 3e", "module": "stp", - "msecs": 148.38457107543945, + "msecs": 781.8281650543213, "msg": "%s message identified - %s", "name": "STRINGTOOLS", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/stringtools/stp.py", - "process": 14677, + "pathname": "src/stringtools/stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 64.97883796691895, + "relativeCreated": 75.79636573791504, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 148.4537124633789, + "msecs": 781.862735748291, "msg": "Processing testframe: \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.0479793548584, + "relativeCreated": 75.83093643188477, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 6.914138793945312e-05 + "time_consumption": 3.457069396972656e-05 }, { "args": [ "[b'testframe for :']", "" ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1486325, + "asctime": "2020-02-03 18:42:08,782", + "created": 1580751728.7820153, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13711,8 +18252,8 @@ "[ b'testframe for :' ]", "" ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.148533, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7819276, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13722,15 +18263,15 @@ "lineno": 22, "message": "Result (Processed STP-Frame): [ b'testframe for :' ] ()", "module": "test", - "msecs": 148.53310585021973, + "msecs": 781.9275856018066, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.12737274169922, + "relativeCreated": 75.89578628540039, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13739,8 +18280,8 @@ "[ b'testframe for :' ]", "" ], - "asctime": "2019-12-30 18:01:08,148", - "created": 1577725268.1485798, + "asctime": "2020-02-03 18:42:08,781", + "created": 1580751728.7819707, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13750,66 +18291,66 @@ "lineno": 26, "message": "Expectation (Processed STP-Frame): result = [ b'testframe for :' ] ()", "module": "test", - "msecs": 148.57983589172363, + "msecs": 781.970739364624, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.17410278320312, + "relativeCreated": 75.93894004821777, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 148.63252639770508, + "msecs": 782.015323638916, "msg": "Processed STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 65.22679328918457, + "relativeCreated": 75.98352432250977, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 5.269050598144531e-05 + "time_consumption": 4.458427429199219e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00099945068359375, - "time_finished": "2019-12-30 18:01:08,148", - "time_start": "2019-12-30 18:01:08,147" + "time_consumption": 0.0006685256958007812, + "time_finished": "2020-02-03 18:42:08,782", + "time_start": "2020-02-03 18:42:08,781" }, "_xiZqMI92Eemg3cv-3xZ25Q": { "args": null, - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1455705, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7787235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "testrun", "levelname": "INFO", "levelno": 20, - "lineno": 41, + "lineno": 47, "message": "_xiZqMI92Eemg3cv-3xZ25Q", "module": "__init__", "moduleLogger": [], - "msecs": 145.5705165863037, + "msecs": 778.7234783172607, "msg": "_xiZqMI92Eemg3cv-3xZ25Q", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/__init__.py", - "process": 14677, + "pathname": "/user_data/data/dirk/prj/unittest/stringtools/unittest/src/tests/__init__.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.1647834777832, + "relativeCreated": 72.69167900085449, "stack_info": null, "testcaseLogger": [ { "args": [ "b'testframe for :'" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1456487, + "asctime": "2020-02-03 18:42:08,778", + "created": 1580751728.7788358, "exc_info": null, "exc_text": null, "filename": "test_stp.py", @@ -13820,15 +18361,15 @@ "message": "Creating testframe including start and end pattern for \"b'testframe for :'\"", "module": "test_stp", "moduleLogger": [], - "msecs": 145.64871788024902, + "msecs": 778.8357734680176, "msg": "Creating testframe including start and end pattern for \"%s\"", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/tests/test_stp.py", - "process": 14677, + "pathname": "src/tests/test_stp.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.242984771728516, + "relativeCreated": 72.80397415161133, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -13837,8 +18378,8 @@ "b'::>'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1457665, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7795196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13855,8 +18396,8 @@ "b'::>'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1456978, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.7793484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13866,15 +18407,15 @@ "lineno": 22, "message": "Result (STP-Frame): b'::>' ()", "module": "test", - "msecs": 145.69783210754395, + "msecs": 779.3483734130859, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.29209899902344, + "relativeCreated": 73.31657409667969, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" }, { @@ -13883,8 +18424,8 @@ "b'::>'", "" ], - "asctime": "2019-12-30 18:01:08,145", - "created": 1577725268.1457324, + "asctime": "2020-02-03 18:42:08,779", + "created": 1580751728.779443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13894,41 +18435,44 @@ "lineno": 26, "message": "Expectation (STP-Frame): result = b'::>' ()", "module": "test", - "msecs": 145.73240280151367, + "msecs": 779.4430255889893, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.326669692993164, + "relativeCreated": 73.41122627258301, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread" } ], - "msecs": 145.7664966583252, + "msecs": 779.5195579528809, "msg": "STP-Frame is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/stringtools/unittest/src/unittest/test.py", - "process": 14677, + "pathname": "src/unittest/test.py", + "process": 32335, "processName": "MainProcess", - "relativeCreated": 62.36076354980469, + "relativeCreated": 73.48775863647461, "stack_info": null, - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 7.653236389160156e-05 } ], - "thread": 140565878331200, + "thread": 140532198459200, "threadName": "MainThread", - "time_consumption": 0.00019598007202148438, - "time_finished": "2019-12-30 18:01:08,145", - "time_start": "2019-12-30 18:01:08,145" + "time_consumption": 0.0007960796356201172, + "time_finished": "2020-02-03 18:42:08,779", + "time_start": "2020-02-03 18:42:08,778" } }, "testrun_id": "p3", - "time_consumption": 0.01386570930480957, + "time_consumption": 0.0162503719329834, "uid_list_sorted": [ + "_dB5IoEaTEeq5fPlXIeQCXQ", + "_hpUmwEaTEeq5fPlXIeQCXQ", + "_iXxBIEaTEeq5fPlXIeQCXQ", "_XzMFcHYZEem_kd-7nxt1sg", "_pavPUHsZEemK6PYOxF9rHw", "_rhV88Hu9Eemborg4LxXa3A", @@ -13951,6 +18495,6 @@ } ], "unittest_information": { - "Version": "d720b191532eb97d77fbb9aafb67181a" + "Version": "50d96e3d37f4672ae07c76a1a12c6546" } } \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index 1e9eacb..67042be 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ