From 0511f7eeacdceb8d9e59fc57f673080bef4095c6 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 2 Jul 2019 19:50:57 +0200 Subject: Update python versions and testcase list in docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I0ed395c39dd7e0ad1bf0f5d181fe6c2c397809e4 Signed-off-by: Cédric Ollivier --- docs/release/release-notes/functest-release.rst | 4 +++- docs/testing/user/configguide/configguide.rst | 10 ++++++---- docs/testing/user/userguide/test_results.rst | 2 +- docs/testing/user/userguide/troubleshooting.rst | 14 +++++++------- 4 files changed, 17 insertions(+), 13 deletions(-) (limited to 'docs') diff --git a/docs/release/release-notes/functest-release.rst b/docs/release/release-notes/functest-release.rst index dd2ab4aaf..8a427eced 100644 --- a/docs/release/release-notes/functest-release.rst +++ b/docs/release/release-notes/functest-release.rst @@ -36,7 +36,9 @@ The internal test cases are: * tempest_smoke * neutron-tempest-plugin-api * rally_sanity - * refstack_defcore + * refstack_compute + * refstack_object + * refstack_platform * patrole * neutron_trunk * networking-bgpvpn diff --git a/docs/testing/user/configguide/configguide.rst b/docs/testing/user/configguide/configguide.rst index 6a32b8bd6..95aecb2df 100644 --- a/docs/testing/user/configguide/configguide.rst +++ b/docs/testing/user/configguide/configguide.rst @@ -107,7 +107,9 @@ Results shall be displayed as follows:: +------------------------------------+------------------+---------------+------------------+----------------+ | neutron-tempest-plugin-api | functest | smoke | 13:50 | PASS | | rally_sanity | functest | smoke | 14:13 | PASS | - | refstack_defcore | functest | smoke | 09:60 | PASS | + | refstack_compute | functest | smoke | 07:24 | PASS | + | refstack_object | functest | smoke | 02:08 | PASS | + | refstack_platform | functest | smoke | 08:32 | PASS | | tempest_full | functest | smoke | 58:40 | PASS | | tempest_scenario | functest | smoke | 09:47 | PASS | | patrole | functest | smoke | 05:34 | PASS | @@ -390,7 +392,7 @@ By default all the logs are put un /home/opnfv/functest/results/functest.log. If you want to have more logs in console, you may edit the logging.ini file manually. Connect on the docker then edit the file located in -/usr/lib/python2.7/site-packages/xtesting/ci/logging.ini +/usr/lib/python3.6/site-packages/xtesting/ci/logging.ini Change wconsole to console in the desired module to get more traces. @@ -400,8 +402,8 @@ Configuration You may also directly modify the python code or the configuration file (e.g. testcases.yaml used to declare test constraints) under -/usr/lib/python2.7/site-packages/xtesting and -/usr/lib/python2.7/site-packages/functest +/usr/lib/python3.6/site-packages/xtesting and +/usr/lib/python3.6/site-packages/functest Tips diff --git a/docs/testing/user/userguide/test_results.rst b/docs/testing/user/userguide/test_results.rst index bb28989ae..be3765376 100644 --- a/docs/testing/user/userguide/test_results.rst +++ b/docs/testing/user/userguide/test_results.rst @@ -10,7 +10,7 @@ In manual mode test results are displayed in the console and result files are put in /home/opnfv/functest/results. If you want additional logs, you may configure the logging.ini under -/usr/lib/python2.7/site-packages/xtesting/ci. +/usr/lib/python3.6/site-packages/xtesting/ci. Automated testing ----------------- diff --git a/docs/testing/user/userguide/troubleshooting.rst b/docs/testing/user/userguide/troubleshooting.rst index 3e1d044b2..279a47398 100644 --- a/docs/testing/user/userguide/troubleshooting.rst +++ b/docs/testing/user/userguide/troubleshooting.rst @@ -44,8 +44,8 @@ follows:: The Functest CLI is designed to route a call to the corresponding internal python scripts, located in paths:: - /usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/vping/vping_ssh.py - /usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/vping/vping_userdata.py + /usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/vping/vping_ssh.py + /usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/vping/vping_userdata.py Notes: @@ -125,7 +125,7 @@ This test case creates a floating IP on the external network and assigns it to the second instance **opnfv-vping-2**. The purpose of this is to establish a SSH connection to that instance and SCP a script that will ping the first instance. This script is located in the repository under -/usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/vping/ping.sh +/usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/vping/ping.sh and takes an IP as a parameter. When the SCP is completed, the test will do a SSH call to that script inside the second instance. Some problems can happen here:: @@ -278,7 +278,7 @@ To enable that, add a new entry in docker/smoke/testcases.yaml on the Also, a list of the Tempest test cases must be provided to the container or modify the existing one in -/usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/test_list.txt +/usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/test_list.txt Example of custom list of tests 'my-custom-tempest-tests.txt':: @@ -290,8 +290,8 @@ This is an example of running a customized list of Tempest tests in Functest:: sudo docker run --env-file env \ -v $(pwd)/openstack.creds:/home/opnfv/functest/conf/env_file \ -v $(pwd)/images:/home/opnfv/functest/images \ - -v $(pwd)/my-custom-testcases.yaml:/usr/lib/python2.7/site-packages/functest/ci/testcases.yaml \ - -v $(pwd)/my-custom-tempest-tests.txt:/usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/test_list.txt \ + -v $(pwd)/my-custom-testcases.yaml:/usr/lib/python3.6/site-packages/functest/ci/testcases.yaml \ + -v $(pwd)/my-custom-tempest-tests.txt:/usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/test_list.txt \ opnfv/functest-smoke run_tests -t tempest_custom @@ -314,7 +314,7 @@ Possible scenarios are: To know more about what those scenarios are doing, they are defined in directory: -/usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/rally/scenario +/usr/lib/python3.6/site-packages/functest/opnfv_tests/openstack/rally/scenario For more info about Rally scenario definition please refer to the Rally official documentation. `[3]`_ -- cgit 1.2.3-korg