blob: d130893af41f98c0beac8c039811535faa5796b8 [file] [log] [blame]
---
Author: József Gyürüsi
Version: 4/198 17-CNL 113 512, Rev. E
Date: 2014-10-03
---
= EPTF CLL Base, User Guide
:author: József Gyürüsi
:revnumber: 4/198 17-CNL 113 512, Rev. E
:revdate: 2014-10-03
:toc:
== About This Document
=== How to Read This Document
This is the User Guide for the Base feature of the Ericsson Performance Test Framework (TitanSim), Core Load Library (CLL). TitanSim CLL is developed for the TTCN-3 ‎<<_1, [1]>> Toolset with TITAN ‎‎<<_2, [2]>>. This document should be read together with the Function Description of the Base feature ‎‎<<_5, [5]>>. For more information on the TitanSim CLL please consult the User's Guide ‎‎<<_4, [4]>> and the Function Specification ‎<<_3, ‎[3]>> of the TitanSim.
== System Requirements
In order to use the Base feature the system requirements listed in TitanSim CLL User Guide ‎<<_4, ‎[4]>> should be fulfilled.
= Base
== Overview
The EPTF Base component is a fundamental component that handles common tasks that should be implemented in all EPTF components. All EPTF components should extend this component (i.e. explicitly) or a component that extends this component (i.e. implicitly).
The Base component
* stores the name of the component
* manages the clean up so that the component could terminate gracefully. This solution is similar to the C++ "destructor" concept.
* provides relative and absolute time querying functions
* provides functions to convert the component type to/from integer
* makes negative testing possible with error and assert functions
* provides process information on every PTC running on components extending the EPTF Base component
* enables/disables DTE handling functionality in the whole CLL
To be able to use EPTF Base, the user component should extend the `EPTF_Base_CT` component and call its initializing function. When the component terminates it should call one of the `cleanup`/`stop`/`stopAll` functions of the Base component.
[[description_of_files_in_this_feature]]
== Description of Files in This Feature
The EPTF CLL Base API includes the following files:
* Base
** __EPTF_CLL_Base_Definitions.ttcn__: +
This TTCN-3 module contains common type definitions used by the Base Component.
** __EPTF_CLL_Base_Functions.ttcn__: +
This TTCN-3 module contains the implementation of Base functions.
** __EPTF_CLL_Base_ExternalFunctions.cc__: +
This TTCN-3 module contains external functions for EPTF Base.
[[description_of_required_files_from_other_features]]
== Description of Required Files from Other Features
The EPTF Base feature depends on the following features of EPTF:
* Common
== Installation
Since `EPTF_CLL_Base` is used as a part of the TTCN-3 test environment this requires TTCN-3 Test Executor to be installed before any operation of these functions. For more details on the installation of TTCN-3 Test Executor see the relevant section of ‎<<_2, ‎[2]>>.
If not otherwise noted in the respective sections, the following are needed to use `EPTF_CLL_Base`:
1. Copy the files listed in section <<description_of_files_in_this_feature, Description of Files in This Feature>> and <<description_of_required_files_from_other_features, Description of Required Files from Other Features>> to the directory of the test suite or create symbolic links to them.
2. Import the Base demo or write your own application using EPTF Base.
3. Create _Makefile_ or modify the existing one. For more details see the relevant section of ‎<<_2, [2]>>.
4. Edit the config file according to your needs, see following section <<configuration, Configuration>>.
[[configuration]]
== Configuration
The executable test program behavior is determined via the run-time configuration file. This is a simple text file, which contains various sections. The usual suffix of configuration files is _.cfg_. For further information on the configuration file see <<_2, ‎[2]>>.
This Base feature defines TTCN-3 module parameters as defined in ‎<<_2, [2]>>, clause 4. Actual values of these parameters – when no default value or a different from the default actual value wished to be used – shall be given in the `[MODULE_PARAMETERS]` section of the configuration file.
The EPTF Base feature defines 2 module parameters:
* `tsp_EPTF_Base_serialStopAllComponents`:
** If `_true_`: components are stopped one after another,
** Otherwise: in parallel (faster, but might lead to errors).
Default: `_true_`
* `tsp_EPTF_Base_debug`:
** if `_true_`: the debug style messages are logged into the logfiles
** Otherwise not.
Default: `_false_`
== Design Rules
To be able to use the EPTF Base functionality in a proper way, the following design rules have to be followed in any component that uses EPTF Base features:
1. Call all the init functions of those components that your component explicitly extends in your init function. For example,  the `f_EPTF_Base_init_CT` in case your component extends the `EPTF_Base_CT` component
2. Initialize your component variables
3. Activate your default altsteps
4. Register your cleanup function by `f_EPTF_Base_registerCleanup` at the end of your init function
5. Call `f_EPTF_Base_cleanup_CT` before your component terminates, or call `f_EPTF_Base_stop` if the execution should be stopped (For example, because of an error the execution is forced to stop immediately)
6. Do not call any cleanup function anywhere, especially inside your cleanup function. Only the cleanup function of the Base component should be called
7. Make sure that any event that comes after the cleanup function was called, is discarded (or does not cause problems) by for example, deactivating your default altsteps in your cleanup function
8. Make sure that if any of your functions is called if your feature is not initialized, it does not cause an error, similarly port operations (send function) do not cause error if the port is not connected
9. Make sure that your init and cleanup functions can be called several times (by doing nothing during the additional calls)
= Error Messages
NOTE: Besides the below described error messages, error messages shown in ‎<<_2, [2]>> or those of other used features or product may also appear.
`*ERROR: f_EPTF_Base_init_CT is not called before calling f_EPTF_Base_RegisterCleanup for <cleanup-function>*`
The Base feature was not initialized before trying to register a cleanup function.
`*ERROR: Unexpected message received from <component>: <message>.*`
The component sent an unexpected message.
= Warning Messages
NOTE: Besides the below described warning messages, warning messages shown in ‎<<_2, [2]>> or those of other used features or product may also appear.
`*WARNING: Unexpected message received during termination process from <component>: <message> Message dropped.*`
The component sent an unexpected message during cleanup. The message was ignored.
`*WARNING: Cleanup is disabled in stopRemote message. CLEANUP IS NOT PERFORMED.*`
The `stopRemote` message received requested a stop without cleanup.
= Examples
The "demo" directory of the deliverable contains the following examples:
* __EPTF_Base_test.ttcn__
== Demo Module
The demo module (__EPTF_Base_test.ttcn__) illustrates a typical usage of the EPTF Base feature.
= Terminology
*TitanSim Core (Load) Library(CLL):* +
It is that part of the TitanSim software that is totally project independent. (I.e., which is not protocol-, or application-dependent). The TitanSim CLL is to be supplied and supported by the TCC organization. Any TitanSim CLL development is to be funded centrally by Ericsson.
= Abbreviations
CLL:: Core Load Library
EPTF:: Ericsson Load Test Framework, formerly TITAN Load Test Framework
TitanSim:: Ericsson Load Test Framework, formerly TITAN Load Test Framework
TTCN-3:: Testing and Test Control Notation version 3 <<_1, [1]>>
= References
[[_1]]
[1] ETSI ES 201 873-1 v3.2.1 (2007-02) +
The Testing and Test Control Notation version 3. +
http://www.etsi.org/deliver/etsi_es/201800_201899/20187301/03.02.01_60/es_20187301v030201p.pdf[Part 1: Core Language]
[[_2]]
[2] User Guide for the TITAN TTCN-3 Test Executor
[[_3]]
[3] TitanSim CLL for TTCN-3 toolset with TITAN, Function Specification
[[_4]]
[4] TitanSim CLL for TTCN-3 toolset with TITAN, User Guide
[[_5]]
[5] EPTF CLL Base, Function Description
[[_6]]
[6] EPTF CLL for TTCN-3 toolset with TITAN +
http://ttcn.ericsson.se/TCC_Releases/Libraries/EPTF_Core_Library_CNL113512/doc/apidoc/html/index.html[Reference Guide]