diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-02-07 07:51:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-07 07:51:25 +0000 |
commit | ec94112aa52507727425005458264335352ac6e8 (patch) | |
tree | b193ddf479d9d4ddaf0da8bb89f73aeed3c3b67f /functest/ci | |
parent | de489169452cd732dc90dc7eded0ff1ee5f68e52 (diff) | |
parent | 0895540ce84a200d692bf8c4e879d69a0eb40234 (diff) |
Merge "Move api_check and connection check to healthcheck category"
Diffstat (limited to 'functest/ci')
-rwxr-xr-x | functest/ci/testcases.yaml | 69 |
1 files changed, 34 insertions, 35 deletions
diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml index 12d791f0..6397f764 100755 --- a/functest/ci/testcases.yaml +++ b/functest/ci/testcases.yaml @@ -18,7 +18,41 @@ tiers: dependencies: installer: '' scenario: '^((?!lxd).)*$' + - + name: connection_check + criteria: 'status == "PASS"' + blocking: true + description: >- + This test case verifies the retrieval of OpenStack clients: + Keystone, Glance, Neutron and Nova and may perform some + simple queries. When the config value of + snaps.use_keystone is True, functest must have access to + the cloud's private network. + dependencies: + installer: '^((?!netvirt).)*$' + scenario: '' + run: + module: 'functest.opnfv_tests.openstack.snaps.connection_check' + class: 'ConnectionCheck' + + - + name: api_check + criteria: 'status == "PASS"' + blocking: true + description: >- + This test case verifies the retrieval of OpenStack clients: + Keystone, Glance, Neutron and Nova and may perform some + simple queries. When the config value of + snaps.use_keystone is True, functest must have access to + the cloud's private network. + + dependencies: + installer: '^((?!netvirt).)*$' + scenario: '' + run: + module: 'functest.opnfv_tests.openstack.snaps.api_check' + class: 'ApiCheck' - name: smoke order: 1 @@ -116,41 +150,6 @@ tiers: installer: '' scenario: 'onos' - - - name: connection_check - criteria: 'status == "PASS"' - blocking: false - description: >- - This test case verifies the retrieval of OpenStack clients: - Keystone, Glance, Neutron and Nova and may perform some - simple queries. When the config value of - snaps.use_keystone is True, functest must have access to - the cloud's private network. - - dependencies: - installer: '^((?!netvirt).)*$' - scenario: '' - run: - module: 'functest.opnfv_tests.openstack.snaps.connection_check' - class: 'ConnectionCheck' - - - - name: api_check - criteria: 'status == "PASS"' - blocking: false - description: >- - This test case verifies the retrieval of OpenStack clients: - Keystone, Glance, Neutron and Nova and may perform some - simple queries. When the config value of - snaps.use_keystone is True, functest must have access to - the cloud's private network. - - dependencies: - installer: '^((?!netvirt).)*$' - scenario: '' - run: - module: 'functest.opnfv_tests.openstack.snaps.api_check' - class: 'ApiCheck' - name: snaps_smoke |