diff options
Diffstat (limited to 'docker/healthcheck/testcases.yaml')
-rw-r--r-- | docker/healthcheck/testcases.yaml | 92 |
1 files changed, 62 insertions, 30 deletions
diff --git a/docker/healthcheck/testcases.yaml b/docker/healthcheck/testcases.yaml index 14d353dc1..9fb64700d 100644 --- a/docker/healthcheck/testcases.yaml +++ b/docker/healthcheck/testcases.yaml @@ -28,68 +28,100 @@ tiers: class: 'ConnectionCheck' - - case_name: api_check + case_name: tenantnetwork1 project_name: functest criteria: 100 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. + It creates and configures all tenant network ressources + required by advanced testcases (subnet, network and + router). dependencies: installer: '' - scenario: '^((?!lxd).)*$' + scenario: '' run: - module: 'functest.opnfv_tests.openstack.snaps.api_check' - class: 'ApiCheck' + module: 'functest.core.tenantnetwork' + class: 'TenantNetwork1' - - case_name: snaps_health_check + case_name: tenantnetwork2 project_name: functest criteria: 100 blocking: true description: >- - This test case creates executes the SimpleHealthCheck - Python test class which creates an, image, flavor, network, - and Cirros VM instance and observes the console output to - validate the single port obtains the correct IP address. + It creates new user/project before creating and configuring + all tenant network ressources required by a testcase + (subnet, network and router). dependencies: installer: '' - scenario: '^((?!lxd).)*$' + scenario: '' run: - module: 'functest.opnfv_tests.openstack.snaps.health_check' - class: 'HealthCheck' + module: 'functest.core.tenantnetwork' + class: 'TenantNetwork2' - - case_name: tenantnetwork1 + case_name: singlevm1 project_name: functest criteria: 100 - blocking: false + blocking: true description: >- - It creates and configures all tenant network ressources - required by advanced testcases (subnet, network and - router). + It inherits from TenantNetwork1 which creates all network + resources and completes it by booting a VM attached to that + network. dependencies: installer: '' scenario: '' run: - module: 'functest.core.tenantnetwork' - class: 'TenantNetwork1' + module: 'functest.core.singlevm' + class: 'SingleVm1' - - case_name: tenantnetwork2 + case_name: singlevm2 project_name: functest criteria: 100 - blocking: false + blocking: true description: >- It creates new user/project before creating and configuring - all tenant network ressources required by a testcase - (subnet, network and router). + all tenant network ressources and vms required by advanced + testcases. dependencies: installer: '' scenario: '' run: - module: 'functest.core.tenantnetwork' - class: 'TenantNetwork2' + module: 'functest.core.singlevm' + class: 'SingleVm2' + + - + case_name: api_check + project_name: functest + criteria: 100 + 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: '' + scenario: '^((?!lxd).)*$' + run: + module: 'functest.opnfv_tests.openstack.snaps.api_check' + class: 'ApiCheck' + + - + case_name: snaps_health_check + project_name: functest + criteria: 100 + blocking: true + description: >- + This test case creates executes the SimpleHealthCheck + Python test class which creates an, image, flavor, network, + and Cirros VM instance and observes the console output to + validate the single port obtains the correct IP address. + dependencies: + installer: '' + scenario: '^((?!lxd).)*$' + run: + module: 'functest.opnfv_tests.openstack.snaps.health_check' + class: 'HealthCheck' |