diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2016-11-01 08:01:51 -0400 |
---|---|---|
committer | Jun Li <matthew.lijun@huawei.com> | 2016-11-10 02:26:55 +0000 |
commit | 0eb2bd6622deb721f9df937ef463f7d9ec221235 (patch) | |
tree | a617d15b74de46fc9aa0b27ce2bd5ab1d31059af /docs/dovetailtool/dovetail.tool.installation.rst | |
parent | cd7b2cdaef7226165e511337858f10279652104d (diff) |
dovetail tool: 2 config files, compliance_set and proposed_tests
JIRA: DOVETAIL-50
1)'proposed_tests.yml' is added, which runs as the total tests run.
The 'compliance_set.yml' will run as dovetail certification tests;
2)ipv6 test cases added accroding to 'docs/testsuites/ipv6/ipv6_all_testcases',
tc026 missed temporarily,yardstick ipv6tc026 only supports 2 installers by now
according to https://wiki.opnfv.org/display/dovetail/Dovetail+Test+Cases
3)vimops001-006 added for VIM images operation test cases
4)nfvi001-002 added for vping ssh/userdata in fucntest
5)more test cases can be added in future in proposed_tests.yml,
besides, the test cases can be adjusted in future in proposed_tests.yml
Change-Id: I8a8634583549a802f6f64fbea651e7be4efa361c
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'docs/dovetailtool/dovetail.tool.installation.rst')
-rw-r--r-- | docs/dovetailtool/dovetail.tool.installation.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/dovetailtool/dovetail.tool.installation.rst b/docs/dovetailtool/dovetail.tool.installation.rst index dcd856bc..17290a35 100644 --- a/docs/dovetailtool/dovetail.tool.installation.rst +++ b/docs/dovetailtool/dovetail.tool.installation.rst @@ -71,19 +71,19 @@ Compliance and certification test cases The compliance and certification test cases can be defined under the ``/dovetail/cert`` directory, which is defined in yaml format. -A sample file named ``basic.yml`` is provided as follows: +A sample file named ``compliance_set.yml`` is provided as follows: :: - certification_basic: - name: certification_basic - testcase_list: + certification_compliance_set: + name: certification_compliance_set + testcases_list: - dovetail.ipv6.tc001 The testcase listed here is dovetail.ipv6.tc001, defined within ``dovetail/testcase``. Note: if a new test case yaml file is created, its name should start with ``certification_``, -in similiar fashion as the sample file ``certification_basic``. +in similiar fashion as the sample file ``certification_compliance_set``. Running Dovetail tool --------------------- @@ -92,10 +92,10 @@ After environment preparation is complete and test cases added, the Dovetail too :: - python run.py --scenario basic + python run.py --scenario compliance_set -The value ``basic`` passed to the ``scenario`` flag can be replaced with the test cases yaml file. -If not argument is given, the basic scenario will be run as the default. +The value ``compliance_set`` passed to the ``scenario`` flag can be replaced with the test cases yaml file. +If not argument is given, the compliance_set scenario will be run as the default. Running Dovetail in a Docker container ######################################## @@ -145,7 +145,7 @@ Attach to the container by starting it and obtaining a bash prompt with :: Inside the container the following commands can be executed to trigger the testcases :: cd /home/opnfv/dovetail/dovetail - python run.py --scenario basic + python run.py --scenario compliance_set Results Output ############### |