diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2017-12-14 11:22:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-14 11:22:18 +0000 |
commit | a392e7361cb698d9b804a79978d9c7a3a83e58fc (patch) | |
tree | efee5eede850e6c75a5c5142f7f6ff21869fd16d /docs | |
parent | d1270fb092fda14e02a306cfe7af160b45b2677c (diff) | |
parent | b830a59fc8c05a92b874252cb8f6cb96ded46bb5 (diff) |
Merge "teststeps: Improvements of step driven TC"
Diffstat (limited to 'docs')
-rw-r--r-- | docs/testing/user/userguide/teststeps.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/testing/user/userguide/teststeps.rst b/docs/testing/user/userguide/teststeps.rst index 8be67310..40cc732c 100644 --- a/docs/testing/user/userguide/teststeps.rst +++ b/docs/testing/user/userguide/teststeps.rst @@ -131,6 +131,21 @@ of supported objects and their most common functions follows: ['vnf2', 'stop'], ['vnf1', 'stop'], + * ``VNF[ID]`` - provides access to VNFs deployed automatically by testcase deployment + scenario. For Example ``pvvp`` deployment automatically starts two VNFs before any + TestStep is executed. It is possible to access these VNFs by VNF0 and VNF1 labels. + + List of supported functions is identical to ``vnf[ID]`` option above except functions + ``start`` and ``stop``. + + Examples: + + .. code-block:: python + + ['VNF0', 'execute_and_wait', 'ifconfig eth2 5.5.5.1/24 up'], + ['VNF1', 'execute_and_wait', 'ifconfig eth2 5.5.5.2/24 up', 120, 'root.*#'], + ['VNF2', 'execute_and_wait', 'ping -c1 5.5.5.1'], + * ``trafficgen`` - triggers traffic generation List of supported functions: |