.. SPDX-License-Identifier: Apache-2.0 Copyright (C) 2020-2022 OKTET Labs Ltd. All rights reserved. .. index:: pair: group; Dispatcher .. _doxid-group__te__engine__dispatcher: Dispatcher ========== .. toctree:: :hidden: .. _doxid-group__te__engine__dispatcher_1te_engine_dispatcher_introduction: Introduction ~~~~~~~~~~~~ Dispatcher is a subsystem providing a proper initialization and shutdown of the TEN subsystems. It prepares the environment (creates directories for temporary files, exports environment variables, etc.), initiates building, if necessary, and initializes TEN applications according to options provided on the command line. From user point of view :ref:`Dispatcher ` is a BASH script that launches processes and TEN components according to specified command line options. During its operation :ref:`Dispatcher ` sets a few environment variables among which the most important are: * TE_BASE Location of Test Environment sources. If the Dispatcher script is called from the source directory, this variable is exported automatically. Otherwise if building is necessary (i.e., TE is not pre-installed), TE_BASE should be exported manually. * TE_BUILD This variable is exported automatically unless already exported. It is set to a start directory (a directory from which the Dispatcher script is called) or, if a file configure.ac is present in the start directory, to the (created if needed) build subdirectory of the start directory: [start directory]/build. * TE_INSTALL This variable is passed as the value of the prefix option to the main configure script. Moreover, its value is used when path variables for the search of headers and libraries are constructed. It may be set manually. If it is empty, it is set to the directory where the Dispatcher script is located (if the installed Dispatcher script is used) or to ${TE_BUILD}/inst (if the Dispatcher script from the source directory is used). * TE_INSTALL_SUITE User may export this variable to specify the location of Test Suite executables (for :ref:`Builder ` and :ref:`Tester `). If this variable is empty, it is set automatically to ${TE_INSTALL}/suites. * TE_TMP This variable is set by :ref:`Dispatcher ` to [start directory]/te_tmp by default. However, if it's desirable to use some other directory for temporary files, it may be exported manually. * LD_LIBRARY_PATH This variable is exported by :ref:`Dispatcher ` automatically and used for shared library search. It is set to ${TE_INSTALL}/[host platform]/lib. * PATH Path to TEN executables is provided automatically by :ref:`Dispatcher `. It updates PATH variable by ${TE_INSTALL}/[host platform]/bin. Moreover, if scripts provided by :ref:`Logger `, :ref:`Builder ` and storage library to :ref:`Dispatcher ` are not installed yet, :ref:`Dispatcher ` adds to PATH variable path to these scripts in the source directory. * TE_LOG_DIR Directory to store log files. Usually set to TE_RUN_DIR which in it's turn is set to the current directory (PWD). .. _doxid-group__te__engine__dispatcher_1te_run_time: Start/stop sequence ~~~~~~~~~~~~~~~~~~~ The following sequence of events happen each time when you launch Test Environment with dispatcher.sh or run.sh script: #. :ref:`Dispatcher ` script starts with some command line options (for more information on :ref:`Dispatcher ` options read :ref:`Dispatcher Command Line Options `); #. :ref:`Dispatcher ` runs te_log_init script to initialize script based logging facility. All further actions can be logged via script based interface (te_log_message script). Please note that :ref:`Logger ` application hasn't started yet; #. :ref:`Dispatcher ` starts :ref:`Builder ` to prepare libraries and executables for all TE Subsystems (except :ref:`Dispatcher `), Test Packages, te_agents and bootable NUT image(s). te_engine_builder is passed a configuration file that describes a set of executables to be built with a set of options for building process. :ref:`Builder ` configuration file name specified via conf-builder option of :ref:`Dispatcher `. (For information about :ref:`Builder ` configuration file read :ref:`Builder configuration file `). Please note that traces of building process are output into the console (they are not accumulated in log file); #. As soon as :ref:`Builder ` successfully built and installed all required components, :ref:`Dispatcher ` starts launching :ref:`Test Engine ` componentns. First component to start is :ref:`Logger `. :ref:`Logger ` is passed a configuration file whose name can be specified via conf-logger :ref:`Dispatcher ` command line option (for information about the format of :ref:`Logger ` configuration file refer to :ref:`Configuration File `). :ref:`Logger ` starts listening for incoming log requests that can come from tests and other TEN components; #. :ref:`Dispatcher ` starts :ref:`Remote Control Facility (RCF) `. :ref:`Remote Control Facility (RCF) ` is passed a configuration file that describes te_agents to be started (for information about the format of :ref:`Remote Control Facility (RCF) ` configuration file refer to :ref:`RCF Configuration File `). As a part of initialization :ref:`Remote Control Facility (RCF) ` establishes communication with te_agents using Test Protocol; #. As soon as :ref:`Remote Control Facility (RCF) ` has initialized, :ref:`Logger ` starts a thread that is responsible for polling te_agents Test Agents in order to gather log messages accumulated on Test Agent side. Polling interval is configured via :ref:`Logger ` configuration file; #. :ref:`Dispatcher ` starts :ref:`Configurator `. :ref:`Configurator ` is passed a configuration file that describes configuration objects to register as well as object instances to add (for information about the format of :ref:`Configurator ` configuration file refer to :ref:`Configurator Configuration File `). On start-up :ref:`Configurator ` retrives configuration information from te_agents and initializes local trees of objects and instances; #. :ref:`Dispatcher ` starts :ref:`Tester `. :ref:`Tester ` processes configuration file and if necessary asks :ref:`Builder ` to build test suites (test executables). Then :ref:`Tester ` processes test package description files and runs tests in corresponding order and with specified set of parameter values. (For information about :ref:`Tester ` configuration file format refer to :ref:`Configuration File ` section). Before running tests, :ref:`Tester ` asks :ref:`Configurator ` to make a backup of configuration tree. When all tests are finished :ref:`Tester ` restores the initial configuration from initial backup. To prevent tests from interfering, a backup is created and optionally restored before each test as well. #. When :ref:`Tester ` returns (all tests finished), :ref:`Dispatcher ` stops :ref:`Configurator `; #. Flushing of the log from all Test Agents is performed; #. :ref:`Dispatcher ` stops :ref:`Remote Control Facility (RCF) `. During its shutdown, :ref:`Remote Control Facility (RCF) ` performs a shutdown of all te_agents; #. :ref:`Dispatcher ` stops :ref:`Logger `. :ref:`Dispatcher ` calls Report Generator tool to convert the log from a raw format to the text and/or HTML format; #. :ref:`Dispatcher ` script finishes its work. .. _doxid-group__te__engine__dispatcher_1logs_publishing: Publishing logs to Bublik web application ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Testing logs may be published to Bublik web application using Dispatcher option `--publish` or a standalone script `scripts/publish_logs`. A path to test suite and site specific logs publishing script should be passed via `--publish` option of Dispatcher or `--script` option of `scripts/publish_logs`. TE will then create a tar archive containing testing metadata (`meta_data.json`) and raw log bundle (`raw_log_bundle.tpxz`), and pass it as the only argument to the script that you provide. It is assumed that your script will then copy the tar archive to log storage server, extract it there in a proper place and request Bublik web application to import logs from the corresponding URL. .. _doxid-group__te__engine__dispatcher_1te_engine_dispatcher_options: Dispatcher Command Line Options ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The Dispatcher script accepts a lot of command-line options. Some of them are its own options, and the rest are passed through to other TE subsystems. Here is the complete list of the dispatcher.sh script options as well as their descriptions obtained by calling it with help option: .. code-block:: none Usage: dispatcher.sh [="">] [[=""> tests ]... Generic options: -q Suppress part of output messages force Never prompt .. code-block:: none daemon[=] Run/use TE engine daemons shutdown[=] Shut down TE engine daemons on exit .. code-block:: none conf-dir= specify configuration file directory, overrides previous value and conf-dirs (${TE_BASE}/conf or . by default) conf-dirs= specify list of configuration file directories separated by colon (top priority first, may be specified many times, appends to conf-dir) .. code-block:: none In configuration files options below is full name of the configuration file or name of the file in the configuration directory. .. code-block:: none conf-builder= te_engine_build config file ( by default) conf-cs= :ref:`Configurator ` config file ( by default) conf-logger= :ref:`Logger ` config file ( by default) conf-rcf= :ref:`Remote Control Facility (RCF) ` config file ( by default) conf-rgt= RGT config file (rgt.conf by default) conf-tester= :ref:`Tester ` config file ( by default) conf-nut= NUT config file ( by default) .. code-block:: none script= Name of the file with shell script to be included as source .. code-block:: none live-log Run RGT in live mode .. code-block:: none log-dir= Directory where to save tmp_raw_log file (used if TE_LOG_RAW is not set directly) log-html= Name of the directory with structured HTML logs to be generated (do not generate by default) log-plain-html= Name of the file with plain HTML logs to be generated (do not generate by default) log-txt= Name of the file with logs in text format to be generated (log.txt by default) log-txt-detailed-packets Include detailed packet dumps in text log. log-junit= Name of the file with logs in JUnit format to be generated. .. code-block:: none no-builder Do not build TE and TA no-nuts-build Do not build NUTs no-tester Do not run :ref:`Tester ` no-cs Do not run :ref:`Configurator ` no-rcf Do not run :ref:`Remote Control Facility (RCF) ` no-run Do not run :ref:`Logger `, :ref:`Remote Control Facility (RCF) `, :ref:`Configurator ` and :ref:`Tester ` .. code-block:: none opts= Get additional command-line options from file .. code-block:: none cs-print-trees Print configurator trees. cs-log-diff Log backup diff unconditionally. .. code-block:: none build-only Build TE, do not run :ref:`Remote Control Facility (RCF) ` and :ref:`Configurator `, build but do not run Test Suites .. code-block:: none build=path Build package specified in the path. build-log=path Build package with log level 0xFFFF. build-nolog=path Build package with undefined log level. build-cs Build :ref:`Configurator `. build-logger Build :ref:`Logger `. build-rcf Build :ref:`Remote Control Facility (RCF) `. build-tester Build :ref:`Tester `. build-lib-xxx Build host library xxx. build-log-xxx Build package with log level 0xFFFF. build-nolog-xxx Build package with undefined log level. build-parallel[=num] Enable parallel build using num threads. .. code-block:: none build-ta-none Don't build Test Agents. build-ta-missing Build only new Test Agents. build-ta-all Force build all Test Agents. build-ta-for= Rebuild agent (and all the libraries) used for . build-ta-rm-lock Remove lock from previous agent build even if it is still in progress. profile-build= Gather timings for the build process into .. code-block:: none no-rcf-cc-simple Do not execute simple :ref:`Remote Control Facility (RCF) ` consistency checks. .. code-block:: none tester-suite=: Specify path to the Test Suite. tester-no-run Don't run any tests. tester-no-build Don't build any Test Suites. tester-no-trc Don't use Testing Results Comparator. tester-no-cs Don't interact with :ref:`Configurator `. tester-no-cfg-track Don't track configuration changes. tester-no-logues Disable prologues and epilogues globally. tester-only-req-logues Run only prologues/epilogues under which at least one test will be run according to requirements passed in command line. This may not work well if your prologues can add requirements on their own in /local:/reqs:. tester-req= Requirements to be tested (logical expression). tester-no-reqs Ignore requirements, run all possible iterations. tester-quietskip Quietly skip tests which do not meet specified requirements (default). tester-verbskip Force :ref:`Tester ` to log skipped iterations. .. code-block:: none tester-cmd-monitor Specify command monitor to be run for all tests in form [ta,]time_to_wait:command .. code-block:: none The following :ref:`Tester ` options get test path as a value: := / | | / := [:][%][*] := [,] := = | ~= := | { } := [,] := [+] | For example, tester-run=mysuite/mypkg/mytest:p1={a1,a2} requests to run all iterations of the test 'mytest' when its parameter 'p1' is equal to 'a1' or 'a2'; tester-run=mysuite/mypkg/mytest%3*10 requests to run 10 times third iteration of the same test. .. code-block:: none tester-fake= Don't run any test scripts, just emulate test scenario. tester-run= Run test under the path. tester-run-from= Run tests starting from the test path. tester-run-to= Run tests up to the test path. tester-exclude= Exclude specified tests from campaign. tester-vg= Run test scripts under specified path using valgrind. tester-gdb= Run test scripts under specified path using gdb. .. code-block:: none tester-random-seed= Random seed to initialize pseudo-random number generator tester-verbose Increase verbosity of the :ref:`Tester ` (the first level is set by default). tester-quiet Decrease verbosity of the :ref:`Tester `. tester-out-tin Output Test Identification Numbers to terminal tester-out-expected If result is expected (in accordance with TRC), output the result together with OK tester-interactive Interactive ask user for tests to run. .. code-block:: none test-sigusr2-verdict Handle the SIGUSR2 signal in test and stop it by TEST_VERDICT. By default the SIGUSR2 handled like SIGINT, it stops testing. test-wof Wait before jump to cleanup on test failure. Useful to take a look at what's configured etc. Requires some nodes in the /local:/test: tree. test-woc Wait before jump to cleanup regardless of test result. .. code-block:: none logger-foreground Run Logger in the foreground (useful for Logger debugging). logger-no-rcf Run Logger without interaction with RCF, i.e. without polling any Test Agents (useful for Logger debugging). logger-check Check that log messages received from other TE components are properly formatted before storing them in the raw log file. logger-listener= Enable streaming live results to the specified listener. Config string has the following format: [:]. logger-meta-file= Send meta information to listeners. This option may only be specified once. .. code-block:: none trc-log= Generate bzip2-ed TRC log trc-db= TRC database to be used trc-tag= Tag to get specific expected results trc-key2html= File with key substitutions when output to HTML report trc-ignore-log-tags Ignore tags from log trc-html= Name of the file for HTML report trc-brief-html= Name of the file for brief HTML report trc-html-header= Name of the file with header for all HTML reports. trc-txt= Name of the file for text report (by default, it is generated to stdout) trc-quiet Do not output total statistics to stdout trc-comparison= Specify the method to match parameter values in TRC exact (the default) * casefold normalised (XML-style space normalization) tokens (the values are split into tokens which are either sequences of XML name characters or single characters; the matching is done on these lists; in additional, numeric tokens are compared as numbers (so e.g. 10 and 0xa render equal) trc-update Update TRC database trc-init Initialize TRC database (be careful, TRC database file will be rewritten) .. code-block:: none vg-engine Run :ref:`Remote Control Facility (RCF) `, :ref:`Configurator `, :ref:`Logger ` and :ref:`Tester ` under valgrind (without by default) vg-cs Run :ref:`Configurator ` under valgrind vg-logger Run :ref:`Logger ` under valgrind (without by default) vg-rcf Run :ref:`Remote Control Facility (RCF) ` under valgrind (without by default) (without by default) vg-tester Run :ref:`Tester ` under valgrind (without by default) gdb-tester Run :ref:`Tester ` under gdb. tce Do TCE processing for all TCE-enabled components tce= Do TCE processing for specific components (comma-separated) or 'all' .. code-block:: none no-meta Do not generate testing metadata. publish=