.. SPDX-License-Identifier: Apache-2.0 Copyright (C) 2020-2022 OKTET Labs Ltd. All rights reserved. .. index:: pair: group; TE Config Files Basics .. _doxid-group__te__user__run__details: TE Config Files Basics ====================== .. toctree:: :hidden: .. _doxid-group__te__user__run__details_1te_user_run_rcf: Running RCF ~~~~~~~~~~~ :ref:`Remote Control Facility (RCF) ` configuration file specifies the list of Test Agents to run with a a set of parameters associated with them. For the detailed information on how to write :ref:`Remote Control Facility (RCF) ` configuration file please refer to :ref:`RCF Configuration File ` section. More likely you will already have some :ref:`Remote Control Facility (RCF) ` configuration file or you will need to do your own version of configuration file based on existing one. First thing that you need to take into account while writing :ref:`Remote Control Facility (RCF) ` configuration file is the how and where you are going to organize testing process. Suppose you need to test some communication API between two end-points (for example it could be Socket API) and you have the following network topology: .. image:: /static/image/te_user_net_conf_rcf_sample1.png :alt: Sample network topology You would like to test communication between end point pairs: * BSD and Windows; * BSD and Linux; * Windows and Linux. The API to be tested is the same on all platforms, which means we can use the same test suite for each pair. The only thing specific for our test set-up is where to run Test Agent that supports interface to be tested (assume we exported interface to be tested via :ref:`TAPI: Remote Procedure Calls (RPC) `). For testing BSD vs Windows configuration we should use the following set-up: .. image:: /static/image/te_user_net_conf_rcf_sample2.png :alt: TE components location for testing BSD vs Windows configuration In this scenario :ref:`Remote Control Facility (RCF) ` configuration file would look like: .. ref-code-block:: cpp gollum 5000 aule 5000 Please note that we use the same :ref:`RCF UNIX Communication Library `, but different Test Agent types. For testing BSD vs Linux configuration we should use the following set-up: .. image:: /static/image/te_user_net_conf_rcf_sample3.png :alt: TE components location for testing BSD vs Linux configuration In this scenario :ref:`Remote Control Facility (RCF) ` configuration file would look like: .. ref-code-block:: cpp gollum 5000 5000 Note that we can avoid specifying host name for Test Agent Agt_B, because it runs on the same host as :ref:`Test Engine `. Similar set-up would be for testing Windows vs Linux set-up. Now we have :ref:`Remote Control Facility (RCF) ` configuration files ready and we can run TE with :ref:`Remote Control Facility (RCF) `. Our project tree has the following structure: .. code-block:: none ${PRJ_ROOT} +-- conf_ipv6 +-- builder.conf.ipv6_demo +-- rcf.conf.bsd_win +-- rcf.conf.bsd_linux +-- rcf.conf.linux_win To start TE with :ref:`Remote Control Facility (RCF) `, but still without :ref:`Configurator ` and :ref:`Tester `, run: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf_ipv6 --conf-builder=builder.conf.ipv6_demo --conf-rcf=rcf.conf.bsd_win --no-cs --no-tester If you have some problems with copying Test Agent images to set-up hosts or if you have problems with connection to these Agents you should first check that you are able to enter these hosts without password prompt (read :ref:`RCF UNIX Communication Library ` for more information). Anyway when dispatcher.sh script finishes you can check results in text log file build/log.txt. .. _doxid-group__te__user__run__details_1te_user_run_logger: Running Logger -------------- :ref:`Logger ` configuration file depends on :ref:`Remote Control Facility (RCF) ` configuration file in case we need to specify log polling intervals on per Test Agent basis, but in most cases logger configuration file specifies common polling interval to use for accessing all Test Agents. For more information on :ref:`Logger ` configuration file read :ref:`Configuration File `. More often :ref:`Logger ` configuration file is the same for different test set-ups, so preferably if its name is logger.conf, because :ref:`Dispatcher ` uses this file name as the default :ref:`Logger ` configuration file. .. _doxid-group__te__user__run__details_1te_user_run_conf: Running Configurator -------------------- To run :ref:`Configurator ` you need to prepare a configuration file whose name is passed to dispatcher.sh script. For the details on :ref:`Configurator ` configuration file read :ref:`Configurator Configuration File ` section. Assuming our :ref:`Configurator ` configuration file is split into two parts we would have the following directory tree structure: .. code-block:: none ${PRJ_ROOT} +-- conf_ipv6 +-- builder.conf.ipv6_demo +-- rcf.conf.bsd_win +-- rcf.conf.bsd_linux +-- rcf.conf.linux_win +-- logger.conf +-- cs.conf.common +-- cs.conf.bsd_win +-- cs.conf.bsd_linux +-- cs.conf.linux_win Where cs.conf.bsd_win file can look as following: .. code-block:: none To start TE with :ref:`Remote Control Facility (RCF) `, :ref:`Configurator `, but without :ref:`Tester `, run: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf_ipv6 --conf-builder=builder.conf.ipv6_demo --conf-rcf=rcf.conf.bsd_win --conf-cs=cs.conf.bsd_win --no-tester .. _doxid-group__te__user__run__details_1te_user_run_tester: Running Tester -------------- Running :ref:`Tester ` requires some test suite to be availabe. For more information on :ref:`Tester ` configuration file read :ref:`Tester Root Configuration File ` section. For information on how to create a test suite read :ref:`Test Suite ` page. Suppose you have the following test project directory structure: .. code-block:: none ${PRJ_ROOT} +-- conf_ipv6 | +-- builder.conf.ipv6_demo | +-- rcf.conf.bsd_win | +-- rcf.conf.bsd_linux | +-- rcf.conf.linux_win | +-- logger.conf | +-- cs.conf.common | +-- cs.conf.bsd_win | +-- cs.conf.bsd_linux | +-- cs.conf.linux_win | +-- tester.conf +-- suite-src +-- configure.ac +-- Makefile.am +-- package.xml +-- prologue.c +-- test1.c +-- test2.c +-- pkg1 | +-- package.xml | +-- test3.c | +-- test4.c +-- pkg2 +-- package.xml +-- test5.c +-- test6.c The content of ${PRJ_ROOT}/conf_ipv6/tester.conf is: .. ref-code-block:: cpp Minimal test suite Before we run TE with :ref:`Tester ` we need to make sure test suite tree has configure script in the top level directory and Makefile.in files in all subdirectories. These files can be generated with autoreconf utility run in test suite top level directory. If we need to (re-)build test suite sources at :ref:`Tester ` start-up we should run :ref:`Dispatcher ` as: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf_ipv6 --conf-builder=builder.conf.ipv6_demo --conf-rcf=rcf.conf.bsd_win --conf-cs=cs.conf.bsd_win --tester-conf=tester.conf This command will build TE, build test suites specified in tester.conf file and run all tests according to :ref:`Tester ` configuration file and test package description files. If you need to run the particular test from a test suite (say test6) you can run: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf_ipv6 --conf-builder=builder.conf.ipv6_demo --conf-rcf=rcf.conf.bsd_win --conf-cs=cs.conf.bsd_win --no-builder --tester-no-build --tester-run=test-suite/pkg2/test6 Please note that we do not specify :ref:`Tester ` configuration file, because :ref:`Dispatcher ` uses tester.conf as the default name of :ref:`Tester ` configuration file. Also note that we ask :ref:`Dispatcher ` to skip building TE (no-builder option) and skip building test suite (assuming we already built it, it is possible to specify tester-no-build option). For more information on :ref:`Dispatcher ` options related to :ref:`Tester ` please read :ref:`Dispatcher Command Line Options `. .. _doxid-group__te__user__run__details_1te_user_log_result: Logging results --------------- During TE run time a number of log messages generated from different components of TE. All messages are gathered by :ref:`Logger ` and put into a binary file that by default has tmp_raw_log name and put under a directory where dispatcher.sh run. You can specify the location and name of binary raw log file exporting TE_LOG_RAW environment variable: .. code-block:: none TE_LOG_RAW=/tmp/my_raw_log ${TE_BASE}/dispatcher.sh --conf-dir=conf Alternatively you may put raw log file under a particular directory, then you should specify log-dir option: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf --log-dir=log In this case raw log file will be saved to ${PRJ_ROOT}/log/tmp_raw_log file. By default :ref:`Dispatcher ` will generate log report in plain text format (with the help of RGT tool). By default plain text log is put under run directory with name log.txt. If you want HTML-based multi-page structured log you should pass log-html option to :ref:`Dispatcher ` specifying directory name where to output log in HTML format: .. code-block:: none ${TE_BASE}/dispatcher.sh --conf-dir=conf --log-html=html-out As the result HTML based log report can be found under ${PRJ_ROOT}/html-out directory (open index.html file in a browser). For more information on log related options of :ref:`Dispatcher ` read :ref:`Dispatcher Command Line Options ` section.