diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e103c73 --- /dev/null +++ b/__init__.py @@ -0,0 +1,422 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- + +""" +task (Task Module) +================== + +**Author:** + +* Dirk Alders + +**Description:** + + This Module supports helpfull classes for queues, tasks, ... + +**Submodules:** + +* :class:`task.crontab` +* :class:`task.delayed` +* :class:`task.periodic` +* :class:`task.queue` +* :class:`task.threaded_queue` + +**Unittest:** + + See also the :download:`unittest <../../task/_testresults_/unittest.pdf>` documentation. +""" +__DEPENDENCIES__ = [] + +import logging +import sys +import threading +import time +if sys.version_info >= (3, 0): + from queue import PriorityQueue + from queue import Empty +else: + from Queue import PriorityQueue + from Queue import Empty + +logger_name = 'TASK' +logger = logging.getLogger(logger_name) + +__DESCRIPTION__ = """The Module {\\tt %s} is designed to help with task issues like periodic tasks, delayed tasks, queues, threaded queues and crontabs. +For more Information read the documentation.""" % __name__.replace('_', '\_') +"""The Module Description""" +__INTERPRETER__ = (2, 3) +"""The Tested Interpreter-Versions""" + + +class queue(object): + """Class to execute queued methods. + + :param bool expire: The default value for expire. See also :py:func:`expire`. + + **Example:** + + .. literalinclude:: ../../task/_examples_/queue.py + + Will result to the following output: + + .. literalinclude:: ../../task/_examples_/queue.log + """ + class job(object): + def __init__(self, priority, callback, *args, **kwargs): + self.priority = priority + self.callback = callback + self.args = args + self.kwargs = kwargs + + def run(self, queue): + self.callback(queue, *self.args, **self.kwargs) + + def __lt__(self, other): + return self.priority < other.priority + + def __init__(self, expire=True): + self.__expire = expire + self.__stop = False + self.queue = PriorityQueue() + + def clean_queue(self): + """ + This Methods removes all jobs from the queue. + + .. note:: Be aware that already runnung jobs will not be terminated. + """ + while not self.queue.empty(): + try: + self.queue.get(False) + except Empty: # This block is hard to reach for a testcase, but is + continue # needed, if the thread runs dry while cleaning the queue. + self.queue.task_done() + + def enqueue(self, priority, method, *args, **kwargs): + """ + This enqueues a given callback. + + :param number priority: The priority indication number of this task. The lowest value will be queued first. + :param method method: Method to be executed + :param args args: Arguments to be given to method + :param kwargs kwargs: Kewordsarguments to be given to method + + .. note:: Called method will get this instance as first argument, followed by :py:data:`args` und :py:data:`kwargs`. + """ + self.queue.put(self.job(priority, method, *args, **kwargs)) + + def qsize(self): + return self.queue.qsize() + + def run(self): + """ + This starts the execution of the queued methods. + """ + self.__stop = False + while not self.__stop: + try: + self.queue.get(timeout=0.1).run(self) + except Empty: + if self.__expire: + break + if type(self) is threaded_queue: + self.thread = None + + def expire(self): + """ + This sets the expire flag. That means that the process will stop after queue gets empty. + """ + self.__expire = True + + def stop(self): + """ + This sets the stop flag. That means that the process will stop after finishing the active task. + """ + self.__stop = True + + +class threaded_queue(queue): + """Class to execute queued methods in a background thread (See also parent :py:class:`queue`). + + :param bool expire: The default value for expire. See also :py:func:`queue.expire`. + + **Example:** + + .. literalinclude:: ../../task/_examples_/threaded_queue.py + + Will result to the following output: + + .. literalinclude:: ../../task/_examples_/threaded_queue.log + """ + def __init__(self, expire=False): + queue.__init__(self, expire=expire) + self.thread = None + + def run(self): + if self.thread is None: + self.thread = threading.Thread(target=self._start, args=()) + self.thread.daemon = True # Daemonize thread + self.thread.start() # Start the execution + + def join(self): + """ + This blocks till the queue is empty. + + .. note:: If the queue does not run dry, join will block till the end of the days. + """ + self.expire() + if self.thread is not None: + self.thread.join() + + def stop(self): + queue.stop(self) + self.join() + + def _start(self): + queue.run(self) + + +class periodic(object): + """ + :param float cycle_time: Cycle time in seconds -- method will be executed every *cycle_time* seconds + :param method method: Method to be executed + :param args args: Arguments to be given to method + :param kwargs kwargs: Kewordsarguments to be given to method + + Class to execute a method cyclicly. + + .. note:: Called method will get this instance as first argument, followed by :py:data:`args` und :py:data:`kwargs`. + + **Example:** + + .. literalinclude:: ../../task/_examples_/periodic.py + + Will result to the following output: + + .. literalinclude:: ../../task/_examples_/periodic.log + """ + def __init__(self, cycle_time, method, *args, **kwargs): + self._lock = threading.Lock() + self._timer = None + self.method = method + self.cycle_time = cycle_time + self.args = args + self.kwargs = kwargs + self._stopped = True + self._last_tm = None + self.dt = None + + def join(self, timeout=0.1): + """ + This blocks till the cyclic task is terminated. + + :param float timeout: Cycle time for checking if task is stopped + + .. note:: Using join means that somewhere has to be a condition calling :py:func:`stop` to terminate. + """ + while not self._stopped: + time.sleep(timeout) + + def run(self): + """ + This starts the cyclic execution of the given method. + """ + if self._stopped: + self._set_timer(force_now=True) + + def stop(self): + """ + This stops the execution of any following task. + """ + self._lock.acquire() + self._stopped = True + if self._timer is not None: + self._timer.cancel() + self._lock.release() + + def _set_timer(self, force_now=False): + """ + This sets the timer for the execution of the next task. + """ + self._lock.acquire() + self._stopped = False + if force_now: + self._timer = threading.Timer(0, self._start) + else: + self._timer = threading.Timer(self.cycle_time, self._start) + self._timer.start() + self._lock.release() + + def _start(self): + tm = time.time() + if self._last_tm is not None: + self.dt = tm - self._last_tm + self._set_timer(force_now=False) + self.method(self, *self.args, **self.kwargs) + self._last_tm = tm + + +class delayed(periodic): + """Class to execute a method a given time in the future. See also parent :py:class:`periodic`. + + :param float time: Delay time for execution of the given method + :param method method: Method to be executed + :param args args: Arguments to be given to method + :param kwargs kwargs: Kewordsarguments to be given to method + + **Example:** + + .. literalinclude:: ../../task/_examples_/delayed.py + + Will result to the following output: + + .. literalinclude:: ../../task/_examples_/delayed.log + """ + def run(self): + """ + This starts the timer for the delayed execution. + """ + self._set_timer(force_now=False) + + def _start(self): + self.method(*self.args, **self.kwargs) + self.stop() + + +class crontab(periodic): + """Class to execute a callback at the specified time conditions. See also parent :py:class:`periodic`. + + :param accuracy: Repeat time in seconds for background task checking event triggering. This time is the maximum delay between specified time condition and the execution. + :type accuracy: float + + **Example:** + + .. literalinclude:: ../../task/_examples_/crontab.py + + Will result to the following output: + + .. literalinclude:: ../../task/_examples_/crontab.log + """ + ANY = '*' + """Constant for matching every condition.""" + + class cronjob(object): + """Class to handle cronjob parameters and cronjob changes. + + :param minute: Minute for execution. Either 0...59, [0...59, 0...59, ...] or :py:const:`crontab.ANY` for every Minute. + :type minute: int, list, str + :param hour: Hour for execution. Either 0...23, [0...23, 0...23, ...] or :py:const:`crontab.ANY` for every Hour. + :type hour: int, list, str + :param day_of_month: Day of Month for execution. Either 0...31, [0...31, 0...31, ...] or :py:const:`crontab.ANY` for every Day of Month. + :type day_of_month: int, list, str + :param month: Month for execution. Either 0...12, [0...12, 0...12, ...] or :py:const:`crontab.ANY` for every Month. + :type month: int, list, str + :param day_of_week: Day of Week for execution. Either 0...6, [0...6, 0...6, ...] or :py:const:`crontab.ANY` for every Day of Week. + :type day_of_week: int, list, str + :param callback: The callback to be executed. The instance of :py:class:`cronjob` will be given as the first, args and kwargs as the following parameters. + :type callback: func + + .. note:: This class should not be used stand alone. An instance will be created by adding a cronjob by using :py:func:`crontab.add_cronjob()`. + """ + class all_match(set): + """Universal set - match everything""" + def __contains__(self, item): + (item) + return True + + def __init__(self, minute, hour, day_of_month, month, day_of_week, callback, *args, **kwargs): + self.set_trigger_conditions(minute or crontab.ANY, hour or crontab.ANY, day_of_month or crontab.ANY, month or crontab.ANY, day_of_week or crontab.ANY) + self.callback = callback + self.args = args + self.kwargs = kwargs + self.__last_cron_check_time__ = None + self.__last_execution__ = None + + def set_trigger_conditions(self, minute=None, hour=None, day_of_month=None, month=None, day_of_week=None): + """This Method changes the execution parameters. + + :param minute: Minute for execution. Either 0...59, [0...59, 0...59, ...] or :py:const:`crontab.ANY` for every Minute. + :type minute: int, list, str + :param hour: Hour for execution. Either 0...23, [0...23, 0...23, ...] or :py:const:`crontab.ANY` for every Hour. + :type hour: int, list, str + :param day_of_month: Day of Month for execution. Either 0...31, [0...31, 0...31, ...] or :py:const:`crontab.ANY` for every Day of Month. + :type day_of_month: int, list, str + :param month: Month for execution. Either 0...12, [0...12, 0...12, ...] or :py:const:`crontab.ANY` for every Month. + :type month: int, list, str + :param day_of_week: Day of Week for execution. Either 0...6, [0...6, 0...6, ...] or :py:const:`crontab.ANY` for every Day of Week. + :type day_of_week: int, list, str + """ + if minute is not None: + self.minute = self.__conv_to_set__(minute) + if hour is not None: + self.hour = self.__conv_to_set__(hour) + if day_of_month is not None: + self.day_of_month = self.__conv_to_set__(day_of_month) + if month is not None: + self.month = self.__conv_to_set__(month) + if day_of_week is not None: + self.day_of_week = self.__conv_to_set__(day_of_week) + + def __conv_to_set__(self, obj): + if obj is crontab.ANY: + return self.all_match() + elif isinstance(obj, (int, long) if sys.version_info < (3,0) else (int)): + return set([obj]) + else: + return set(obj) + + def __execution_needed_for__(self, minute, hour, day_of_month, month, day_of_week): + if self.__last_execution__ != [minute, hour, day_of_month, month, day_of_week]: + if minute in self.minute and hour in self.hour and day_of_month in self.day_of_month and month in self.month and day_of_week in self.day_of_week: + return True + return False + + def __store_execution_reminder__(self, minute, hour, day_of_month, month, day_of_week): + self.__last_execution__ = [minute, hour, day_of_month, month, day_of_week] + + def cron_execution(self, tm): + """This Methods executes the Cron-Callback, if a execution is needed for the given time (depending on the parameters on initialisation) + + :param tm: (Current) Time Value to be checked. The time needs to be given in seconds since 1970 (e.g. generated by int(time.time())). + :type tm: int + """ + if self.__last_cron_check_time__ is None: + self.__last_cron_check_time__ = tm - 1 + # + for t in range(self.__last_cron_check_time__ + 1, tm + 1): + lt = time.localtime(t) + if self.__execution_needed_for__(lt[4], lt[3], lt[2], lt[1], lt[6]): + self.callback(self, *self.args, **self.kwargs) + self.__store_execution_reminder__(lt[4], lt[3], lt[2], lt[1], lt[6]) + break + self.__last_cron_check_time__ = tm + + def __init__(self, accuracy=30): + periodic.__init__(self, accuracy, self.__periodic__) + self.__crontab__ = [] + + def __periodic__(self, rt): + (rt) + tm = int(time.time()) + for cronjob in self.__crontab__: + cronjob.cron_execution(tm) + + def add_cronjob(self, minute, hour, day_of_month, month, day_of_week, callback, *args, **kwargs): + """This Method adds a cronjob to be executed. + + :param minute: Minute for execution. Either 0...59, [0...59, 0...59, ...] or :py:const:`crontab.ANY` for every Minute. + :type minute: int, list, str + :param hour: Hour for execution. Either 0...23, [0...23, 0...23, ...] or :py:const:`crontab.ANY` for every Hour. + :type hour: int, list, str + :param day_of_month: Day of Month for execution. Either 0...31, [0...31, 0...31, ...] or :py:const:`crontab.ANY` for every Day of Month. + :type day_of_month: int, list, str + :param month: Month for execution. Either 0...12, [0...12, 0...12, ...] or :py:const:`crontab.ANY` for every Month. + :type month: int, list, str + :param day_of_week: Day of Week for execution. Either 0...6, [0...6, 0...6, ...] or :py:const:`crontab.ANY` for every Day of Week. + :type day_of_week: int, list, str + :param callback: The callback to be executed. The instance of :py:class:`cronjob` will be given as the first, args and kwargs as the following parameters. + :type callback: func + + .. note:: The ``callback`` will be executed with it's instance of :py:class:`cronjob` as the first parameter. + """ + self.__crontab__.append(self.cronjob(minute, hour, day_of_month, month, day_of_week, callback, *args, **kwargs)) diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json new file mode 100644 index 0000000..7d3deb5 --- /dev/null +++ b/_testresults_/unittest.json @@ -0,0 +1,21012 @@ +{ + "coverage_information": [ + { + "branch_coverage": 98.0, + "filepath": "/user_data/data/dirk/prj/modules/task/pylibs/task", + "files": [ + { + "branch_coverage": 98.0, + "filepath": "/user_data/data/dirk/prj/modules/task/pylibs/task/__init__.py", + "fragments": [ + { + "coverage_state": "clean", + "end": 3, + "start": 1 + }, + { + "coverage_state": "covered", + "end": 4, + "start": 4 + }, + { + "coverage_state": "clean", + "end": 27, + "start": 5 + }, + { + "coverage_state": "covered", + "end": 28, + "start": 28 + }, + { + "coverage_state": "clean", + "end": 29, + "start": 29 + }, + { + "coverage_state": "covered", + "end": 36, + "start": 30 + }, + { + "coverage_state": "clean", + "end": 37, + "start": 37 + }, + { + "coverage_state": "covered", + "end": 39, + "start": 38 + }, + { + "coverage_state": "clean", + "end": 40, + "start": 40 + }, + { + "coverage_state": "covered", + "end": 42, + "start": 41 + }, + { + "coverage_state": "clean", + "end": 43, + "start": 43 + }, + { + "coverage_state": "covered", + "end": 44, + "start": 44 + }, + { + "coverage_state": "clean", + "end": 46, + "start": 45 + }, + { + "coverage_state": "covered", + "end": 47, + "start": 47 + }, + { + "coverage_state": "clean", + "end": 50, + "start": 48 + }, + { + "coverage_state": "covered", + "end": 51, + "start": 51 + }, + { + "coverage_state": "clean", + "end": 63, + "start": 52 + }, + { + "coverage_state": "covered", + "end": 69, + "start": 64 + }, + { + "coverage_state": "clean", + "end": 70, + "start": 70 + }, + { + "coverage_state": "covered", + "end": 72, + "start": 71 + }, + { + "coverage_state": "clean", + "end": 73, + "start": 73 + }, + { + "coverage_state": "covered", + "end": 75, + "start": 74 + }, + { + "coverage_state": "clean", + "end": 76, + "start": 76 + }, + { + "coverage_state": "covered", + "end": 80, + "start": 77 + }, + { + "coverage_state": "clean", + "end": 81, + "start": 81 + }, + { + "coverage_state": "covered", + "end": 82, + "start": 82 + }, + { + "coverage_state": "clean", + "end": 87, + "start": 83 + }, + { + "coverage_state": "covered", + "end": 90, + "start": 88 + }, + { + "coverage_state": "uncovered", + "end": 92, + "start": 91 + }, + { + "coverage_state": "covered", + "end": 93, + "start": 93 + }, + { + "coverage_state": "clean", + "end": 94, + "start": 94 + }, + { + "coverage_state": "covered", + "end": 95, + "start": 95 + }, + { + "coverage_state": "clean", + "end": 105, + "start": 96 + }, + { + "coverage_state": "covered", + "end": 106, + "start": 106 + }, + { + "coverage_state": "clean", + "end": 107, + "start": 107 + }, + { + "coverage_state": "covered", + "end": 109, + "start": 108 + }, + { + "coverage_state": "clean", + "end": 110, + "start": 110 + }, + { + "coverage_state": "covered", + "end": 111, + "start": 111 + }, + { + "coverage_state": "clean", + "end": 114, + "start": 112 + }, + { + "coverage_state": "covered", + "end": 119, + "start": 115 + }, + { + "coverage_state": "partially-covered", + "end": 120, + "start": 120 + }, + { + "coverage_state": "covered", + "end": 123, + "start": 121 + }, + { + "coverage_state": "clean", + "end": 124, + "start": 124 + }, + { + "coverage_state": "covered", + "end": 125, + "start": 125 + }, + { + "coverage_state": "clean", + "end": 128, + "start": 126 + }, + { + "coverage_state": "covered", + "end": 129, + "start": 129 + }, + { + "coverage_state": "clean", + "end": 130, + "start": 130 + }, + { + "coverage_state": "covered", + "end": 131, + "start": 131 + }, + { + "coverage_state": "clean", + "end": 134, + "start": 132 + }, + { + "coverage_state": "covered", + "end": 135, + "start": 135 + }, + { + "coverage_state": "clean", + "end": 137, + "start": 136 + }, + { + "coverage_state": "covered", + "end": 138, + "start": 138 + }, + { + "coverage_state": "clean", + "end": 150, + "start": 139 + }, + { + "coverage_state": "covered", + "end": 153, + "start": 151 + }, + { + "coverage_state": "clean", + "end": 154, + "start": 154 + }, + { + "coverage_state": "covered", + "end": 159, + "start": 155 + }, + { + "coverage_state": "clean", + "end": 160, + "start": 160 + }, + { + "coverage_state": "covered", + "end": 161, + "start": 161 + }, + { + "coverage_state": "clean", + "end": 166, + "start": 162 + }, + { + "coverage_state": "covered", + "end": 169, + "start": 167 + }, + { + "coverage_state": "clean", + "end": 170, + "start": 170 + }, + { + "coverage_state": "covered", + "end": 173, + "start": 171 + }, + { + "coverage_state": "clean", + "end": 174, + "start": 174 + }, + { + "coverage_state": "covered", + "end": 176, + "start": 175 + }, + { + "coverage_state": "clean", + "end": 178, + "start": 177 + }, + { + "coverage_state": "covered", + "end": 179, + "start": 179 + }, + { + "coverage_state": "clean", + "end": 197, + "start": 180 + }, + { + "coverage_state": "covered", + "end": 207, + "start": 198 + }, + { + "coverage_state": "clean", + "end": 208, + "start": 208 + }, + { + "coverage_state": "covered", + "end": 209, + "start": 209 + }, + { + "coverage_state": "clean", + "end": 216, + "start": 210 + }, + { + "coverage_state": "covered", + "end": 218, + "start": 217 + }, + { + "coverage_state": "clean", + "end": 219, + "start": 219 + }, + { + "coverage_state": "covered", + "end": 220, + "start": 220 + }, + { + "coverage_state": "clean", + "end": 223, + "start": 221 + }, + { + "coverage_state": "covered", + "end": 225, + "start": 224 + }, + { + "coverage_state": "clean", + "end": 226, + "start": 226 + }, + { + "coverage_state": "covered", + "end": 227, + "start": 227 + }, + { + "coverage_state": "clean", + "end": 230, + "start": 228 + }, + { + "coverage_state": "covered", + "end": 235, + "start": 231 + }, + { + "coverage_state": "clean", + "end": 236, + "start": 236 + }, + { + "coverage_state": "covered", + "end": 237, + "start": 237 + }, + { + "coverage_state": "clean", + "end": 240, + "start": 238 + }, + { + "coverage_state": "covered", + "end": 244, + "start": 241 + }, + { + "coverage_state": "clean", + "end": 245, + "start": 245 + }, + { + "coverage_state": "covered", + "end": 248, + "start": 246 + }, + { + "coverage_state": "clean", + "end": 249, + "start": 249 + }, + { + "coverage_state": "covered", + "end": 256, + "start": 250 + }, + { + "coverage_state": "clean", + "end": 258, + "start": 257 + }, + { + "coverage_state": "covered", + "end": 259, + "start": 259 + }, + { + "coverage_state": "clean", + "end": 274, + "start": 260 + }, + { + "coverage_state": "covered", + "end": 275, + "start": 275 + }, + { + "coverage_state": "clean", + "end": 278, + "start": 276 + }, + { + "coverage_state": "covered", + "end": 279, + "start": 279 + }, + { + "coverage_state": "clean", + "end": 280, + "start": 280 + }, + { + "coverage_state": "covered", + "end": 283, + "start": 281 + }, + { + "coverage_state": "clean", + "end": 285, + "start": 284 + }, + { + "coverage_state": "covered", + "end": 286, + "start": 286 + }, + { + "coverage_state": "clean", + "end": 299, + "start": 287 + }, + { + "coverage_state": "covered", + "end": 300, + "start": 300 + }, + { + "coverage_state": "clean", + "end": 302, + "start": 301 + }, + { + "coverage_state": "covered", + "end": 303, + "start": 303 + }, + { + "coverage_state": "clean", + "end": 320, + "start": 304 + }, + { + "coverage_state": "covered", + "end": 321, + "start": 321 + }, + { + "coverage_state": "clean", + "end": 322, + "start": 322 + }, + { + "coverage_state": "covered", + "end": 325, + "start": 323 + }, + { + "coverage_state": "clean", + "end": 326, + "start": 326 + }, + { + "coverage_state": "covered", + "end": 333, + "start": 327 + }, + { + "coverage_state": "clean", + "end": 334, + "start": 334 + }, + { + "coverage_state": "covered", + "end": 335, + "start": 335 + }, + { + "coverage_state": "clean", + "end": 348, + "start": 336 + }, + { + "coverage_state": "covered", + "end": 358, + "start": 349 + }, + { + "coverage_state": "clean", + "end": 359, + "start": 359 + }, + { + "coverage_state": "covered", + "end": 364, + "start": 360 + }, + { + "coverage_state": "clean", + "end": 365, + "start": 365 + }, + { + "coverage_state": "covered", + "end": 366, + "start": 366 + }, + { + "coverage_state": "clean", + "end": 367, + "start": 367 + }, + { + "coverage_state": "covered", + "end": 372, + "start": 368 + }, + { + "coverage_state": "clean", + "end": 373, + "start": 373 + }, + { + "coverage_state": "covered", + "end": 375, + "start": 374 + }, + { + "coverage_state": "clean", + "end": 376, + "start": 376 + }, + { + "coverage_state": "covered", + "end": 377, + "start": 377 + }, + { + "coverage_state": "clean", + "end": 382, + "start": 378 + }, + { + "coverage_state": "covered", + "end": 384, + "start": 383 + }, + { + "coverage_state": "clean", + "end": 385, + "start": 385 + }, + { + "coverage_state": "covered", + "end": 392, + "start": 386 + }, + { + "coverage_state": "clean", + "end": 393, + "start": 393 + }, + { + "coverage_state": "covered", + "end": 396, + "start": 394 + }, + { + "coverage_state": "clean", + "end": 397, + "start": 397 + }, + { + "coverage_state": "covered", + "end": 402, + "start": 398 + }, + { + "coverage_state": "clean", + "end": 403, + "start": 403 + }, + { + "coverage_state": "covered", + "end": 404, + "start": 404 + }, + { + "coverage_state": "clean", + "end": 421, + "start": 405 + }, + { + "coverage_state": "covered", + "end": 422, + "start": 422 + }, + { + "coverage_state": "clean", + "end": null, + "start": 423 + } + ], + "line_coverage": 98.86, + "name": "task.__init__.py" + } + ], + "line_coverage": 98.86, + "name": "task" + } + ], + "lost_souls": { + "item_list": [], + "testcase_list": [ + "pylibs.task.crontab: Test cronjob", + "pylibs.task.crontab: Test crontab", + "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "pylibs.task.periodic: Test periodic execution", + "pylibs.task.queue: Test clean_queue method", + "pylibs.task.queue: Test qsize and queue execution order by priority", + "pylibs.task.queue: Test stop method", + "pylibs.task.threaded_queue: Test enqueue while queue is running", + "pylibs.task.threaded_queue: Test qsize and queue execution order by priority" + ] + }, + "specification": {}, + "system_information": { + "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)", + "Machine": "x86_64", + "Path": "/user_data/data/dirk/prj/modules/task/unittest", + "System": "Linux", + "Username": "dirk" + }, + "testobject_information": { + "Dependencies": [], + "Description": "The Module {\\tt task} is designed to help with task issues like periodic tasks, delayed tasks, queues, threaded queues and crontabs.\nFor more Information read the documentation.", + "Name": "task", + "State": "Released", + "Supported Interpreters": "python2, python3", + "Version": "138e2db63e5416bcfc110e775fb54e4c" + }, + "testrun_list": [ + { + "heading_dict": {}, + "interpreter": "python 2.7.17 (final)", + "name": "Default Testsession name", + "number_of_failed_tests": 0, + "number_of_possibly_failed_tests": 0, + "number_of_successfull_tests": 9, + "number_of_tests": 9, + "testcase_execution_level": 90, + "testcase_names": { + "0": "Single Test", + "10": "Smoke Test (Minumum subset)", + "50": "Short Test (Subset)", + "90": "Full Test (all defined tests)" + }, + "testcases": { + "pylibs.task.crontab: Test cronjob": { + "args": null, + "asctime": "2019-12-27 08:21:07,418", + "created": 1577431267.418869, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 28, + "message": "pylibs.task.crontab: Test cronjob", + "module": "__init__", + "moduleLogger": [], + "msecs": 418.8690185546875, + "msg": "pylibs.task.crontab: Test cronjob", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7147.186994552612, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:07,419", + "created": 1577431267.419308, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 23, + "message": "Initialising cronjob with minute: [23, 45]; hour: [12, 17]; day: 25; month: any; day_of_week: any.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 419.3079471588135, + "msg": "Initialising cronjob with minute: [23, 45]; hour: [12, 17]; day: 25; month: any; day_of_week: any.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7147.625923156738, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,420", + "created": 1577431267.420023, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,419", + "created": 1577431267.419597, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): True ()", + "module": "test", + "msecs": 419.59691047668457, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7147.914886474609, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,419", + "created": 1577431267.419762, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = True ()", + "module": "test", + "msecs": 419.76189613342285, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7148.079872131348, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 420.02296447753906, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7148.340940475464, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00026106834411621094 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,420", + "created": 1577431267.420632, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,420", + "created": 1577431267.420335, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): True ()", + "module": "test", + "msecs": 420.335054397583, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7148.653030395508, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,420", + "created": 1577431267.420492, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = True ()", + "module": "test", + "msecs": 420.49193382263184, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7148.809909820557, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 420.63188552856445, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7148.949861526489, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001399517059326172 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421141, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,420", + "created": 1577431267.420879, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 420.8788871765137, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7149.1968631744385, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421011, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 421.01097106933594, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7149.328947067261, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 421.1409091949463, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7149.458885192871, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00012993812561035156 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421683, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421357, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): False ()", + "module": "test", + "msecs": 421.3569164276123, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7149.674892425537, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421553, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 421.5528964996338, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7149.870872497559, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 421.68307304382324, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.001049041748, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013017654418945312 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.422176, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,421", + "created": 1577431267.421912, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 421.91195487976074, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.229930877686, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.42204, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 422.0399856567383, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.357961654663, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 422.1758842468262, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.493860244751, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013589859008789062 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.422643, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.422384, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 422.38402366638184, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.701999664307, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.422508, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 422.50800132751465, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.825977325439, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 422.64294624328613, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7150.960922241211, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013494491577148438 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:07,422", + "created": 1577431267.422827, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Storing reminder for execution (minute: 23, hour: 17, day: 25, month: 2, day_of_week: 1).", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 422.82700538635254, + "msg": "Storing reminder for execution (minute: 23, hour: 17, day: 25, month: 2, day_of_week: 1).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7151.144981384277, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.42334, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.423066, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 423.0659008026123, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7151.383876800537, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.423208, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 423.20799827575684, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7151.525974273682, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 423.3400821685791, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7151.658058166504, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013208389282226562 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.423828, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.423573, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): True ()", + "module": "test", + "msecs": 423.5730171203613, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7151.890993118286, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,423", + "created": 1577431267.423699, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = True ()", + "module": "test", + "msecs": 423.69890213012695, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.016878128052, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 423.8278865814209, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.145862579346, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001289844512939453 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424293, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424043, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 424.0429401397705, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.360916137695, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424169, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 424.16906356811523, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.48703956604, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 424.29304122924805, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.611017227173, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001239776611328125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424751, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424496, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): False ()", + "module": "test", + "msecs": 424.4959354400635, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.813911437988, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424619, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 424.6189594268799, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7152.936935424805, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 424.75104331970215, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.069019317627, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013208389282226562 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425211, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,424", + "created": 1577431267.424955, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 424.954891204834, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.272867202759, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.42508, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 425.0800609588623, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.398036956787, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 425.21095275878906, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.528928756714, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001308917999267578 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425535, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425432, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 425.4319667816162, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.749942779541, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425485, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 425.48489570617676, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.802871704102, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 425.5349636077881, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.852939605713, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.0067901611328125e-05 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425626, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 38, + "message": "Resetting trigger condition with minute: 22; hour: any; day: [12, 17, 25], month: 2.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 425.6260395050049, + "msg": "Resetting trigger condition with minute: 22; hour: any; day: [12, 17, 25], month: 2.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7153.94401550293, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425836, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.42573, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 425.72999000549316, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.047966003418, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425784, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 425.7841110229492, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.102087020874, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 425.83608627319336, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.154062271118, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.1975250244140625e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426021, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425921, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): False ()", + "module": "test", + "msecs": 425.9209632873535, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.238939285278, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,425", + "created": 1577431267.425971, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = False ()", + "module": "test", + "msecs": 425.97103118896484, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.28900718689, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 426.0210990905762, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.339075088501, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.0067901611328125e-05 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.42621, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426109, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): True ()", + "module": "test", + "msecs": 426.10907554626465, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.427051544189, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.42616, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = True ()", + "module": "test", + "msecs": 426.1600971221924, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.478073120117, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 426.2099266052246, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.527902603149, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 4.982948303222656e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426401, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426299, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3): False ()", + "module": "test", + "msecs": 426.2990951538086, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.617071151733, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.42635, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 426.3501167297363, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.668092727661, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 426.40089988708496, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.71887588501, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.078315734863281e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426591, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.42649, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 426.49006843566895, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.808044433594, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426541, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 426.5410900115967, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.8590660095215, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 426.5909194946289, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.908895492554, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 4.982948303222656e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426782, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426679, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 426.6788959503174, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7154.996871948242, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426732, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 426.73206329345703, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.050039291382, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 426.78189277648926, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.099868774414, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 4.982948303222656e-05 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426862, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Resetting trigger condition (again).", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 426.8620014190674, + "msg": "Resetting trigger condition (again).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.179977416992, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.42705, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "1st run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "1st run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426947, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (1st run - execution not needed): False ()", + "module": "test", + "msecs": 426.94711685180664, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.265092849731, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1st run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,426", + "created": 1577431267.426998, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (1st run - execution not needed): result = False ()", + "module": "test", + "msecs": 426.9979000091553, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.31587600708, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.0501136779785, + "msg": "1st run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.368089675903, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.221366882324219e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427228, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "2nd run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "2nd run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427129, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (2nd run - execution not needed): False ()", + "module": "test", + "msecs": 427.12903022766113, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.447006225586, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2nd run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427179, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (2nd run - execution not needed): result = False ()", + "module": "test", + "msecs": 427.17909812927246, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.497074127197, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.2279739379883, + "msg": "2nd run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.545949935913, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 4.887580871582031e-05 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427419, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "3rd run - execution needed is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "3rd run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427311, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (3rd run - execution needed): True ()", + "module": "test", + "msecs": 427.3109436035156, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.62891960144, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3rd run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427365, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (3rd run - execution needed): result = True ()", + "module": "test", + "msecs": 427.3650646209717, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.6830406188965, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.41894721984863, + "msg": "3rd run - execution needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.736923217773, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.3882598876953125e-05 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427612, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "4th run - execution needed is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "4th run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427511, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (4th run - execution needed): True ()", + "module": "test", + "msecs": 427.51097679138184, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.828952789307, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "4th run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427562, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (4th run - execution needed): result = True ()", + "module": "test", + "msecs": 427.56199836730957, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.879974365234, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.6120662689209, + "msg": "4th run - execution needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7155.930042266846, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.0067901611328125e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427792, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "5th run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "5th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427692, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (5th run - execution not needed): False ()", + "module": "test", + "msecs": 427.6919364929199, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.009912490845, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "5th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427742, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (5th run - execution not needed): result = False ()", + "module": "test", + "msecs": 427.74200439453125, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.059980392456, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.7920722961426, + "msg": "5th run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.110048294067, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.0067901611328125e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427974, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "6th run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "6th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427874, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (6th run - execution not needed): False ()", + "module": "test", + "msecs": 427.8740882873535, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.192064285278, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:21:07,427", + "created": 1577431267.427924, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (6th run - execution not needed): result = False ()", + "module": "test", + "msecs": 427.92391777038574, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.241893768311, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 427.97398567199707, + "msg": "6th run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.291961669922, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 5.0067901611328125e-05 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00910496711730957, + "time_finished": "2019-12-27 08:21:07,427", + "time_start": "2019-12-27 08:21:07,418" + }, + "pylibs.task.crontab: Test crontab": { + "args": null, + "asctime": "2019-12-27 08:21:07,428", + "created": 1577431267.428173, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 29, + "message": "pylibs.task.crontab: Test crontab", + "module": "__init__", + "moduleLogger": [], + "msecs": 428.1730651855469, + "msg": "pylibs.task.crontab: Test crontab", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.491041183472, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:07,428", + "created": 1577431267.428264, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "crontab", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 57, + "message": "Creating Crontab with callback execution in +1 and +3 minutes.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 428.26390266418457, + "msg": "Creating Crontab with callback execution in +1 and +3 minutes.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.581878662109, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:37,526", + "created": 1577431477.526502, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Number of submitted values is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + 30 + ], + "asctime": "2019-12-27 08:21:07,428", + "created": 1577431267.428374, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "crontab", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Crontab accuracy is 30s", + "module": "test_crontab", + "msecs": 428.3740520477295, + "msg": "Crontab accuracy is %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 7156.692028045654, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1577431327, + 1577431320 + ], + "asctime": "2019-12-27 08:22:07,430", + "created": 1577431327.430895, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "report_value", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 17, + "message": "Crontab execution number 1 at 1577431327s, requested for 1577431320s", + "module": "test_crontab", + "msecs": 430.8950901031494, + "msg": "Crontab execution number %d at %ds, requested for %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 67159.21306610107, + "thread": 140402636498688, + "threadName": "Thread-42" + }, + { + "args": [ + 2, + 1577431447, + 1577431440 + ], + "asctime": "2019-12-27 08:24:07,436", + "created": 1577431447.436745, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "report_value", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 17, + "message": "Crontab execution number 2 at 1577431447s, requested for 1577431440s", + "module": "test_crontab", + "msecs": 436.74492835998535, + "msg": "Crontab execution number %d at %ds, requested for %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 187165.0629043579, + "thread": 140402636498688, + "threadName": "Thread-46" + }, + { + "args": [ + "Timing of crontasks", + "[ 1577431327, 1577431447 ]", + "" + ], + "asctime": "2019-12-27 08:24:37,525", + "created": 1577431477.525664, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Timing of crontasks): [ 1577431327, 1577431447 ] ()", + "module": "test", + "msecs": 525.6640911102295, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217253.98206710815, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Number of submitted values", + "2", + "" + ], + "asctime": "2019-12-27 08:24:37,525", + "created": 1577431477.525972, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Number of submitted values): 2 ()", + "module": "test", + "msecs": 525.9718894958496, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217254.28986549377, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Number of submitted values", + "2", + "" + ], + "asctime": "2019-12-27 08:24:37,526", + "created": 1577431477.52619, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Number of submitted values): result = 2 ()", + "module": "test", + "msecs": 526.1900424957275, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217254.50801849365, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 526.5018939971924, + "msg": "Number of submitted values is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217254.81986999512, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00031185150146484375 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.527872, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report_range_check", + "levelname": "INFO", + "levelno": 20, + "lineno": 178, + "message": "Timing of crontasks: Valueaccuracy and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Submitted value number 1", + "1577431327", + "" + ], + "asctime": "2019-12-27 08:24:37,526", + "created": 1577431477.526935, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1577431327 ()", + "module": "test", + "msecs": 526.9351005554199, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217255.25307655334, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1577431320", + "1577431351" + ], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.527112, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Submitted value number 1): 1577431320 <= result <= 1577431351", + "module": "test", + "msecs": 527.1120071411133, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217255.42998313904, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1577431327", + "1577431320", + "1577431351", + "" + ], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.52727, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Submitted value number 1 is correct (Content 1577431327 in [1577431320 ... 1577431351] and Type is ).", + "module": "test", + "msecs": 527.2700786590576, + "msg": "Submitted value number 1 is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217255.58805465698, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1577431447", + "" + ], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.527427, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 1577431447 ()", + "module": "test", + "msecs": 527.4269580841064, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217255.74493408203, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1577431440", + "1577431471" + ], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.527581, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Submitted value number 2): 1577431440 <= result <= 1577431471", + "module": "test", + "msecs": 527.580976486206, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217255.89895248413, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1577431447", + "1577431440", + "1577431471", + "" + ], + "asctime": "2019-12-27 08:24:37,527", + "created": 1577431477.527732, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Submitted value number 2 is correct (Content 1577431447 in [1577431440 ... 1577431471] and Type is ).", + "module": "test", + "msecs": 527.7318954467773, + "msg": "Submitted value number 2 is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217256.0498714447, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 527.8720855712891, + "msg": "Timing of crontasks: Valueaccuracy and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 217256.1900615692, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00014019012451171875 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 210.09969902038574, + "time_finished": "2019-12-27 08:24:37,527", + "time_start": "2019-12-27 08:21:07,428" + }, + "pylibs.task.delayed: Test parallel processing and timing for a delayed execution": { + "args": null, + "asctime": "2019-12-27 08:21:00,318", + "created": 1577431260.318406, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 21, + "message": "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "module": "__init__", + "moduleLogger": [], + "msecs": 318.4061050415039, + "msg": "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 46.72408103942871, + "testcaseLogger": [ + { + "args": [ + 0.25 + ], + "asctime": "2019-12-27 08:21:00,318", + "created": 1577431260.3188, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.250s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 318.7999725341797, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 47.11794853210449, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.620996, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,619", + "created": 1577431260.619639, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 619.6389198303223, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 347.95689582824707, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,619", + "created": 1577431260.619927, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 619.926929473877, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 348.24490547180176, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.620123, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 620.1229095458984, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 348.44088554382324, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.62028, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 620.2800273895264, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 348.5980033874512, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.620434, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 620.434045791626, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 348.7520217895508, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.620583, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 620.5830574035645, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 348.90103340148926, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.62072, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 620.7199096679688, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.03788566589355, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,620", + "created": 1577431260.620861, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 620.8610534667969, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.1790294647217, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 620.9959983825684, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.31397438049316, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013494491577148438 + }, + { + "args": [ + "0.25037693977355957", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:21:00,621", + "created": 1577431260.621621, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.25037693977355957 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.25037693977355957", + "" + ], + "asctime": "2019-12-27 08:21:00,621", + "created": 1577431260.621266, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.25037693977355957 ()", + "module": "test", + "msecs": 621.2658882141113, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.58386421203613, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:21:00,621", + "created": 1577431260.621463, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 621.4630603790283, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.7810363769531, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 621.6208934783936, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 349.93886947631836, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00015783309936523438 + }, + { + "args": [ + 0.01 + ], + "asctime": "2019-12-27 08:21:00,622", + "created": 1577431260.622391, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.010s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 622.3909854888916, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 350.7089614868164, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:00,724", + "created": 1577431260.724444, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,723", + "created": 1577431260.723062, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 723.0620384216309, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 451.38001441955566, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,723", + "created": 1577431260.723337, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 723.336935043335, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 451.65491104125977, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,723", + "created": 1577431260.723562, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 723.5620021820068, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 451.87997817993164, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,723", + "created": 1577431260.723722, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 723.721981048584, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.0399570465088, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,723", + "created": 1577431260.723875, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 723.8750457763672, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.193021774292, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,724", + "created": 1577431260.724026, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 724.0259647369385, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.3439407348633, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,724", + "created": 1577431260.724167, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 724.1671085357666, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.4850845336914, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,724", + "created": 1577431260.724309, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 724.308967590332, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.62694358825684, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 724.4439125061035, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 452.7618885040283, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013494491577148438 + }, + { + "args": [ + "0.010622024536132812", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:21:00,725", + "created": 1577431260.725488, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.010622024536132812 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.010622024536132812", + "" + ], + "asctime": "2019-12-27 08:21:00,725", + "created": 1577431260.725095, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.010622024536132812 ()", + "module": "test", + "msecs": 725.0950336456299, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 453.4130096435547, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:21:00,725", + "created": 1577431260.725273, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 725.2728939056396, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 453.59086990356445, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 725.4879474639893, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 453.80592346191406, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00021505355834960938 + }, + { + "args": [ + 0.005 + ], + "asctime": "2019-12-27 08:21:00,726", + "created": 1577431260.72626, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.005s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 726.2599468231201, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 454.5779228210449, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:00,828", + "created": 1577431260.828181, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,826", + "created": 1577431260.826875, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 826.8749713897705, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 555.1929473876953, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827124, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 827.1241188049316, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 555.4420948028564, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827313, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 827.3129463195801, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 555.6309223175049, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827469, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 827.4691104888916, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 555.7870864868164, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827623, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 827.6228904724121, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 555.9408664703369, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827773, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 827.7730941772461, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.0910701751709, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,827", + "created": 1577431260.827908, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 827.9080390930176, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.2260150909424, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:00,828", + "created": 1577431260.828047, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 828.0470371246338, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.3650131225586, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 828.1810283660889, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.4990043640137, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013399124145507812 + }, + { + "args": [ + "0.005093097686767578", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:21:00,828", + "created": 1577431260.828743, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.005093097686767578 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.005093097686767578", + "" + ], + "asctime": "2019-12-27 08:21:00,828", + "created": 1577431260.828442, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.005093097686767578 ()", + "module": "test", + "msecs": 828.4420967102051, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.7600727081299, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:21:00,828", + "created": 1577431260.828593, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 828.5930156707764, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 556.9109916687012, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 828.7429809570312, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 557.060956954956, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001499652862548828 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.5103368759155273, + "time_finished": "2019-12-27 08:21:00,828", + "time_start": "2019-12-27 08:21:00,318" + }, + "pylibs.task.periodic: Test periodic execution": { + "args": null, + "asctime": "2019-12-27 08:21:00,829", + "created": 1577431260.829221, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 22, + "message": "pylibs.task.periodic: Test periodic execution", + "module": "__init__", + "moduleLogger": [], + "msecs": 829.2210102081299, + "msg": "pylibs.task.periodic: Test periodic execution", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 557.5389862060547, + "testcaseLogger": [ + { + "args": [ + 10, + "0.25" + ], + "asctime": "2019-12-27 08:21:03,133", + "created": 1577431263.13355, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.25s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431260.83067 + ], + "asctime": "2019-12-27 08:21:00,830", + "created": 1577431260.830723, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431260.830670", + "module": "test_periodic", + "msecs": 830.7230472564697, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 559.0410232543945, + "thread": 140402636498688, + "threadName": "Thread-4" + }, + { + "args": [ + 2, + 1577431261.081857 + ], + "asctime": "2019-12-27 08:21:01,081", + "created": 1577431261.081918, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431261.081857", + "module": "test_periodic", + "msecs": 81.91800117492676, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 810.2359771728516, + "thread": 140402628105984, + "threadName": "Thread-5" + }, + { + "args": [ + 3, + 1577431261.332465 + ], + "asctime": "2019-12-27 08:21:01,332", + "created": 1577431261.33252, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431261.332465", + "module": "test_periodic", + "msecs": 332.5200080871582, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 1060.837984085083, + "thread": 140402636498688, + "threadName": "Thread-6" + }, + { + "args": [ + 4, + 1577431261.583169 + ], + "asctime": "2019-12-27 08:21:01,583", + "created": 1577431261.583232, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431261.583169", + "module": "test_periodic", + "msecs": 583.2319259643555, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 1311.5499019622803, + "thread": 140402628105984, + "threadName": "Thread-7" + }, + { + "args": [ + 5, + 1577431261.833508 + ], + "asctime": "2019-12-27 08:21:01,833", + "created": 1577431261.833545, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431261.833508", + "module": "test_periodic", + "msecs": 833.5449695587158, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 1561.8629455566406, + "thread": 140402636498688, + "threadName": "Thread-8" + }, + { + "args": [ + 6, + 1577431262.083997 + ], + "asctime": "2019-12-27 08:21:02,084", + "created": 1577431262.084029, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431262.083997", + "module": "test_periodic", + "msecs": 84.02895927429199, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 1812.3469352722168, + "thread": 140402628105984, + "threadName": "Thread-9" + }, + { + "args": [ + 7, + 1577431262.334639 + ], + "asctime": "2019-12-27 08:21:02,334", + "created": 1577431262.334695, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431262.334639", + "module": "test_periodic", + "msecs": 334.69510078430176, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2063.0130767822266, + "thread": 140402636498688, + "threadName": "Thread-10" + }, + { + "args": [ + 8, + 1577431262.585828 + ], + "asctime": "2019-12-27 08:21:02,585", + "created": 1577431262.585885, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431262.585828", + "module": "test_periodic", + "msecs": 585.8850479125977, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2314.2030239105225, + "thread": 140402628105984, + "threadName": "Thread-11" + }, + { + "args": [ + 9, + 1577431262.836671 + ], + "asctime": "2019-12-27 08:21:02,836", + "created": 1577431262.836693, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431262.836671", + "module": "test_periodic", + "msecs": 836.6930484771729, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2565.0110244750977, + "thread": 140402636498688, + "threadName": "Thread-12" + }, + { + "args": [ + 10, + 1577431263.087061 + ], + "asctime": "2019-12-27 08:21:03,087", + "created": 1577431263.087091, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431263.087061", + "module": "test_periodic", + "msecs": 87.09096908569336, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2815.408945083618, + "thread": 140402628105984, + "threadName": "Thread-13" + } + ], + "msecs": 133.54992866516113, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2861.867904663086, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.04645895957946777 + }, + { + "args": [ + "0.2503390312194824", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134198, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.2503390312194824 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.2503390312194824", + "" + ], + "asctime": "2019-12-27 08:21:03,133", + "created": 1577431263.133899, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.2503390312194824 ()", + "module": "test", + "msecs": 133.89897346496582, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2862.2169494628906, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134055, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 134.05489921569824, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2862.372875213623, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 134.19795036315918, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2862.515926361084, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001430511474609375 + }, + { + "args": [ + "0.25071009000142414", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134689, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.25071009000142414 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.25071009000142414", + "" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134428, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.25071009000142414 ()", + "module": "test", + "msecs": 134.4280242919922, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2862.746000289917, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134555, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 134.55510139465332, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2862.873077392578, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 134.6890926361084, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2863.007068634033, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013399124145507812 + }, + { + "args": [ + "0.2511889934539795", + "0.2465", + "0.2565", + "" + ], + "asctime": "2019-12-27 08:21:03,135", + "created": 1577431263.135141, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.2511889934539795 in [0.2465 ... 0.2565] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.2511889934539795", + "" + ], + "asctime": "2019-12-27 08:21:03,134", + "created": 1577431263.134899, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.2511889934539795 ()", + "module": "test", + "msecs": 134.89890098571777, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2863.2168769836426, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.2465", + "0.2565" + ], + "asctime": "2019-12-27 08:21:03,135", + "created": 1577431263.135019, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.2465 <= result <= 0.2565", + "module": "test", + "msecs": 135.01906394958496, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2863.3370399475098, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 135.14089584350586, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2863.4588718414307, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00012183189392089844 + }, + { + "args": [ + 10, + "0.01" + ], + "asctime": "2019-12-27 08:21:03,256", + "created": 1577431263.256116, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.01s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431263.13619 + ], + "asctime": "2019-12-27 08:21:03,136", + "created": 1577431263.136245, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431263.136190", + "module": "test_periodic", + "msecs": 136.2450122833252, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2864.56298828125, + "thread": 140402636498688, + "threadName": "Thread-15" + }, + { + "args": [ + 2, + 1577431263.146672 + ], + "asctime": "2019-12-27 08:21:03,146", + "created": 1577431263.146707, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431263.146672", + "module": "test_periodic", + "msecs": 146.70705795288086, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2875.0250339508057, + "thread": 140402628105984, + "threadName": "Thread-16" + }, + { + "args": [ + 3, + 1577431263.157228 + ], + "asctime": "2019-12-27 08:21:03,157", + "created": 1577431263.15728, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431263.157228", + "module": "test_periodic", + "msecs": 157.27996826171875, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2885.5979442596436, + "thread": 140402636498688, + "threadName": "Thread-17" + }, + { + "args": [ + 4, + 1577431263.168363 + ], + "asctime": "2019-12-27 08:21:03,168", + "created": 1577431263.168406, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431263.168363", + "module": "test_periodic", + "msecs": 168.40600967407227, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2896.723985671997, + "thread": 140402628105984, + "threadName": "Thread-18" + }, + { + "args": [ + 5, + 1577431263.178933 + ], + "asctime": "2019-12-27 08:21:03,178", + "created": 1577431263.178988, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431263.178933", + "module": "test_periodic", + "msecs": 178.98797988891602, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2907.305955886841, + "thread": 140402636498688, + "threadName": "Thread-19" + }, + { + "args": [ + 6, + 1577431263.189998 + ], + "asctime": "2019-12-27 08:21:03,190", + "created": 1577431263.190041, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431263.189998", + "module": "test_periodic", + "msecs": 190.04106521606445, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2918.3590412139893, + "thread": 140402628105984, + "threadName": "Thread-20" + }, + { + "args": [ + 7, + 1577431263.200579 + ], + "asctime": "2019-12-27 08:21:03,200", + "created": 1577431263.200621, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431263.200579", + "module": "test_periodic", + "msecs": 200.6208896636963, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2928.938865661621, + "thread": 140402636498688, + "threadName": "Thread-21" + }, + { + "args": [ + 8, + 1577431263.211154 + ], + "asctime": "2019-12-27 08:21:03,211", + "created": 1577431263.211196, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431263.211154", + "module": "test_periodic", + "msecs": 211.1959457397461, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2939.513921737671, + "thread": 140402628105984, + "threadName": "Thread-22" + }, + { + "args": [ + 9, + 1577431263.22177 + ], + "asctime": "2019-12-27 08:21:03,221", + "created": 1577431263.221825, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431263.221770", + "module": "test_periodic", + "msecs": 221.82488441467285, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2950.1428604125977, + "thread": 140402636498688, + "threadName": "Thread-23" + }, + { + "args": [ + 10, + 1577431263.232837 + ], + "asctime": "2019-12-27 08:21:03,232", + "created": 1577431263.23288, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431263.232837", + "module": "test_periodic", + "msecs": 232.8801155090332, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2961.198091506958, + "thread": 140402628105984, + "threadName": "Thread-24" + } + ], + "msecs": 256.1159133911133, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2984.433889389038, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.023235797882080078 + }, + { + "args": [ + "0.010482072830200195", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:21:03,256", + "created": 1577431263.256896, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.010482072830200195 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.010482072830200195", + "" + ], + "asctime": "2019-12-27 08:21:03,256", + "created": 1577431263.256526, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.010482072830200195 ()", + "module": "test", + "msecs": 256.52599334716797, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2984.843969345093, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:21:03,256", + "created": 1577431263.256721, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 256.72101974487305, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2985.038995742798, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 256.8960189819336, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2985.2139949798584, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00017499923706054688 + }, + { + "args": [ + "0.01073855823940701", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:21:03,257", + "created": 1577431263.257537, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.01073855823940701 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.01073855823940701", + "" + ], + "asctime": "2019-12-27 08:21:03,257", + "created": 1577431263.257172, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.01073855823940701 ()", + "module": "test", + "msecs": 257.1721076965332, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2985.490083694458, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:21:03,257", + "created": 1577431263.25733, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 257.32994079589844, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2985.6479167938232, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 257.5368881225586, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2985.8548641204834, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00020694732666015625 + }, + { + "args": [ + "0.011135101318359375", + "0.008900000000000002", + "0.0141", + "" + ], + "asctime": "2019-12-27 08:21:03,258", + "created": 1577431263.258101, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.011135101318359375 in [0.008900000000000002 ... 0.0141] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.011135101318359375", + "" + ], + "asctime": "2019-12-27 08:21:03,257", + "created": 1577431263.257799, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.011135101318359375 ()", + "module": "test", + "msecs": 257.7989101409912, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2986.116886138916, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.008900000000000002", + "0.0141" + ], + "asctime": "2019-12-27 08:21:03,257", + "created": 1577431263.257951, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.008900000000000002 <= result <= 0.0141", + "module": "test", + "msecs": 257.951021194458, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2986.268997192383, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 258.1009864807129, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2986.4189624786377, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001499652862548828 + }, + { + "args": [ + 10, + "0.005" + ], + "asctime": "2019-12-27 08:21:03,369", + "created": 1577431263.369186, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.005s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431263.259307 + ], + "asctime": "2019-12-27 08:21:03,259", + "created": 1577431263.25935, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431263.259307", + "module": "test_periodic", + "msecs": 259.350061416626, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2987.668037414551, + "thread": 140402636498688, + "threadName": "Thread-26" + }, + { + "args": [ + 2, + 1577431263.26484 + ], + "asctime": "2019-12-27 08:21:03,264", + "created": 1577431263.264889, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431263.264840", + "module": "test_periodic", + "msecs": 264.8890018463135, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2993.2069778442383, + "thread": 140402628105984, + "threadName": "Thread-27" + }, + { + "args": [ + 3, + 1577431263.270685 + ], + "asctime": "2019-12-27 08:21:03,270", + "created": 1577431263.270707, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431263.270685", + "module": "test_periodic", + "msecs": 270.7068920135498, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 2999.0248680114746, + "thread": 140402636498688, + "threadName": "Thread-28" + }, + { + "args": [ + 4, + 1577431263.276064 + ], + "asctime": "2019-12-27 08:21:03,276", + "created": 1577431263.276091, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431263.276064", + "module": "test_periodic", + "msecs": 276.0910987854004, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3004.409074783325, + "thread": 140402628105984, + "threadName": "Thread-29" + }, + { + "args": [ + 5, + 1577431263.281601 + ], + "asctime": "2019-12-27 08:21:03,281", + "created": 1577431263.281646, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431263.281601", + "module": "test_periodic", + "msecs": 281.6460132598877, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3009.9639892578125, + "thread": 140402636498688, + "threadName": "Thread-30" + }, + { + "args": [ + 6, + 1577431263.287635 + ], + "asctime": "2019-12-27 08:21:03,287", + "created": 1577431263.287676, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431263.287635", + "module": "test_periodic", + "msecs": 287.6760959625244, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3015.994071960449, + "thread": 140402628105984, + "threadName": "Thread-31" + }, + { + "args": [ + 7, + 1577431263.293169 + ], + "asctime": "2019-12-27 08:21:03,293", + "created": 1577431263.293209, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431263.293169", + "module": "test_periodic", + "msecs": 293.2090759277344, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3021.527051925659, + "thread": 140402636498688, + "threadName": "Thread-32" + }, + { + "args": [ + 8, + 1577431263.299255 + ], + "asctime": "2019-12-27 08:21:03,299", + "created": 1577431263.299297, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431263.299255", + "module": "test_periodic", + "msecs": 299.2970943450928, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3027.6150703430176, + "thread": 140402628105984, + "threadName": "Thread-33" + }, + { + "args": [ + 9, + 1577431263.304808 + ], + "asctime": "2019-12-27 08:21:03,304", + "created": 1577431263.304848, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431263.304808", + "module": "test_periodic", + "msecs": 304.84795570373535, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3033.16593170166, + "thread": 140402636498688, + "threadName": "Thread-34" + }, + { + "args": [ + 10, + 1577431263.310384 + ], + "asctime": "2019-12-27 08:21:03,310", + "created": 1577431263.310427, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431263.310384", + "module": "test_periodic", + "msecs": 310.4269504547119, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3038.7449264526367, + "thread": 140402628105984, + "threadName": "Thread-35" + } + ], + "msecs": 369.1859245300293, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3097.503900527954, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.05875897407531738 + }, + { + "args": [ + "0.0053789615631103516", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:21:03,370", + "created": 1577431263.370169, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.0053789615631103516 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.0053789615631103516", + "" + ], + "asctime": "2019-12-27 08:21:03,369", + "created": 1577431263.369751, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.0053789615631103516 ()", + "module": "test", + "msecs": 369.7509765625, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3098.068952560425, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:21:03,369", + "created": 1577431263.369976, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 369.9760437011719, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3098.2940196990967, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 370.16892433166504, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3098.48690032959, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00019288063049316406 + }, + { + "args": [ + "0.0056752363840738935", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:21:03,370", + "created": 1577431263.37081, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.0056752363840738935 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.0056752363840738935", + "" + ], + "asctime": "2019-12-27 08:21:03,370", + "created": 1577431263.370473, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.0056752363840738935 ()", + "module": "test", + "msecs": 370.47290802001953, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3098.7908840179443, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:21:03,370", + "created": 1577431263.37064, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 370.6400394439697, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3098.9580154418945, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 370.81003189086914, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3099.128007888794, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00016999244689941406 + }, + { + "args": [ + "0.006085872650146484", + "0.00395", + "0.009049999999999999", + "" + ], + "asctime": "2019-12-27 08:21:03,371", + "created": 1577431263.371393, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.006085872650146484 in [0.00395 ... 0.009049999999999999] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.006085872650146484", + "" + ], + "asctime": "2019-12-27 08:21:03,371", + "created": 1577431263.371071, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.006085872650146484 ()", + "module": "test", + "msecs": 371.07110023498535, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3099.38907623291, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.00395", + "0.009049999999999999" + ], + "asctime": "2019-12-27 08:21:03,371", + "created": 1577431263.371238, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.00395 <= result <= 0.009049999999999999", + "module": "test", + "msecs": 371.23799324035645, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3099.5559692382812, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 371.39296531677246, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3099.7109413146973, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00015497207641601562 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 2.5421719551086426, + "time_finished": "2019-12-27 08:21:03,371", + "time_start": "2019-12-27 08:21:00,829" + }, + "pylibs.task.queue: Test clean_queue method": { + "args": null, + "asctime": "2019-12-27 08:21:03,585", + "created": 1577431263.58512, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 25, + "message": "pylibs.task.queue: Test clean_queue method", + "module": "__init__", + "moduleLogger": [], + "msecs": 585.1199626922607, + "msg": "pylibs.task.queue: Test clean_queue method", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3313.4379386901855, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:03,585", + "created": 1577431263.585675, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_clean", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 62, + "message": "Enqueued 6 tasks (stop request within 3rd task).", + "module": "test_queue", + "moduleLogger": [], + "msecs": 585.6750011444092, + "msg": "Enqueued 6 tasks (stop request within 3rd task).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3313.992977142334, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,586", + "created": 1577431263.586235, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,585", + "created": 1577431263.585932, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 585.9320163726807, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3314.2499923706055, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,586", + "created": 1577431263.586087, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 586.0869884490967, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3314.4049644470215, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 586.2350463867188, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3314.5530223846436, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001480579376220703 + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,586", + "created": 1577431263.586874, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 3 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,586", + "created": 1577431263.586578, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 3 ()", + "module": "test", + "msecs": 586.5778923034668, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3314.8958683013916, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,586", + "created": 1577431263.586731, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 3 ()", + "module": "test", + "msecs": 586.73095703125, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.048933029175, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 586.8740081787109, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.1919841766357, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001430511474609375 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:03,588", + "created": 1577431263.588673, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.58711, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3 ] ()", + "module": "test", + "msecs": 587.1100425720215, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.4280185699463, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.587263, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3 ] ()", + "module": "test", + "msecs": 587.2631072998047, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.5810832977295, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.587436, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 587.4359607696533, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.753936767578, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.587572, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 587.5720977783203, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3315.890073776245, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.587719, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 587.7189636230469, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.0369396209717, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.58786, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 587.860107421875, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.1780834198, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,587", + "created": 1577431263.58799, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 587.9900455474854, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.30802154541, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,588", + "created": 1577431263.588124, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 588.1240367889404, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.4420127868652, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,588", + "created": 1577431263.588261, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 588.2608890533447, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.5788650512695, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,588", + "created": 1577431263.588392, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 588.3920192718506, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.7099952697754, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,588", + "created": 1577431263.588542, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 588.5419845581055, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.8599605560303, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 588.6731147766113, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3316.991090774536, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013113021850585938 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:03,589", + "created": 1577431263.589001, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_clean", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 68, + "message": "Cleaning Queue.", + "module": "test_queue", + "moduleLogger": [], + "msecs": 589.000940322876, + "msg": "Cleaning Queue.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3317.318916320801, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,589", + "created": 1577431263.589556, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after cleaning queue is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after cleaning queue", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,589", + "created": 1577431263.589246, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after cleaning queue): 0 ()", + "module": "test", + "msecs": 589.2460346221924, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3317.564010620117, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after cleaning queue", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,589", + "created": 1577431263.58941, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after cleaning queue): result = 0 ()", + "module": "test", + "msecs": 589.4100666046143, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3317.728042602539, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 589.5559787750244, + "msg": "Size of Queue after cleaning queue is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3317.873954772949, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00014591217041015625 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.004436016082763672, + "time_finished": "2019-12-27 08:21:03,589", + "time_start": "2019-12-27 08:21:03,585" + }, + "pylibs.task.queue: Test qsize and queue execution order by priority": { + "args": null, + "asctime": "2019-12-27 08:21:03,371", + "created": 1577431263.371857, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 23, + "message": "pylibs.task.queue: Test qsize and queue execution order by priority", + "module": "__init__", + "moduleLogger": [], + "msecs": 371.8569278717041, + "msg": "pylibs.task.queue: Test qsize and queue execution order by priority", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3100.174903869629, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:03,372", + "created": 1577431263.372436, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 25, + "message": "Enqueued 6 unordered tasks.", + "module": "test_queue", + "moduleLogger": [], + "msecs": 372.4360466003418, + "msg": "Enqueued 6 unordered tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3100.7540225982666, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,373", + "created": 1577431263.373044, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,372", + "created": 1577431263.372724, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 372.7240562438965, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3101.0420322418213, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,372", + "created": 1577431263.372889, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 372.88904190063477, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3101.2070178985596, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 373.0440139770508, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3101.3619899749756, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00015497207641601562 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474187, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,473", + "created": 1577431263.473766, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 473.7660884857178, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3202.0840644836426, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474004, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 474.00403022766113, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3202.322006225586, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 474.18689727783203, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3202.504873275757, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00018286705017089844 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:03,477", + "created": 1577431263.477437, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474489, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 474.4889736175537, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3202.8069496154785, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474671, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 474.6708869934082, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3202.988862991333, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474832, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 474.83205795288086, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.1500339508057, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,474", + "created": 1577431263.474991, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 474.9910831451416, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.3090591430664, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475138, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 475.13794898986816, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.455924987793, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475284, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 475.2840995788574, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.602075576782, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475419, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 475.4190444946289, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.7370204925537, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475578, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 475.57806968688965, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3203.8960456848145, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475722, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 475.722074508667, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.040050506592, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,475", + "created": 1577431263.475864, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 475.8639335632324, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.181909561157, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476004, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 476.00388526916504, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.32186126709, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476152, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 476.1519432067871, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.469919204712, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476283, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 476.28307342529297, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.601049423218, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476418, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 476.41801834106445, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.7359943389893, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476555, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 5): 6 ()", + "module": "test", + "msecs": 476.55510902404785, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3204.8730850219727, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476683, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 5): result = 6 ()", + "module": "test", + "msecs": 476.6829013824463, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.000877380371, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476827, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 5 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 476.82690620422363, + "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.1448822021484, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,476", + "created": 1577431263.476966, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 6): 7 ()", + "module": "test", + "msecs": 476.96590423583984, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.2838802337646, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,477", + "created": 1577431263.477098, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 6): result = 7 ()", + "module": "test", + "msecs": 477.0979881286621, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.415964126587, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,477", + "created": 1577431263.477233, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 6 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 477.2329330444336, + "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.5509090423584, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 477.43701934814453, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3205.7549953460693, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0002040863037109375 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.10558009147644043, + "time_finished": "2019-12-27 08:21:03,477", + "time_start": "2019-12-27 08:21:03,371" + }, + "pylibs.task.queue: Test stop method": { + "args": null, + "asctime": "2019-12-27 08:21:03,477", + "created": 1577431263.477939, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 24, + "message": "pylibs.task.queue: Test stop method", + "module": "__init__", + "moduleLogger": [], + "msecs": 477.9388904571533, + "msg": "pylibs.task.queue: Test stop method", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3206.256866455078, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:03,478", + "created": 1577431263.478559, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_stop", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Enqueued 6 tasks (stop request within 4th task).", + "module": "test_queue", + "moduleLogger": [], + "msecs": 478.5590171813965, + "msg": "Enqueued 6 tasks (stop request within 4th task).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3206.8769931793213, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,479", + "created": 1577431263.479184, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before 1st execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before 1st execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,478", + "created": 1577431263.478866, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before 1st execution): 6 ()", + "module": "test", + "msecs": 478.8661003112793, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3207.184076309204, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before 1st execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,479", + "created": 1577431263.479028, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before 1st execution): result = 6 ()", + "module": "test", + "msecs": 479.02798652648926, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3207.345962524414, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 479.1839122772217, + "msg": "Size of Queue before 1st execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3207.5018882751465, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00015592575073242188 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,479", + "created": 1577431263.479871, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after 1st execution is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after 1st execution", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,479", + "created": 1577431263.479559, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after 1st execution): 2 ()", + "module": "test", + "msecs": 479.55894470214844, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3207.8769207000732, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after 1st execution", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,479", + "created": 1577431263.479713, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after 1st execution): result = 2 ()", + "module": "test", + "msecs": 479.71296310424805, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.030939102173, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 479.8710346221924, + "msg": "Size of Queue after 1st execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.189010620117, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00015807151794433594 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:03,482", + "created": 1577431263.48217, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (1st part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (1st part; identified by a submitted sequence number)", + "[ 1, 2, 3, 5 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480118, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (1st part; identified by a submitted sequence number)): [ 1, 2, 3, 5 ] ()", + "module": "test", + "msecs": 480.1180362701416, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.4360122680664, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (1st part; identified by a submitted sequence number)", + "[ 1, 2, 3, 5 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480276, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (1st part; identified by a submitted sequence number)): result = [ 1, 2, 3, 5 ] ()", + "module": "test", + "msecs": 480.27610778808594, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.5940837860107, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480438, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 480.4379940032959, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.7559700012207, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480577, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 480.5769920349121, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3208.894968032837, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480728, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 480.7279109954834, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.045886993408, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,480", + "created": 1577431263.480874, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 480.87406158447266, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.1920375823975, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481009, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 481.00900650024414, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.326982498169, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481158, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 481.1580181121826, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.4759941101074, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481317, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 481.31704330444336, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.635019302368, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481476, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 481.4760684967041, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.794044494629, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481623, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 481.62293434143066, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3209.9409103393555, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481761, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 481.76097869873047, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3210.0789546966553, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,481", + "created": 1577431263.481891, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 481.8909168243408, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3210.2088928222656, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:21:03,482", + "created": 1577431263.482036, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 482.0361137390137, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3210.3540897369385, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 482.17010498046875, + "msg": "Queue execution (1st part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3210.4880809783936, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013399124145507812 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,583", + "created": 1577431263.58317, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after 2nd execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after 2nd execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,582", + "created": 1577431263.582739, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after 2nd execution): 0 ()", + "module": "test", + "msecs": 582.7391147613525, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3311.0570907592773, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after 2nd execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:03,582", + "created": 1577431263.582976, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after 2nd execution): result = 0 ()", + "module": "test", + "msecs": 582.9761028289795, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3311.2940788269043, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 583.1699371337891, + "msg": "Size of Queue after 2nd execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3311.487913131714, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001938343048095703 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:03,584", + "created": 1577431263.584645, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (2nd part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (2nd part; identified by a submitted sequence number)", + "[ 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,583", + "created": 1577431263.58345, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (2nd part; identified by a submitted sequence number)): [ 6, 7 ] ()", + "module": "test", + "msecs": 583.4500789642334, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3311.768054962158, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (2nd part; identified by a submitted sequence number)", + "[ 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:03,583", + "created": 1577431263.583615, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (2nd part; identified by a submitted sequence number)): result = [ 6, 7 ] ()", + "module": "test", + "msecs": 583.6150646209717, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3311.9330406188965, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,583", + "created": 1577431263.583776, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 6 ()", + "module": "test", + "msecs": 583.7759971618652, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.09397315979, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,583", + "created": 1577431263.583919, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 6 ()", + "module": "test", + "msecs": 583.9190483093262, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.237024307251, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,584", + "created": 1577431263.584073, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 584.0730667114258, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.3910427093506, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,584", + "created": 1577431263.58423, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 7 ()", + "module": "test", + "msecs": 584.2299461364746, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.5479221343994, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,584", + "created": 1577431263.584365, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 7 ()", + "module": "test", + "msecs": 584.3648910522461, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.682867050171, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:21:03,584", + "created": 1577431263.584502, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 584.5019817352295, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.8199577331543, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 584.6450328826904, + "msg": "Queue execution (2nd part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3312.9630088806152, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001430511474609375 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.10670614242553711, + "time_finished": "2019-12-27 08:21:03,584", + "time_start": "2019-12-27 08:21:03,477" + }, + "pylibs.task.threaded_queue: Test enqueue while queue is running": { + "args": null, + "asctime": "2019-12-27 08:21:06,512", + "created": 1577431266.512441, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 27, + "message": "pylibs.task.threaded_queue: Test enqueue while queue is running", + "module": "__init__", + "moduleLogger": [], + "msecs": 512.4409198760986, + "msg": "pylibs.task.threaded_queue: Test enqueue while queue is running", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6240.758895874023, + "testcaseLogger": [ + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:06,514", + "created": 1577431266.514131, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:06,513", + "created": 1577431266.513235, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 0 ()", + "module": "test", + "msecs": 513.2350921630859, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6241.553068161011, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:06,513", + "created": 1577431266.513763, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 0 ()", + "module": "test", + "msecs": 513.7629508972168, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6242.080926895142, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 514.1310691833496, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6242.449045181274, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0003681182861328125 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:06,616", + "created": 1577431266.616826, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 78, + "message": "Enqueued 2 tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:06,514", + "created": 1577431266.514671, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 69, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 514.6710872650146, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6242.989063262939, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6, + 0.1 + ], + "asctime": "2019-12-27 08:21:06,515", + "created": 1577431266.515806, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 74, + "message": "Adding Task 6 with Priority 6 and waiting for 0.1s (half of the queue task delay time)", + "module": "test_threaded_queue", + "msecs": 515.8059597015381, + "msg": "Adding Task %d with Priority %d and waiting for %.1fs (half of the queue task delay time)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6244.123935699463, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 3, + 3 + ], + "asctime": "2019-12-27 08:21:06,616", + "created": 1577431266.616265, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 3 with Priority 3", + "module": "test_threaded_queue", + "msecs": 616.265058517456, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6344.583034515381, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 2, + 2 + ], + "asctime": "2019-12-27 08:21:06,616", + "created": 1577431266.616531, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 2 with Priority 2", + "module": "test_threaded_queue", + "msecs": 616.5308952331543, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6344.848871231079, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:21:06,616", + "created": 1577431266.6167, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 616.6999340057373, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6345.017910003662, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 616.826057434082, + "msg": "Enqueued 2 tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6345.144033432007, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00012612342834472656 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:07,118", + "created": 1577431267.118386, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:07,117", + "created": 1577431267.117958, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 117.95806884765625, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6846.276044845581, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:07,118", + "created": 1577431267.118204, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 118.20411682128906, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6846.522092819214, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 118.38603019714355, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6846.704006195068, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001819133758544922 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:07,120", + "created": 1577431267.120381, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 6, 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:21:07,118", + "created": 1577431267.118639, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 6, 1, 2, 3 ] ()", + "module": "test", + "msecs": 118.63899230957031, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6846.956968307495, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 6, 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:21:07,118", + "created": 1577431267.118783, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 6, 1, 2, 3 ] ()", + "module": "test", + "msecs": 118.78299713134766, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.1009731292725, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:21:07,118", + "created": 1577431267.118911, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 6 ()", + "module": "test", + "msecs": 118.9110279083252, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.22900390625, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119034, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 6 ()", + "module": "test", + "msecs": 119.0340518951416, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.352027893066, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119148, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 119.14801597595215, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.465991973877, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119267, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 1 ()", + "module": "test", + "msecs": 119.26698684692383, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.584962844849, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119382, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 1 ()", + "module": "test", + "msecs": 119.38190460205078, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.699880599976, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.11949, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 119.48990821838379, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.807884216309, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "2", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119614, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 2 ()", + "module": "test", + "msecs": 119.6138858795166, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6847.931861877441, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "2", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119717, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 2 ()", + "module": "test", + "msecs": 119.71688270568848, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.034858703613, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119827, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 119.8270320892334, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.145008087158, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "3", + "" + ], + "asctime": "2019-12-27 08:21:07,119", + "created": 1577431267.119993, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 3 ()", + "module": "test", + "msecs": 119.99297142028809, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.310947418213, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "3", + "" + ], + "asctime": "2019-12-27 08:21:07,120", + "created": 1577431267.120124, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 3 ()", + "module": "test", + "msecs": 120.12410163879395, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.442077636719, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:07,120", + "created": 1577431267.120269, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 120.2690601348877, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.5870361328125, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 120.38111686706543, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6848.69909286499, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00011205673217773438 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.6079401969909668, + "time_finished": "2019-12-27 08:21:07,120", + "time_start": "2019-12-27 08:21:06,512" + }, + "pylibs.task.threaded_queue: Test qsize and queue execution order by priority": { + "args": null, + "asctime": "2019-12-27 08:21:03,589", + "created": 1577431263.589994, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 26, + "message": "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "module": "__init__", + "moduleLogger": [], + "msecs": 589.993953704834, + "msg": "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3318.311929702759, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.591431, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 28, + "message": "Enqueued 6 unordered tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [ + 5, + 5 + ], + "asctime": "2019-12-27 08:21:03,590", + "created": 1577431263.590407, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 5 with Priority 5", + "module": "test_threaded_queue", + "msecs": 590.4068946838379, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3318.7248706817627, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 3, + 3 + ], + "asctime": "2019-12-27 08:21:03,590", + "created": 1577431263.590599, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 3 with Priority 3", + "module": "test_threaded_queue", + "msecs": 590.5990600585938, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3318.9170360565186, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 7, + 7 + ], + "asctime": "2019-12-27 08:21:03,590", + "created": 1577431263.590784, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 7 with Priority 7", + "module": "test_threaded_queue", + "msecs": 590.7840728759766, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.1020488739014, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 2, + 2 + ], + "asctime": "2019-12-27 08:21:03,590", + "created": 1577431263.590962, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 2 with Priority 2", + "module": "test_threaded_queue", + "msecs": 590.9619331359863, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.279909133911, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6 + ], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.591126, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 6 with Priority 6", + "module": "test_threaded_queue", + "msecs": 591.1259651184082, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.443941116333, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.591299, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 591.2990570068359, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.6170330047607, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 591.4309024810791, + "msg": "Enqueued 6 unordered tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.748878479004, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013184547424316406 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.59196, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.591674, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 591.6740894317627, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3319.9920654296875, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:21:03,591", + "created": 1577431263.591818, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 591.81809425354, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3320.136070251465, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 591.9599533081055, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3320.2779293060303, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0001418590545654297 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:04,795", + "created": 1577431264.795451, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 37, + "message": "Executing Queue, till Queue is empty..", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:03,592", + "created": 1577431263.592191, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 592.1909809112549, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 3320.5089569091797, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2019-12-27 08:21:04,594", + "created": 1577431264.594851, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 35, + "message": "Queue is empty.", + "module": "test_threaded_queue", + "msecs": 594.851016998291, + "msg": "Queue is empty.", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4323.168992996216, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 795.4509258270264, + "msg": "Executing Queue, till Queue is empty..", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4523.768901824951, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.20059990882873535 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:21:04,796", + "created": 1577431264.796351, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:04,795", + "created": 1577431264.795874, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 795.8741188049316, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4524.192094802856, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:21:04,796", + "created": 1577431264.796087, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 796.0870265960693, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4524.405002593994, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 796.3509559631348, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4524.66893196106, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.0002639293670654297 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799765, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:04,796", + "created": 1577431264.796657, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 796.6570854187012, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4524.975061416626, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:21:04,796", + "created": 1577431264.796834, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 796.8339920043945, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.151968002319, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:04,796", + "created": 1577431264.796996, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 796.9961166381836, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.314092636108, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797139, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 797.1389293670654, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.45690536499, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797295, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 797.295093536377, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.613069534302, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797504, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 797.5039482116699, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.821924209595, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797643, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 797.6429462432861, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4525.960922241211, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797784, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 797.7840900421143, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.102066040039, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:04,797", + "created": 1577431264.797943, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 797.943115234375, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.2610912323, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.79808, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 798.0799674987793, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.397943496704, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.798218, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 798.2180118560791, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.535987854004, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.798358, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 798.3579635620117, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.6759395599365, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.798518, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 798.5179424285889, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4526.835918426514, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.798687, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 798.6869812011719, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.004957199097, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:21:04,798", + "created": 1577431264.798907, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 5): 6 ()", + "module": "test", + "msecs": 798.9070415496826, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.225017547607, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799047, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 5): result = 6 ()", + "module": "test", + "msecs": 799.0469932556152, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.36496925354, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799184, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 5 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 799.1840839385986, + "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.502059936523, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799339, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 6): 7 ()", + "module": "test", + "msecs": 799.3390560150146, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.657032012939, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799497, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 6): result = 7 ()", + "module": "test", + "msecs": 799.4968891143799, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.814865112305, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:21:04,799", + "created": 1577431264.799633, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 6 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 799.6330261230469, + "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4527.951002120972, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 799.7651100158691, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4528.083086013794, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00013208389282226562 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:05,001", + "created": 1577431265.001007, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Setting expire flag and enqueued again 2 tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:04,800", + "created": 1577431264.800042, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 41, + "message": "Expire executed", + "module": "test_threaded_queue", + "msecs": 800.041913986206, + "msg": "Expire executed", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4528.359889984131, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6 + ], + "asctime": "2019-12-27 08:21:05,000", + "created": 1577431265.000557, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Adding Task 6 with Priority 6", + "module": "test_threaded_queue", + "msecs": 0.55694580078125, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4728.874921798706, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:21:05,000", + "created": 1577431265.000836, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 0.8358955383300781, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4729.153871536255, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 1.007080078125, + "msg": "Setting expire flag and enqueued again 2 tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 4729.32505607605, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00017118453979492188 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:21:06,003", + "created": 1577431266.003947, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before restarting queue is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before restarting queue", + "2", + "" + ], + "asctime": "2019-12-27 08:21:06,003", + "created": 1577431266.003407, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before restarting queue): 2 ()", + "module": "test", + "msecs": 3.407001495361328, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 5731.724977493286, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before restarting queue", + "2", + "" + ], + "asctime": "2019-12-27 08:21:06,003", + "created": 1577431266.003741, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before restarting queue): result = 2 ()", + "module": "test", + "msecs": 3.741025924682617, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 5732.059001922607, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 3.947019577026367, + "msg": "Size of Queue before restarting queue is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 5732.264995574951, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00020599365234375 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:06,506", + "created": 1577431266.506121, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 61, + "message": "Executing Queue, till Queue is empty..", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:21:06,004", + "created": 1577431266.004235, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 54, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 4.235029220581055, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 5732.553005218506, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2019-12-27 08:21:06,505", + "created": 1577431266.505895, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Queue joined and stopped.", + "module": "test_threaded_queue", + "msecs": 505.89489936828613, + "msg": "Queue joined and stopped.", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6234.212875366211, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 506.1209201812744, + "msg": "Executing Queue, till Queue is empty..", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6234.438896179199, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00022602081298828125 + }, + { + "args": [], + "asctime": "2019-12-27 08:21:06,511", + "created": 1577431266.511878, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (rerun; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (rerun; identified by a submitted sequence number)", + "[ 1, 6 ]", + "" + ], + "asctime": "2019-12-27 08:21:06,509", + "created": 1577431266.50915, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (rerun; identified by a submitted sequence number)): [ 1, 6 ] ()", + "module": "test", + "msecs": 509.15002822875977, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6237.468004226685, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (rerun; identified by a submitted sequence number)", + "[ 1, 6 ]", + "" + ], + "asctime": "2019-12-27 08:21:06,509", + "created": 1577431266.509857, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (rerun; identified by a submitted sequence number)): result = [ 1, 6 ] ()", + "module": "test", + "msecs": 509.8569393157959, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6238.174915313721, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:06,510", + "created": 1577431266.510322, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 510.32209396362305, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6238.640069961548, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:21:06,510", + "created": 1577431266.510637, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 510.6370449066162, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6238.955020904541, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:21:06,510", + "created": 1577431266.510959, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 510.9589099884033, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6239.276885986328, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "6", + "" + ], + "asctime": "2019-12-27 08:21:06,511", + "created": 1577431266.511269, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 6 ()", + "module": "test", + "msecs": 511.26909255981445, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6239.587068557739, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "6", + "" + ], + "asctime": "2019-12-27 08:21:06,511", + "created": 1577431266.511471, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 6 ()", + "module": "test", + "msecs": 511.4710330963135, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6239.789009094238, + "thread": 140402695206720, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:21:06,511", + "created": 1577431266.511694, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 511.69395446777344, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6240.011930465698, + "thread": 140402695206720, + "threadName": "MainThread" + } + ], + "msecs": 511.87801361083984, + "msg": "Queue execution (rerun; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 4847, + "processName": "MainProcess", + "relativeCreated": 6240.195989608765, + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 0.00018405914306640625 + } + ], + "thread": 140402695206720, + "threadName": "MainThread", + "time_consumption": 2.921884059906006, + "time_finished": "2019-12-27 08:21:06,511", + "time_start": "2019-12-27 08:21:03,589" + } + }, + "testrun_id": "p2", + "time_consumption": 216.90785932540894, + "uid_list_sorted": [ + "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "pylibs.task.periodic: Test periodic execution", + "pylibs.task.queue: Test qsize and queue execution order by priority", + "pylibs.task.queue: Test stop method", + "pylibs.task.queue: Test clean_queue method", + "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "pylibs.task.threaded_queue: Test enqueue while queue is running", + "pylibs.task.crontab: Test cronjob", + "pylibs.task.crontab: Test crontab" + ] + }, + { + "heading_dict": {}, + "interpreter": "python 3.6.9 (final)", + "name": "Default Testsession name", + "number_of_failed_tests": 0, + "number_of_possibly_failed_tests": 0, + "number_of_successfull_tests": 9, + "number_of_tests": 9, + "testcase_execution_level": 90, + "testcase_names": { + "0": "Single Test", + "10": "Smoke Test (Minumum subset)", + "50": "Short Test (Subset)", + "90": "Full Test (all defined tests)" + }, + "testcases": { + "pylibs.task.crontab: Test cronjob": { + "args": null, + "asctime": "2019-12-27 08:24:45,074", + "created": 1577431485.0744212, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 28, + "message": "pylibs.task.crontab: Test cronjob", + "module": "__init__", + "moduleLogger": [], + "msecs": 74.42116737365723, + "msg": "pylibs.task.crontab: Test cronjob", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7147.225856781006, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:45,075", + "created": 1577431485.0752409, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 23, + "message": "Initialising cronjob with minute: [23, 45]; hour: [12, 17]; day: 25; month: any; day_of_week: any.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 75.2408504486084, + "msg": "Initialising cronjob with minute: [23, 45]; hour: [12, 17]; day: 25; month: any; day_of_week: any.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7148.045539855957, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,075", + "created": 1577431485.0758893, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,075", + "created": 1577431485.0755389, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): True ()", + "module": "test", + "msecs": 75.53887367248535, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7148.343563079834, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,075", + "created": 1577431485.0757227, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = True ()", + "module": "test", + "msecs": 75.72269439697266, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7148.527383804321, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 75.88934898376465, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7148.694038391113, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001666545867919922 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0764067, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0761144, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): True ()", + "module": "test", + "msecs": 76.11441612243652, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7148.919105529785, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0762556, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = True ()", + "module": "test", + "msecs": 76.25555992126465, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.060249328613, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 76.40671730041504, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.211406707764, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00015115737915039062 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0768597, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0766032, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 76.60317420959473, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.407863616943, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,076", + "created": 1577431485.0767329, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 76.73287391662598, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.537563323975, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 76.85971260070801, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.664402008057, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012683868408203125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.0773063, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.0770364, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): False ()", + "module": "test", + "msecs": 77.03638076782227, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.841070175171, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.077176, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 77.17609405517578, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7149.980783462524, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 77.30627059936523, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.110960006714, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00013017654418945312 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.0778313, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.0775754, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 77.5754451751709, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.3801345825195, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,077", + "created": 1577431485.0777047, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 77.70466804504395, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.509357452393, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 77.83126831054688, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.6359577178955, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001266002655029297 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0782895, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.07802, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 78.02009582519531, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.824785232544, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0781636, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 78.16362380981445, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7150.968313217163, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 78.28950881958008, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.094198226929, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.000125885009765625 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0784428, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Storing reminder for execution (minute: 23, hour: 17, day: 25, month: 2, day_of_week: 1).", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 78.44281196594238, + "msg": "Storing reminder for execution (minute: 23, hour: 17, day: 25, month: 2, day_of_week: 1).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.247501373291, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0788658, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0786173, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 78.61733436584473, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.422023773193, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,078", + "created": 1577431485.0787435, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 78.74345779418945, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.548147201538, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 78.86576652526855, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.670455932617, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012230873107910156 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.0793092, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.0790508, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): True ()", + "module": "test", + "msecs": 79.05077934265137, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.85546875, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.079175, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = True ()", + "module": "test", + "msecs": 79.17499542236328, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7151.979684829712, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 79.30922508239746, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7152.113914489746, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001342296600341797 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.0797396, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.079491, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 79.49090003967285, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7152.2955894470215, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,079", + "created": 1577431485.0796156, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 79.61559295654297, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7152.420282363892, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 79.73957061767578, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7152.544260025024, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001239776611328125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,080", + "created": 1577431485.080415, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,080", + "created": 1577431485.0800161, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): False ()", + "module": "test", + "msecs": 80.0161361694336, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7152.820825576782, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,080", + "created": 1577431485.080222, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 80.22189140319824, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7153.026580810547, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 80.41501045227051, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7153.219699859619, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00019311904907226562 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,081", + "created": 1577431485.0812364, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,080", + "created": 1577431485.0807474, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 80.74736595153809, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7153.552055358887, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,080", + "created": 1577431485.0809948, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 80.99484443664551, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7153.799533843994, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 81.23636245727539, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7154.041051864624, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0002415180206298828 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0821004, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,081", + "created": 1577431485.081619, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 81.6190242767334, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7154.423713684082, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,081", + "created": 1577431485.0818448, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 81.84480667114258, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7154.649496078491, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 82.10039138793945, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7154.905080795288, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.000255584716796875 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0822873, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 38, + "message": "Resetting trigger condition with minute: 22; hour: any; day: [12, 17, 25], month: 2.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 82.28731155395508, + "msg": "Resetting trigger condition with minute: 22; hour: any; day: [12, 17, 25], month: 2.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.092000961304, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0828075, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0825183, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 82.51833915710449, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.323028564453, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0826676, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 82.66758918762207, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.472278594971, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 82.80754089355469, + "msg": "Return value for minute: 23; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.612230300903, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001399517059326172 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.0832405, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,082", + "created": 1577431485.0829885, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): False ()", + "module": "test", + "msecs": 82.98850059509277, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.793190002441, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.0831141, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5): result = False ()", + "module": "test", + "msecs": 83.1141471862793, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7155.918836593628, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 83.24050903320312, + "msg": "Return value for minute: 45; hour: 12; day: 25; month: 03, day_of_week: 5 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.045198440552, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012636184692382812 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.083715, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.0834625, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): True ()", + "module": "test", + "msecs": 83.46247673034668, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.267166137695, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.083591, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1): result = True ()", + "module": "test", + "msecs": 83.59098434448242, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.395673751831, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 83.71496200561523, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.519651412964, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001239776611328125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0841606, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,083", + "created": 1577431485.0839055, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3): False ()", + "module": "test", + "msecs": 83.90545845031738, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.710147857666, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0840385, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3): result = False ()", + "module": "test", + "msecs": 84.03849601745605, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.843185424805, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 84.16056632995605, + "msg": "Return value for minute: 22; hour: 17; day: 25; month: 05, day_of_week: 3 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7156.965255737305, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001220703125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0845873, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0843318, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 84.33175086975098, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.1364402771, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0844548, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 84.45477485656738, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.259464263916, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 84.58733558654785, + "msg": "Return value for minute: 45; hour: 14; day: 25; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.3920249938965, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00013256072998046875 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0850408, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0847747, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): False ()", + "module": "test", + "msecs": 84.77473258972168, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.57942199707, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,084", + "created": 1577431485.0849166, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1): result = False ()", + "module": "test", + "msecs": 84.91659164428711, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.721281051636, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 85.04080772399902, + "msg": "Return value for minute: 23; hour: 17; day: 24; month: 02, day_of_week: 1 is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.845497131348, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012421607971191406 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0851932, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "cronjob", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Resetting trigger condition (again).", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 85.19315719604492, + "msg": "Resetting trigger condition (again).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7157.997846603394, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0855083, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "1st run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "1st run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0854075, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (1st run - execution not needed): False ()", + "module": "test", + "msecs": 85.40749549865723, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.212184906006, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1st run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0854611, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (1st run - execution not needed): result = False ()", + "module": "test", + "msecs": 85.46113967895508, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.265829086304, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 85.50834655761719, + "msg": "1st run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.313035964966, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.7206878662109375e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0856502, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "2nd run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "2nd run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0855665, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (2nd run - execution not needed): False ()", + "module": "test", + "msecs": 85.56652069091797, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.371210098267, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2nd run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0856102, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (2nd run - execution not needed): result = False ()", + "module": "test", + "msecs": 85.61015129089355, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.414840698242, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 85.65020561218262, + "msg": "2nd run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.454895019531, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.085787, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "3rd run - execution needed is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "3rd run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.085707, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (3rd run - execution needed): True ()", + "module": "test", + "msecs": 85.70694923400879, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.511638641357, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3rd run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0857472, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (3rd run - execution needed): result = True ()", + "module": "test", + "msecs": 85.74724197387695, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.551931381226, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 85.78705787658691, + "msg": "3rd run - execution needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.591747283936, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 3.981590270996094e-05 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.085923, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "4th run - execution needed is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "4th run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0858436, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (4th run - execution needed): True ()", + "module": "test", + "msecs": 85.84356307983398, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.648252487183, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "4th run - execution needed", + "True", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0858834, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (4th run - execution needed): result = True ()", + "module": "test", + "msecs": 85.88337898254395, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.688068389893, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 85.9229564666748, + "msg": "4th run - execution needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.727645874023, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 3.9577484130859375e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.0860605, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "5th run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "5th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,085", + "created": 1577431485.0859776, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (5th run - execution not needed): False ()", + "module": "test", + "msecs": 85.97755432128906, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.782243728638, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "5th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.0860176, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (5th run - execution not needed): result = False ()", + "module": "test", + "msecs": 86.01760864257812, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.822298049927, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 86.0605239868164, + "msg": "5th run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.865213394165, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.291534423828125e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.086198, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "6th run - execution not needed is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "6th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.086118, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (6th run - execution not needed): False ()", + "module": "test", + "msecs": 86.11798286437988, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.9226722717285, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6th run - execution not needed", + "False", + "" + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.086158, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (6th run - execution not needed): result = False ()", + "module": "test", + "msecs": 86.15803718566895, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7158.962726593018, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 86.19809150695801, + "msg": "6th run - execution not needed is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7159.002780914307, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.00543212890625e-05 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.011776924133300781, + "time_finished": "2019-12-27 08:24:45,086", + "time_start": "2019-12-27 08:24:45,074" + }, + "pylibs.task.crontab: Test crontab": { + "args": null, + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.0863705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 29, + "message": "pylibs.task.crontab: Test crontab", + "module": "__init__", + "moduleLogger": [], + "msecs": 86.37046813964844, + "msg": "pylibs.task.crontab: Test crontab", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7159.175157546997, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.0864336, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "crontab", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 57, + "message": "Creating Crontab with callback execution in +1 and +3 minutes.", + "module": "test_crontab", + "moduleLogger": [], + "msecs": 86.43364906311035, + "msg": "Creating Crontab with callback execution in +1 and +3 minutes.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7159.238338470459, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:28:15,165", + "created": 1577431695.165938, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Number of submitted values is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + 30 + ], + "asctime": "2019-12-27 08:24:45,086", + "created": 1577431485.0865285, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "crontab", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Crontab accuracy is 30s", + "module": "test_crontab", + "msecs": 86.52853965759277, + "msg": "Crontab accuracy is %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 7159.333229064941, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1577431515, + 1577431500 + ], + "asctime": "2019-12-27 08:25:15,088", + "created": 1577431515.0881016, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "report_value", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 17, + "message": "Crontab execution number 1 at 1577431515s, requested for 1577431500s", + "module": "test_crontab", + "msecs": 88.10162544250488, + "msg": "Crontab execution number %d at %ds, requested for %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 37160.90631484985, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-41" + }, + { + "args": [ + 2, + 1577431635, + 1577431620 + ], + "asctime": "2019-12-27 08:27:15,090", + "created": 1577431635.090192, + "exc_info": null, + "exc_text": null, + "filename": "test_crontab.py", + "funcName": "report_value", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 17, + "message": "Crontab execution number 2 at 1577431635s, requested for 1577431620s", + "module": "test_crontab", + "msecs": 90.19207954406738, + "msg": "Crontab execution number %d at %ds, requested for %ds", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_crontab.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 157162.99676895142, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-45" + }, + { + "args": [ + "Timing of crontasks", + "[ 1577431515, 1577431635 ]", + "" + ], + "asctime": "2019-12-27 08:28:15,165", + "created": 1577431695.165291, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Timing of crontasks): [ 1577431515, 1577431635 ] ()", + "module": "test", + "msecs": 165.29107093811035, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217238.09576034546, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Number of submitted values", + "2", + "" + ], + "asctime": "2019-12-27 08:28:15,165", + "created": 1577431695.165608, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Number of submitted values): 2 ()", + "module": "test", + "msecs": 165.60792922973633, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217238.41261863708, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Number of submitted values", + "2", + "" + ], + "asctime": "2019-12-27 08:28:15,165", + "created": 1577431695.1657827, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Number of submitted values): result = 2 ()", + "module": "test", + "msecs": 165.78269004821777, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217238.58737945557, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 165.9379005432129, + "msg": "Number of submitted values is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217238.74258995056, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001552104949951172 + }, + { + "args": [], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1669798, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report_range_check", + "levelname": "INFO", + "levelno": 20, + "lineno": 178, + "message": "Timing of crontasks: Valueaccuracy and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Submitted value number 1", + "1577431515", + "" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1661773, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1577431515 ()", + "module": "test", + "msecs": 166.17727279663086, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217238.98196220398, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1577431500", + "1577431531" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1663172, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Submitted value number 1): 1577431500 <= result <= 1577431531", + "module": "test", + "msecs": 166.31722450256348, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.1219139099, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1577431515", + "1577431500", + "1577431531", + "" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.166453, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Submitted value number 1 is correct (Content 1577431515 in [1577431500 ... 1577431531] and Type is ).", + "module": "test", + "msecs": 166.45288467407227, + "msg": "Submitted value number 1 is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.25757408142, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1577431635", + "" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1666038, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 1577431635 ()", + "module": "test", + "msecs": 166.60380363464355, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.408493042, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1577431620", + "1577431651" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1667297, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Submitted value number 2): 1577431620 <= result <= 1577431651", + "module": "test", + "msecs": 166.72968864440918, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.53437805176, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1577431635", + "1577431620", + "1577431651", + "" + ], + "asctime": "2019-12-27 08:28:15,166", + "created": 1577431695.1668587, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Submitted value number 2 is correct (Content 1577431635 in [1577431620 ... 1577431651] and Type is ).", + "module": "test", + "msecs": 166.85867309570312, + "msg": "Submitted value number 2 is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.66336250305, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 166.97978973388672, + "msg": "Timing of crontasks: Valueaccuracy and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 217239.78447914124, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012111663818359375 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 210.08060932159424, + "time_finished": "2019-12-27 08:28:15,166", + "time_start": "2019-12-27 08:24:45,086" + }, + "pylibs.task.delayed: Test parallel processing and timing for a delayed execution": { + "args": null, + "asctime": "2019-12-27 08:24:37,990", + "created": 1577431477.9900951, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 21, + "message": "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "module": "__init__", + "moduleLogger": [], + "msecs": 990.0951385498047, + "msg": "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 62.89982795715332, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + 0.25 + ], + "asctime": "2019-12-27 08:24:37,990", + "created": 1577431477.9905934, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.250s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 990.593433380127, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 63.398122787475586, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2924073, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,291", + "created": 1577431478.2914734, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 291.473388671875, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.27807807922363, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,291", + "created": 1577431478.2916791, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 291.67914390563965, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.4838333129883, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,291", + "created": 1577431478.2918193, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 291.81933403015137, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.6240234375, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,291", + "created": 1577431478.2919242, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 291.92423820495605, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.7289276123047, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2920418, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 292.0417785644531, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.84646797180176, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2921395, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 292.13953018188477, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 364.9442195892334, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2922292, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 292.22917556762695, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.0338649749756, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2923214, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 292.32144355773926, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.1261329650879, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 292.4072742462158, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.21196365356445, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 8.58306884765625e-05 + }, + { + "args": [ + "0.25007009506225586", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.292747, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.25007009506225586 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.25007009506225586", + "" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2925594, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.25007009506225586 ()", + "module": "test", + "msecs": 292.5593852996826, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.36407470703125, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:24:38,292", + "created": 1577431478.2926524, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 292.6523685455322, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.45705795288086, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 292.74702072143555, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 365.5517101287842, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 9.465217590332031e-05 + }, + { + "args": [ + 0.01 + ], + "asctime": "2019-12-27 08:24:38,293", + "created": 1577431478.2932196, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.010s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 293.21956634521484, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 366.0242557525635, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:38,395", + "created": 1577431478.3952105, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,393", + "created": 1577431478.3937883, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 393.78833770751953, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 466.59302711486816, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3940794, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 394.07944679260254, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 466.8841361999512, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3942857, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 394.2856788635254, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.090368270874, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3944888, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 394.4888114929199, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.29350090026855, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3946483, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 394.64831352233887, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.4530029296875, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3948002, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 394.80018615722656, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.6048755645752, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,394", + "created": 1577431478.3949344, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 394.93441581726074, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.7391052246094, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,395", + "created": 1577431478.3950822, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 395.0822353363037, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 467.88692474365234, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 395.21050453186035, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 468.015193939209, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00012826919555664062 + }, + { + "args": [ + "0.010076522827148438", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:24:38,395", + "created": 1577431478.39578, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.010076522827148438 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.010076522827148438", + "" + ], + "asctime": "2019-12-27 08:24:38,395", + "created": 1577431478.3954537, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.010076522827148438 ()", + "module": "test", + "msecs": 395.45369148254395, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 468.2583808898926, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:24:38,395", + "created": 1577431478.3956277, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 395.6277370452881, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 468.4324264526367, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 395.780086517334, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 468.5847759246826, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00015234947204589844 + }, + { + "args": [ + 0.005 + ], + "asctime": "2019-12-27 08:24:38,396", + "created": 1577431478.3964353, + "exc_info": null, + "exc_text": null, + "filename": "test_delayed.py", + "funcName": "delayed", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 36, + "message": "Added a delayed task for execution in 0.005s.", + "module": "test_delayed", + "moduleLogger": [], + "msecs": 396.4352607727051, + "msg": "Added a delayed task for execution in %.3fs.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_delayed.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 469.2399501800537, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:38,499", + "created": 1577431478.499104, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,497", + "created": 1577431478.4970422, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Execution of task and delayed task (identified by a submitted sequence number)): [ 1, 2 ] ()", + "module": "test", + "msecs": 497.042179107666, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 569.8468685150146, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Execution of task and delayed task (identified by a submitted sequence number)", + "[ 1, 2 ]", + "" + ], + "asctime": "2019-12-27 08:24:38,497", + "created": 1577431478.497334, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Execution of task and delayed task (identified by a submitted sequence number)): result = [ 1, 2 ] ()", + "module": "test", + "msecs": 497.3340034484863, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 570.138692855835, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,497", + "created": 1577431478.4975934, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 497.5934028625488, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 570.3980922698975, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,497", + "created": 1577431478.4977515, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 497.75147438049316, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 570.5561637878418, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:38,497", + "created": 1577431478.4979024, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 497.90239334106445, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 570.7070827484131, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,498", + "created": 1577431478.4980478, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 498.0478286743164, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 570.852518081665, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,498", + "created": 1577431478.4981997, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 498.1997013092041, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 571.0043907165527, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:38,498", + "created": 1577431478.498334, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 498.3339309692383, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 571.1386203765869, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 499.1040229797363, + "msg": "Execution of task and delayed task (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 571.908712387085, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0007700920104980469 + }, + { + "args": [ + "0.00506138801574707", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:24:38,499", + "created": 1577431478.4999888, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Time consumption is correct (Content 0.00506138801574707 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Time consumption", + "0.00506138801574707", + "" + ], + "asctime": "2019-12-27 08:24:38,499", + "created": 1577431478.4995515, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Time consumption): 0.00506138801574707 ()", + "module": "test", + "msecs": 499.55153465270996, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 572.3562240600586, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Time consumption", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:24:38,499", + "created": 1577431478.4998133, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Time consumption): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 499.8133182525635, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 572.6180076599121, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 499.9887943267822, + "msg": "Time consumption is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 572.7934837341309, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00017547607421875 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.5098936557769775, + "time_finished": "2019-12-27 08:24:38,499", + "time_start": "2019-12-27 08:24:37,990" + }, + "pylibs.task.periodic: Test periodic execution": { + "args": null, + "asctime": "2019-12-27 08:24:38,500", + "created": 1577431478.5003939, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 22, + "message": "pylibs.task.periodic: Test periodic execution", + "module": "__init__", + "moduleLogger": [], + "msecs": 500.3938674926758, + "msg": "pylibs.task.periodic: Test periodic execution", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 573.1985569000244, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + 10, + "0.25" + ], + "asctime": "2019-12-27 08:24:40,804", + "created": 1577431480.8047183, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.25s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431478.501697 + ], + "asctime": "2019-12-27 08:24:38,501", + "created": 1577431478.5017488, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431478.501697", + "module": "test_periodic", + "msecs": 501.74880027770996, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 574.5534896850586, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-4" + }, + { + "args": [ + 2, + 1577431478.7523081 + ], + "asctime": "2019-12-27 08:24:38,752", + "created": 1577431478.75237, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431478.752308", + "module": "test_periodic", + "msecs": 752.3701190948486, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 825.1748085021973, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-5" + }, + { + "args": [ + 3, + 1577431479.0024757 + ], + "asctime": "2019-12-27 08:24:39,002", + "created": 1577431479.0025008, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431479.002476", + "module": "test_periodic", + "msecs": 2.500772476196289, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 1075.305461883545, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-6" + }, + { + "args": [ + 4, + 1577431479.2528229 + ], + "asctime": "2019-12-27 08:24:39,252", + "created": 1577431479.252864, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431479.252823", + "module": "test_periodic", + "msecs": 252.86388397216797, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 1325.6685733795166, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-7" + }, + { + "args": [ + 5, + 1577431479.5032227 + ], + "asctime": "2019-12-27 08:24:39,503", + "created": 1577431479.5032673, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431479.503223", + "module": "test_periodic", + "msecs": 503.2672882080078, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 1576.0719776153564, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-8" + }, + { + "args": [ + 6, + 1577431479.7535057 + ], + "asctime": "2019-12-27 08:24:39,753", + "created": 1577431479.7535307, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431479.753506", + "module": "test_periodic", + "msecs": 753.530740737915, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 1826.3354301452637, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-9" + }, + { + "args": [ + 7, + 1577431480.0040848 + ], + "asctime": "2019-12-27 08:24:40,004", + "created": 1577431480.0041423, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431480.004085", + "module": "test_periodic", + "msecs": 4.142284393310547, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2076.946973800659, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-10" + }, + { + "args": [ + 8, + 1577431480.254681 + ], + "asctime": "2019-12-27 08:24:40,254", + "created": 1577431480.2547424, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431480.254681", + "module": "test_periodic", + "msecs": 254.74238395690918, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2327.547073364258, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-11" + }, + { + "args": [ + 9, + 1577431480.5051923 + ], + "asctime": "2019-12-27 08:24:40,505", + "created": 1577431480.5052505, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431480.505192", + "module": "test_periodic", + "msecs": 505.2504539489746, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2578.0551433563232, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-12" + }, + { + "args": [ + 10, + 1577431480.7558339 + ], + "asctime": "2019-12-27 08:24:40,755", + "created": 1577431480.7558966, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431480.755834", + "module": "test_periodic", + "msecs": 755.8965682983398, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2828.7012577056885, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-13" + } + ], + "msecs": 804.7182559967041, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2877.5229454040527, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.04882168769836426 + }, + { + "args": [ + "0.2501676082611084", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:24:40,805", + "created": 1577431480.8055809, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.2501676082611084 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.2501676082611084", + "" + ], + "asctime": "2019-12-27 08:24:40,805", + "created": 1577431480.8051372, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.2501676082611084 ()", + "module": "test", + "msecs": 805.1371574401855, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2877.941846847534, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:24:40,805", + "created": 1577431480.8053389, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 805.3388595581055, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2878.143548965454, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 805.5808544158936, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2878.385543823242, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00024199485778808594 + }, + { + "args": [ + "0.2504596445295546", + "0.2465", + "0.2545", + "" + ], + "asctime": "2019-12-27 08:24:40,806", + "created": 1577431480.8061478, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.2504596445295546 in [0.2465 ... 0.2545] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.2504596445295546", + "" + ], + "asctime": "2019-12-27 08:24:40,805", + "created": 1577431480.8058324, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.2504596445295546 ()", + "module": "test", + "msecs": 805.8323860168457, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2878.6370754241943, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.2465", + "0.2545" + ], + "asctime": "2019-12-27 08:24:40,805", + "created": 1577431480.8059876, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.2465 <= result <= 0.2545", + "module": "test", + "msecs": 805.9875965118408, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2878.7922859191895, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 806.1478137969971, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2878.9525032043457, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00016021728515625 + }, + { + "args": [ + "0.2506415843963623", + "0.2465", + "0.2565", + "" + ], + "asctime": "2019-12-27 08:24:40,806", + "created": 1577431480.806646, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.2506415843963623 in [0.2465 ... 0.2565] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.2506415843963623", + "" + ], + "asctime": "2019-12-27 08:24:40,806", + "created": 1577431480.8063653, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.2506415843963623 ()", + "module": "test", + "msecs": 806.3652515411377, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2879.1699409484863, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.2465", + "0.2565" + ], + "asctime": "2019-12-27 08:24:40,806", + "created": 1577431480.806504, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.2465 <= result <= 0.2565", + "module": "test", + "msecs": 806.5040111541748, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2879.3087005615234, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 806.6461086273193, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2879.450798034668, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00014209747314453125 + }, + { + "args": [ + 10, + "0.01" + ], + "asctime": "2019-12-27 08:24:40,927", + "created": 1577431480.9277387, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.01s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431480.8078153 + ], + "asctime": "2019-12-27 08:24:40,807", + "created": 1577431480.8078654, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431480.807815", + "module": "test_periodic", + "msecs": 807.8653812408447, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2880.6700706481934, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-15" + }, + { + "args": [ + 2, + 1577431480.818227 + ], + "asctime": "2019-12-27 08:24:40,818", + "created": 1577431480.8182752, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431480.818227", + "module": "test_periodic", + "msecs": 818.2752132415771, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2891.079902648926, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-16" + }, + { + "args": [ + 3, + 1577431480.8284092 + ], + "asctime": "2019-12-27 08:24:40,828", + "created": 1577431480.8284326, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431480.828409", + "module": "test_periodic", + "msecs": 828.432559967041, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2901.2372493743896, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-17" + }, + { + "args": [ + 4, + 1577431480.8386538 + ], + "asctime": "2019-12-27 08:24:40,838", + "created": 1577431480.8386762, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431480.838654", + "module": "test_periodic", + "msecs": 838.6762142181396, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2911.4809036254883, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-18" + }, + { + "args": [ + 5, + 1577431480.8491185 + ], + "asctime": "2019-12-27 08:24:40,849", + "created": 1577431480.8491988, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431480.849118", + "module": "test_periodic", + "msecs": 849.1988182067871, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2922.0035076141357, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-19" + }, + { + "args": [ + 6, + 1577431480.8594744 + ], + "asctime": "2019-12-27 08:24:40,859", + "created": 1577431480.8595076, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431480.859474", + "module": "test_periodic", + "msecs": 859.5075607299805, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2932.312250137329, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-20" + }, + { + "args": [ + 7, + 1577431480.8700328 + ], + "asctime": "2019-12-27 08:24:40,870", + "created": 1577431480.8700864, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431480.870033", + "module": "test_periodic", + "msecs": 870.0864315032959, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2942.8911209106445, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-21" + }, + { + "args": [ + 8, + 1577431480.8805087 + ], + "asctime": "2019-12-27 08:24:40,880", + "created": 1577431480.8805602, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431480.880509", + "module": "test_periodic", + "msecs": 880.5601596832275, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2953.364849090576, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-22" + }, + { + "args": [ + 9, + 1577431480.891075 + ], + "asctime": "2019-12-27 08:24:40,891", + "created": 1577431480.891135, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431480.891075", + "module": "test_periodic", + "msecs": 891.1349773406982, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2963.939666748047, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-23" + }, + { + "args": [ + 10, + 1577431480.901641 + ], + "asctime": "2019-12-27 08:24:40,901", + "created": 1577431480.9016974, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431480.901641", + "module": "test_periodic", + "msecs": 901.6973972320557, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 2974.5020866394043, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-24" + } + ], + "msecs": 927.7386665344238, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3000.5433559417725, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.026041269302368164 + }, + { + "args": [ + "0.01018214225769043", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:24:40,928", + "created": 1577431480.928514, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.01018214225769043 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.01018214225769043", + "" + ], + "asctime": "2019-12-27 08:24:40,928", + "created": 1577431480.9281409, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.01018214225769043 ()", + "module": "test", + "msecs": 928.1408786773682, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3000.945568084717, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:24:40,928", + "created": 1577431480.928339, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 928.3390045166016, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3001.14369392395, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 928.5140037536621, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3001.3186931610107, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00017499923706054688 + }, + { + "args": [ + "0.010425064298841689", + "0.008900000000000002", + "0.0121", + "" + ], + "asctime": "2019-12-27 08:24:40,929", + "created": 1577431480.92908, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.010425064298841689 in [0.008900000000000002 ... 0.0121] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.010425064298841689", + "" + ], + "asctime": "2019-12-27 08:24:40,928", + "created": 1577431480.9287474, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.010425064298841689 ()", + "module": "test", + "msecs": 928.7474155426025, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3001.552104949951, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.008900000000000002", + "0.0121" + ], + "asctime": "2019-12-27 08:24:40,928", + "created": 1577431480.928929, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.008900000000000002 <= result <= 0.0121", + "module": "test", + "msecs": 928.9290904998779, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3001.7337799072266, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 929.0800094604492, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3001.884698867798, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00015091896057128906 + }, + { + "args": [ + "0.010566234588623047", + "0.008900000000000002", + "0.0141", + "" + ], + "asctime": "2019-12-27 08:24:40,929", + "created": 1577431480.9296472, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.010566234588623047 in [0.008900000000000002 ... 0.0141] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.010566234588623047", + "" + ], + "asctime": "2019-12-27 08:24:40,929", + "created": 1577431480.9292898, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.010566234588623047 ()", + "module": "test", + "msecs": 929.2898178100586, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3002.094507217407, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.008900000000000002", + "0.0141" + ], + "asctime": "2019-12-27 08:24:40,929", + "created": 1577431480.9295042, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.008900000000000002 <= result <= 0.0141", + "module": "test", + "msecs": 929.5041561126709, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3002.3088455200195, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 929.6472072601318, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3002.4518966674805, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001430511474609375 + }, + { + "args": [ + 10, + "0.005" + ], + "asctime": "2019-12-27 08:24:41,040", + "created": 1577431481.0407653, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "periodic", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 63, + "message": "Running a periodic task for 10 cycles with a cycletime of 0.005s", + "module": "test_periodic", + "moduleLogger": [ + { + "args": [ + 1, + 1577431480.9308004 + ], + "asctime": "2019-12-27 08:24:40,930", + "created": 1577431480.93085, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 1 at 1577431480.930800", + "module": "test_periodic", + "msecs": 930.8500289916992, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3003.654718399048, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-26" + }, + { + "args": [ + 2, + 1577431480.9363594 + ], + "asctime": "2019-12-27 08:24:40,936", + "created": 1577431480.9364412, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 2 at 1577431480.936359", + "module": "test_periodic", + "msecs": 936.44118309021, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3009.2458724975586, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-27" + }, + { + "args": [ + 3, + 1577431480.941607 + ], + "asctime": "2019-12-27 08:24:40,941", + "created": 1577431480.941632, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 3 at 1577431480.941607", + "module": "test_periodic", + "msecs": 941.6320323944092, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3014.436721801758, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-28" + }, + { + "args": [ + 4, + 1577431480.9468663 + ], + "asctime": "2019-12-27 08:24:40,946", + "created": 1577431480.9468925, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 4 at 1577431480.946866", + "module": "test_periodic", + "msecs": 946.892499923706, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3019.6971893310547, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-29" + }, + { + "args": [ + 5, + 1577431480.9521713 + ], + "asctime": "2019-12-27 08:24:40,952", + "created": 1577431480.9522011, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 5 at 1577431480.952171", + "module": "test_periodic", + "msecs": 952.2011280059814, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3025.00581741333, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-30" + }, + { + "args": [ + 6, + 1577431480.9574788 + ], + "asctime": "2019-12-27 08:24:40,957", + "created": 1577431480.957503, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 6 at 1577431480.957479", + "module": "test_periodic", + "msecs": 957.503080368042, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3030.3077697753906, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-31" + }, + { + "args": [ + 7, + 1577431480.9628253 + ], + "asctime": "2019-12-27 08:24:40,962", + "created": 1577431480.9628568, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 7 at 1577431480.962825", + "module": "test_periodic", + "msecs": 962.8567695617676, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3035.661458969116, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-32" + }, + { + "args": [ + 8, + 1577431480.9682872 + ], + "asctime": "2019-12-27 08:24:40,968", + "created": 1577431480.9683337, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 8 at 1577431480.968287", + "module": "test_periodic", + "msecs": 968.3337211608887, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3041.1384105682373, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-33" + }, + { + "args": [ + 9, + 1577431480.973785 + ], + "asctime": "2019-12-27 08:24:40,973", + "created": 1577431480.9738305, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 9 at 1577431480.973785", + "module": "test_periodic", + "msecs": 973.8304615020752, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3046.635150909424, + "stack_info": null, + "thread": 139854002153216, + "threadName": "Thread-34" + }, + { + "args": [ + 10, + 1577431480.9792497 + ], + "asctime": "2019-12-27 08:24:40,979", + "created": 1577431480.9792986, + "exc_info": null, + "exc_text": null, + "filename": "test_periodic.py", + "funcName": "task", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 24, + "message": "Task execution number 10 at 1577431480.979250", + "module": "test_periodic", + "msecs": 979.2985916137695, + "msg": "Task execution number %d at %f", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3052.103281021118, + "stack_info": null, + "thread": 139853991565056, + "threadName": "Thread-35" + } + ], + "msecs": 40.76528549194336, + "msg": "Running a periodic task for %d cycles with a cycletime of %ss", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_periodic.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3113.569974899292, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.06146669387817383 + }, + { + "args": [ + "0.005247592926025391", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:24:41,041", + "created": 1577431481.0415828, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Minimum cycle time is correct (Content 0.005247592926025391 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Minimum cycle time", + "0.005247592926025391", + "" + ], + "asctime": "2019-12-27 08:24:41,041", + "created": 1577431481.0411768, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Minimum cycle time): 0.005247592926025391 ()", + "module": "test", + "msecs": 41.176795959472656, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3113.9814853668213, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Minimum cycle time", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:24:41,041", + "created": 1577431481.0413504, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Minimum cycle time): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 41.350364685058594, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3114.155054092407, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 41.58282279968262, + "msg": "Minimum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3114.3875122070312, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00023245811462402344 + }, + { + "args": [ + "0.00538325309753418", + "0.00395", + "0.00705", + "" + ], + "asctime": "2019-12-27 08:24:41,042", + "created": 1577431481.0421102, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Mean cycle time is correct (Content 0.00538325309753418 in [0.00395 ... 0.00705] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Mean cycle time", + "0.00538325309753418", + "" + ], + "asctime": "2019-12-27 08:24:41,041", + "created": 1577431481.0418236, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Mean cycle time): 0.00538325309753418 ()", + "module": "test", + "msecs": 41.823625564575195, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3114.628314971924, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Mean cycle time", + "0.00395", + "0.00705" + ], + "asctime": "2019-12-27 08:24:41,041", + "created": 1577431481.0419698, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Mean cycle time): 0.00395 <= result <= 0.00705", + "module": "test", + "msecs": 41.96977615356445, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3114.774465560913, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 42.11020469665527, + "msg": "Mean cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3114.914894104004, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001404285430908203 + }, + { + "args": [ + "0.005558967590332031", + "0.00395", + "0.009049999999999999", + "" + ], + "asctime": "2019-12-27 08:24:41,042", + "created": 1577431481.042588, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "range_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 218, + "message": "Maximum cycle time is correct (Content 0.005558967590332031 in [0.00395 ... 0.009049999999999999] and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Maximum cycle time", + "0.005558967590332031", + "" + ], + "asctime": "2019-12-27 08:24:41,042", + "created": 1577431481.0423093, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Maximum cycle time): 0.005558967590332031 ()", + "module": "test", + "msecs": 42.30928421020508, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3115.1139736175537, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Maximum cycle time", + "0.00395", + "0.009049999999999999" + ], + "asctime": "2019-12-27 08:24:41,042", + "created": 1577431481.0424497, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_range__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Expectation (Maximum cycle time): 0.00395 <= result <= 0.009049999999999999", + "module": "test", + "msecs": 42.4497127532959, + "msg": "Expectation (%s): %s <= result <= %s", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3115.2544021606445, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 42.587995529174805, + "msg": "Maximum cycle time is correct (Content %s in [%s ... %s] and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3115.3926849365234, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00013828277587890625 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 2.542194128036499, + "time_finished": "2019-12-27 08:24:41,042", + "time_start": "2019-12-27 08:24:38,500" + }, + "pylibs.task.queue: Test clean_queue method": { + "args": null, + "asctime": "2019-12-27 08:24:41,253", + "created": 1577431481.2538595, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 25, + "message": "pylibs.task.queue: Test clean_queue method", + "module": "__init__", + "moduleLogger": [], + "msecs": 253.8595199584961, + "msg": "pylibs.task.queue: Test clean_queue method", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3326.6642093658447, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:41,254", + "created": 1577431481.2543318, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_clean", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 62, + "message": "Enqueued 6 tasks (stop request within 3rd task).", + "module": "test_queue", + "moduleLogger": [], + "msecs": 254.3318271636963, + "msg": "Enqueued 6 tasks (stop request within 3rd task).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3327.136516571045, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,254", + "created": 1577431481.2548077, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,254", + "created": 1577431481.2545362, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 254.53615188598633, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3327.340841293335, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,254", + "created": 1577431481.2546754, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 254.67538833618164, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3327.4800777435303, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 254.807710647583, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3327.6124000549316, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001323223114013672 + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2554038, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 3 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2551045, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 3 ()", + "module": "test", + "msecs": 255.10454177856445, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3327.909231185913, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2552388, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 3 ()", + "module": "test", + "msecs": 255.23877143859863, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.0434608459473, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 255.4037570953369, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.2084465026855, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00016498565673828125 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.2569718, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2556021, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3 ] ()", + "module": "test", + "msecs": 255.6021213531494, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.406810760498, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2557442, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3 ] ()", + "module": "test", + "msecs": 255.74421882629395, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.5489082336426, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2558804, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 255.88035583496094, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.6850452423096, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,255", + "created": 1577431481.2559998, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 255.99980354309082, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.8044929504395, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.256122, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 256.1221122741699, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3328.9268016815186, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.256249, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 256.24895095825195, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.0536403656006, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.2563677, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 256.36768341064453, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.172372817993, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.2564893, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 256.4892768859863, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.293966293335, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.2566123, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 256.61230087280273, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.4169902801514, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.2567334, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 256.7334175109863, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.538106918335, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,256", + "created": 1577431481.256856, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 256.85596466064453, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.660654067993, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 256.9718360900879, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3329.7765254974365, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00011587142944335938 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.257284, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_clean", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 68, + "message": "Cleaning Queue.", + "module": "test_queue", + "moduleLogger": [], + "msecs": 257.28392601013184, + "msg": "Cleaning Queue.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.0886154174805, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.257556, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after cleaning queue is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after cleaning queue", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2574503, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after cleaning queue): 0 ()", + "module": "test", + "msecs": 257.4503421783447, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.2550315856934, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after cleaning queue", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2575023, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after cleaning queue): result = 0 ()", + "module": "test", + "msecs": 257.50231742858887, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.3070068359375, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 257.5559616088867, + "msg": "Size of Queue after cleaning queue is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.3606510162354, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 5.364418029785156e-05 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.003696441650390625, + "time_finished": "2019-12-27 08:24:41,257", + "time_start": "2019-12-27 08:24:41,253" + }, + "pylibs.task.queue: Test qsize and queue execution order by priority": { + "args": null, + "asctime": "2019-12-27 08:24:41,042", + "created": 1577431481.0429635, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 23, + "message": "pylibs.task.queue: Test qsize and queue execution order by priority", + "module": "__init__", + "moduleLogger": [], + "msecs": 42.963504791259766, + "msg": "pylibs.task.queue: Test qsize and queue execution order by priority", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3115.7681941986084, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:41,043", + "created": 1577431481.0434654, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 25, + "message": "Enqueued 6 unordered tasks.", + "module": "test_queue", + "moduleLogger": [], + "msecs": 43.465375900268555, + "msg": "Enqueued 6 unordered tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3116.270065307617, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,043", + "created": 1577431481.0439498, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,043", + "created": 1577431481.0436747, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 43.67470741271973, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3116.4793968200684, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,043", + "created": 1577431481.0438159, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 43.81585121154785, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3116.6205406188965, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 43.94984245300293, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3116.7545318603516, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00013399124145507812 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.1450758, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,144", + "created": 1577431481.1445763, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 144.5763111114502, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3217.381000518799, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,144", + "created": 1577431481.1449056, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 144.90556716918945, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3217.710256576538, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 145.07579803466797, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3217.8804874420166, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00017023086547851562 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:41,148", + "created": 1577431481.148122, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.1453393, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 145.3392505645752, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.143939971924, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.1455808, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 145.58076858520508, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.3854579925537, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.1457293, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 145.72930335998535, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.533992767334, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.145871, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 145.87092399597168, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.6756134033203, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,145", + "created": 1577431481.1459997, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 145.99967002868652, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.804359436035, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.14615, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 146.1501121520996, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3218.9548015594482, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1462843, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 146.2843418121338, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.0890312194824, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1464071, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 146.4071273803711, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.2118167877197, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1465302, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 146.5301513671875, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.334840774536, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1466486, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 146.64864540100098, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.4533348083496, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1467712, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 146.77119255065918, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.575881958008, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,146", + "created": 1577431481.1468945, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 146.8944549560547, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.6991443634033, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1470118, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 147.01175689697266, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.8164463043213, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1471312, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 147.13120460510254, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3219.935894012451, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.147254, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 5): 6 ()", + "module": "test", + "msecs": 147.25399017333984, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.0586795806885, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1473715, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 5): result = 6 ()", + "module": "test", + "msecs": 147.3715305328369, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.1762199401855, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1475027, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 5 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 147.50266075134277, + "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.3073501586914, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1476362, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 6): 7 ()", + "module": "test", + "msecs": 147.63617515563965, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.4408645629883, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.147763, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 6): result = 7 ()", + "module": "test", + "msecs": 147.76301383972168, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.5677032470703, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,147", + "created": 1577431481.1479099, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 6 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 147.90987968444824, + "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.714569091797, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 148.12207221984863, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3220.9267616271973, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00021219253540039062 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.10515856742858887, + "time_finished": "2019-12-27 08:24:41,148", + "time_start": "2019-12-27 08:24:41,042" + }, + "pylibs.task.queue: Test stop method": { + "args": null, + "asctime": "2019-12-27 08:24:41,148", + "created": 1577431481.1487765, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 24, + "message": "pylibs.task.queue: Test stop method", + "module": "__init__", + "moduleLogger": [], + "msecs": 148.77653121948242, + "msg": "pylibs.task.queue: Test stop method", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3221.581220626831, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1492908, + "exc_info": null, + "exc_text": null, + "filename": "test_queue.py", + "funcName": "test_queue_stop", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Enqueued 6 tasks (stop request within 4th task).", + "module": "test_queue", + "moduleLogger": [], + "msecs": 149.2908000946045, + "msg": "Enqueued 6 tasks (stop request within 4th task).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.095489501953, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1496546, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before 1st execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before 1st execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1494877, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before 1st execution): 6 ()", + "module": "test", + "msecs": 149.48773384094238, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.292423248291, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before 1st execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1495697, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before 1st execution): result = 6 ()", + "module": "test", + "msecs": 149.56974983215332, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.374439239502, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 149.65462684631348, + "msg": "Size of Queue before 1st execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.459316253662, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 8.487701416015625e-05 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.149987, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after 1st execution is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after 1st execution", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1498399, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after 1st execution): 2 ()", + "module": "test", + "msecs": 149.8398780822754, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.644567489624, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after 1st execution", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,149", + "created": 1577431481.1499157, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after 1st execution): result = 2 ()", + "module": "test", + "msecs": 149.9156951904297, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.7203845977783, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 149.98698234558105, + "msg": "Size of Queue after 1st execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.7916717529297, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 7.128715515136719e-05 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:41,151", + "created": 1577431481.1510794, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (1st part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (1st part; identified by a submitted sequence number)", + "[ 1, 2, 3, 5 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1500964, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (1st part; identified by a submitted sequence number)): [ 1, 2, 3, 5 ] ()", + "module": "test", + "msecs": 150.09641647338867, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.9011058807373, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (1st part; identified by a submitted sequence number)", + "[ 1, 2, 3, 5 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1501763, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (1st part; identified by a submitted sequence number)): result = [ 1, 2, 3, 5 ] ()", + "module": "test", + "msecs": 150.1762866973877, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3222.9809761047363, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1502519, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 150.2518653869629, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.0565547943115, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1503198, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 150.31981468200684, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.1245040893555, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1503882, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 150.38824081420898, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.1929302215576, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.150469, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 150.4690647125244, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.273754119873, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1505368, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 150.53677558898926, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.341464996338, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1506126, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 150.61259269714355, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.417282104492, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.150683, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 150.68292617797852, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.487615585327, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1507504, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 150.75039863586426, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.555088043213, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1508176, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 150.8176326751709, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.6223220825195, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.1508856, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 150.88558197021484, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.6902713775635, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,150", + "created": 1577431481.150951, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 150.95090866088867, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.7555980682373, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:24:41,151", + "created": 1577431481.1510162, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 151.0162353515625, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.820924758911, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 151.0794162750244, + "msg": "Queue execution (1st part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3223.884105682373, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 6.318092346191406e-05 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,251", + "created": 1577431481.2519727, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after 2nd execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after 2nd execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,251", + "created": 1577431481.251534, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after 2nd execution): 0 ()", + "module": "test", + "msecs": 251.53398513793945, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3324.338674545288, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after 2nd execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:41,251", + "created": 1577431481.2517893, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after 2nd execution): result = 0 ()", + "module": "test", + "msecs": 251.78933143615723, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3324.594020843506, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 251.97267532348633, + "msg": "Size of Queue after 2nd execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3324.777364730835, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00018334388732910156 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:41,253", + "created": 1577431481.2534769, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (2nd part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (2nd part; identified by a submitted sequence number)", + "[ 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,252", + "created": 1577431481.2522037, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (2nd part; identified by a submitted sequence number)): [ 6, 7 ] ()", + "module": "test", + "msecs": 252.20370292663574, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.0083923339844, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (2nd part; identified by a submitted sequence number)", + "[ 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:41,252", + "created": 1577431481.2523634, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (2nd part; identified by a submitted sequence number)): result = [ 6, 7 ] ()", + "module": "test", + "msecs": 252.3634433746338, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.1681327819824, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,252", + "created": 1577431481.2525074, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 6 ()", + "module": "test", + "msecs": 252.50744819641113, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.3121376037598, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,252", + "created": 1577431481.2526898, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 6 ()", + "module": "test", + "msecs": 252.68983840942383, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.4945278167725, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,252", + "created": 1577431481.2528832, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 252.8831958770752, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.687885284424, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,253", + "created": 1577431481.2530217, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 7 ()", + "module": "test", + "msecs": 253.0217170715332, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.826406478882, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,253", + "created": 1577431481.253161, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 7 ()", + "module": "test", + "msecs": 253.16095352172852, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3325.965642929077, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:24:41,253", + "created": 1577431481.2532852, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 253.28516960144043, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3326.089859008789, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 253.4768581390381, + "msg": "Queue execution (2nd part; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3326.2815475463867, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00019168853759765625 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.10470032691955566, + "time_finished": "2019-12-27 08:24:41,253", + "time_start": "2019-12-27 08:24:41,148" + }, + "pylibs.task.threaded_queue: Test enqueue while queue is running": { + "args": null, + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.171688, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 27, + "message": "pylibs.task.threaded_queue: Test enqueue while queue is running", + "module": "__init__", + "moduleLogger": [], + "msecs": 171.68807983398438, + "msg": "pylibs.task.threaded_queue: Test enqueue while queue is running", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.492769241333, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1719058, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1718042, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 0 ()", + "module": "test", + "msecs": 171.80418968200684, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.6088790893555, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1718564, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 0 ()", + "module": "test", + "msecs": 171.85640335083008, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.661092758179, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 171.9057559967041, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.710445404053, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.935264587402344e-05 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:44,272", + "created": 1577431484.2729044, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 78, + "message": "Enqueued 2 tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1719644, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 69, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 171.9644069671631, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.769096374512, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6, + 0.1 + ], + "asctime": "2019-12-27 08:24:44,172", + "created": 1577431484.1722038, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 74, + "message": "Adding Task 6 with Priority 6 and waiting for 0.1s (half of the queue task delay time)", + "module": "test_threaded_queue", + "msecs": 172.20377922058105, + "msg": "Adding Task %d with Priority %d and waiting for %.1fs (half of the queue task delay time)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6245.00846862793, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 3, + 3 + ], + "asctime": "2019-12-27 08:24:44,272", + "created": 1577431484.2725263, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 3 with Priority 3", + "module": "test_threaded_queue", + "msecs": 272.5262641906738, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6345.3309535980225, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 2, + 2 + ], + "asctime": "2019-12-27 08:24:44,272", + "created": 1577431484.272716, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 2 with Priority 2", + "module": "test_threaded_queue", + "msecs": 272.7160453796387, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6345.520734786987, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:24:44,272", + "created": 1577431484.272826, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue_enqueue_while_running", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 77, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 272.8259563446045, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6345.630645751953, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 272.9043960571289, + "msg": "Enqueued 2 tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6345.7090854644775, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 7.843971252441406e-05 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.7744424, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.7740293, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 774.0292549133301, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6846.833944320679, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.7742808, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 774.2807865142822, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.085475921631, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 774.4424343109131, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.247123718262, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00016164779663085938 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:44,776", + "created": 1577431484.776536, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 6, 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.7746706, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 6, 1, 2, 3 ] ()", + "module": "test", + "msecs": 774.6706008911133, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.475290298462, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 6, 1, 2, 3 ]", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.774844, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 6, 1, 2, 3 ] ()", + "module": "test", + "msecs": 774.8439311981201, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.648620605469, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,774", + "created": 1577431484.7749877, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 6 ()", + "module": "test", + "msecs": 774.9876976013184, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.792387008667, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.775112, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 6 ()", + "module": "test", + "msecs": 775.1119136810303, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6847.916603088379, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.775258, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 775.2580642700195, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.062753677368, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.7754045, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 1 ()", + "module": "test", + "msecs": 775.4044532775879, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.2091426849365, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.775529, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 1 ()", + "module": "test", + "msecs": 775.5289077758789, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.3335971832275, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.7756624, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 775.6624221801758, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.467111587524, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "2", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.7757907, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 2 ()", + "module": "test", + "msecs": 775.7906913757324, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.595380783081, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "2", + "" + ], + "asctime": "2019-12-27 08:24:44,775", + "created": 1577431484.7759123, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 2 ()", + "module": "test", + "msecs": 775.9122848510742, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.716974258423, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:44,776", + "created": 1577431484.7760355, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 776.0355472564697, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.840236663818, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "3", + "" + ], + "asctime": "2019-12-27 08:24:44,776", + "created": 1577431484.7761598, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 3 ()", + "module": "test", + "msecs": 776.1597633361816, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6848.96445274353, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "3", + "" + ], + "asctime": "2019-12-27 08:24:44,776", + "created": 1577431484.7762895, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 3 ()", + "module": "test", + "msecs": 776.2894630432129, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6849.0941524505615, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:44,776", + "created": 1577431484.7764199, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 776.4198780059814, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6849.22456741333, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 776.5359878540039, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6849.3406772613525, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00011610984802246094 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.6048479080200195, + "time_finished": "2019-12-27 08:24:44,776", + "time_start": "2019-12-27 08:24:44,171" + }, + "pylibs.task.threaded_queue: Test qsize and queue execution order by priority": { + "args": null, + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2576838, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 26, + "message": "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "module": "__init__", + "moduleLogger": [], + "msecs": 257.68375396728516, + "msg": "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/__init__.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.488443374634, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2581575, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 28, + "message": "Enqueued 6 unordered tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [ + 5, + 5 + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2578032, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 5 with Priority 5", + "module": "test_threaded_queue", + "msecs": 257.80320167541504, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.6078910827637, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 3, + 3 + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2578757, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 3 with Priority 3", + "module": "test_threaded_queue", + "msecs": 257.8756809234619, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.6803703308105, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 7, + 7 + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.2579374, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 7 with Priority 7", + "module": "test_threaded_queue", + "msecs": 257.9374313354492, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.742120742798, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 2, + 2 + ], + "asctime": "2019-12-27 08:24:41,257", + "created": 1577431481.257997, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 2 with Priority 2", + "module": "test_threaded_queue", + "msecs": 257.9970359802246, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.8017253875732, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6 + ], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2580547, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 6 with Priority 6", + "module": "test_threaded_queue", + "msecs": 258.0547332763672, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.859422683716, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2581127, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 27, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 258.11266899108887, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.9173583984375, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 258.15749168395996, + "msg": "Enqueued 6 unordered tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3330.9621810913086, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.482269287109375e-05 + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2583346, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before execution is correct (Content 6 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2582302, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before execution): 6 ()", + "module": "test", + "msecs": 258.23020935058594, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3331.0348987579346, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before execution", + "6", + "" + ], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.2582805, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before execution): result = 6 ()", + "module": "test", + "msecs": 258.28051567077637, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3331.085205078125, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 258.3346366882324, + "msg": "Size of Queue before execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3331.139326095581, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 5.412101745605469e-05 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:42,461", + "created": 1577431482.461276, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 37, + "message": "Executing Queue, till Queue is empty..", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:41,258", + "created": 1577431481.258394, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 30, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 258.3940029144287, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 3331.1986923217773, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2019-12-27 08:24:42,260", + "created": 1577431482.2607105, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 35, + "message": "Queue is empty.", + "module": "test_threaded_queue", + "msecs": 260.7104778289795, + "msg": "Queue is empty.", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4333.515167236328, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 461.2760543823242, + "msg": "Executing Queue, till Queue is empty..", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4534.080743789673, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.20056557655334473 + }, + { + "args": [ + "0", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4620676, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue after execution is correct (Content 0 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:42,461", + "created": 1577431482.4616969, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue after execution): 0 ()", + "module": "test", + "msecs": 461.6968631744385, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4534.501552581787, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue after execution", + "0", + "" + ], + "asctime": "2019-12-27 08:24:42,461", + "created": 1577431482.461911, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue after execution): result = 0 ()", + "module": "test", + "msecs": 461.9109630584717, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4534.71565246582, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 462.0676040649414, + "msg": "Size of Queue after execution is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4534.87229347229, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00015664100646972656 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:42,465", + "created": 1577431482.4650486, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4622803, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (identified by a submitted sequence number)): [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 462.2802734375, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.084962844849, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (identified by a submitted sequence number)", + "[ 1, 2, 3, 5, 6, 7 ]", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4624367, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (identified by a submitted sequence number)): result = [ 1, 2, 3, 5, 6, 7 ] ()", + "module": "test", + "msecs": 462.4366760253906, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.241365432739, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4625793, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 462.57925033569336, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.383939743042, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4627025, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 462.70251274108887, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.5072021484375, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.462829, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 462.8291130065918, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.63380241394, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:42,462", + "created": 1577431482.4629614, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 2 ()", + "module": "test", + "msecs": 462.96143531799316, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.766124725342, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "2", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4630833, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 2 ()", + "module": "test", + "msecs": 463.08326721191406, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4535.887956619263, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4632058, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 2 and Type is ).", + "module": "test", + "msecs": 463.20581436157227, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.010503768921, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4633307, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 3): 3 ()", + "module": "test", + "msecs": 463.3307456970215, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.13543510437, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 3", + "3", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4634645, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 3): result = 3 ()", + "module": "test", + "msecs": 463.46449851989746, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.269187927246, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "3", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4635868, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 3 is correct (Content 3 and Type is ).", + "module": "test", + "msecs": 463.58680725097656, + "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.391496658325, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4637117, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 4): 5 ()", + "module": "test", + "msecs": 463.7117385864258, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.516427993774, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 4", + "5", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.4638479, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 4): result = 5 ()", + "module": "test", + "msecs": 463.8478755950928, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.652565002441, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "5", + "" + ], + "asctime": "2019-12-27 08:24:42,463", + "created": 1577431482.463974, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 4 is correct (Content 5 and Type is ).", + "module": "test", + "msecs": 463.9739990234375, + "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.778688430786, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.464145, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 5): 6 ()", + "module": "test", + "msecs": 464.1449451446533, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4536.949634552002, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 5", + "6", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.4643033, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 5): result = 6 ()", + "module": "test", + "msecs": 464.30325508117676, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.107944488525, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.464451, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 5 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 464.4510746002197, + "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.255764007568, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.464606, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 6): 7 ()", + "module": "test", + "msecs": 464.60604667663574, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.410736083984, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 6", + "7", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.4647367, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 6): result = 7 ()", + "module": "test", + "msecs": 464.7367000579834, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.541389465332, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "7", + "" + ], + "asctime": "2019-12-27 08:24:42,464", + "created": 1577431482.4649265, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 6 is correct (Content 7 and Type is ).", + "module": "test", + "msecs": 464.92648124694824, + "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.731170654297, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 465.04855155944824, + "msg": "Queue execution (identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4537.853240966797, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.0001220703125 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:42,666", + "created": 1577431482.6662824, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Setting expire flag and enqueued again 2 tasks.", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:42,465", + "created": 1577431482.4652753, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 41, + "message": "Expire executed", + "module": "test_threaded_queue", + "msecs": 465.2752876281738, + "msg": "Expire executed", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4538.0799770355225, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 6, + 6 + ], + "asctime": "2019-12-27 08:24:42,665", + "created": 1577431482.6658409, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Adding Task 6 with Priority 6", + "module": "test_threaded_queue", + "msecs": 665.8408641815186, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4738.645553588867, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + 1, + 1 + ], + "asctime": "2019-12-27 08:24:42,666", + "created": 1577431482.6661334, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 46, + "message": "Adding Task 1 with Priority 1", + "module": "test_threaded_queue", + "msecs": 666.1334037780762, + "msg": "Adding Task %d with Priority %d", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4738.938093185425, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 666.2824153900146, + "msg": "Setting expire flag and enqueued again 2 tasks.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 4739.087104797363, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00014901161193847656 + }, + { + "args": [ + "2", + "" + ], + "asctime": "2019-12-27 08:24:43,669", + "created": 1577431483.669183, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Size of Queue before restarting queue is correct (Content 2 and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Size of Queue before restarting queue", + "2", + "" + ], + "asctime": "2019-12-27 08:24:43,668", + "created": 1577431483.6687586, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Size of Queue before restarting queue): 2 ()", + "module": "test", + "msecs": 668.7586307525635, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 5741.563320159912, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Size of Queue before restarting queue", + "2", + "" + ], + "asctime": "2019-12-27 08:24:43,669", + "created": 1577431483.669019, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Size of Queue before restarting queue): result = 2 ()", + "module": "test", + "msecs": 669.0189838409424, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 5741.823673248291, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 669.1830158233643, + "msg": "Size of Queue before restarting queue is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 5741.987705230713, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.000164031982421875 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.171014, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 61, + "message": "Executing Queue, till Queue is empty..", + "module": "test_threaded_queue", + "moduleLogger": [ + { + "args": [], + "asctime": "2019-12-27 08:24:43,669", + "created": 1577431483.6694453, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 54, + "message": "Starting Queue execution (run)", + "module": "test_threaded_queue", + "msecs": 669.445276260376, + "msg": "Starting Queue execution (run)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 5742.249965667725, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [], + "asctime": "2019-12-27 08:24:44,170", + "created": 1577431484.1709065, + "exc_info": null, + "exc_text": null, + "filename": "test_threaded_queue.py", + "funcName": "test_threaded_queue", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 60, + "message": "Queue joined and stopped.", + "module": "test_threaded_queue", + "msecs": 170.90654373168945, + "msg": "Queue joined and stopped.", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6243.711233139038, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 171.01407051086426, + "msg": "Executing Queue, till Queue is empty..", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/tests/test_threaded_queue.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6243.818759918213, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 0.00010752677917480469 + }, + { + "args": [], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1715422, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Queue execution (rerun; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Queue execution (rerun; identified by a submitted sequence number)", + "[ 1, 6 ]", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1711137, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Queue execution (rerun; identified by a submitted sequence number)): [ 1, 6 ] ()", + "module": "test", + "msecs": 171.1137294769287, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6243.918418884277, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Queue execution (rerun; identified by a submitted sequence number)", + "[ 1, 6 ]", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1711771, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Queue execution (rerun; identified by a submitted sequence number)): result = [ 1, 6 ] ()", + "module": "test", + "msecs": 171.17714881896973, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6243.981838226318, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1712456, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 1 ()", + "module": "test", + "msecs": 171.24557495117188, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.0502643585205, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1713006, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 1 ()", + "module": "test", + "msecs": 171.30064964294434, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.105339050293, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "1", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1713521, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 1 and Type is ).", + "module": "test", + "msecs": 171.35214805603027, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.156837463379, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.1714025, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 6 ()", + "module": "test", + "msecs": 171.4024543762207, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.207143783569, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.171452, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 6 ()", + "module": "test", + "msecs": 171.45204544067383, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.2567348480225, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + }, + { + "args": [ + "6", + "" + ], + "asctime": "2019-12-27 08:24:44,171", + "created": 1577431484.171498, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 6 and Type is ).", + "module": "test", + "msecs": 171.49806022644043, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.302749633789, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread" + } + ], + "msecs": 171.54216766357422, + "msg": "Queue execution (rerun; identified by a submitted sequence number): Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/modules/task/unittest/src/unittest/test.py", + "process": 5074, + "processName": "MainProcess", + "relativeCreated": 6244.346857070923, + "stack_info": null, + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 4.410743713378906e-05 + } + ], + "thread": 139854079366976, + "threadName": "MainThread", + "time_consumption": 2.913858413696289, + "time_finished": "2019-12-27 08:24:44,171", + "time_start": "2019-12-27 08:24:41,257" + } + }, + "testrun_id": "p3", + "time_consumption": 216.87673568725586, + "uid_list_sorted": [ + "pylibs.task.delayed: Test parallel processing and timing for a delayed execution", + "pylibs.task.periodic: Test periodic execution", + "pylibs.task.queue: Test qsize and queue execution order by priority", + "pylibs.task.queue: Test stop method", + "pylibs.task.queue: Test clean_queue method", + "pylibs.task.threaded_queue: Test qsize and queue execution order by priority", + "pylibs.task.threaded_queue: Test enqueue while queue is running", + "pylibs.task.crontab: Test cronjob", + "pylibs.task.crontab: Test crontab" + ] + } + ], + "unittest_information": { + "Version": "bf12903e8541ad442a6d670b0e5f89b9" + } +} \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf new file mode 100644 index 0000000..22f7ba8 Binary files /dev/null and b/_testresults_/unittest.pdf differ