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",
"