Publish tenantnetwork scenarios
[functest.git] / docker / healthcheck / testcases.yaml
1 ---
2 tiers:
3     -
4         name: healthcheck
5         order: 0
6         ci_loop: '(merge)|(verify)|(daily)|(weekly)'
7         description: >-
8             First tier to be executed to verify the basic
9             operations in the VIM.
10         testcases:
11             -
12                 case_name: connection_check
13                 project_name: functest
14                 criteria: 100
15                 blocking: true
16                 description: >-
17                     This test case verifies the retrieval of OpenStack clients:
18                     Keystone, Glance, Neutron and Nova and may perform some
19                     simple queries. When the config value of
20                     snaps.use_keystone is True, functest must have access to
21                     the cloud's private network.
22                 dependencies:
23                     installer: ''
24                     scenario: ''
25                 run:
26                     module:
27                         'functest.opnfv_tests.openstack.snaps.connection_check'
28                     class: 'ConnectionCheck'
29
30             -
31                 case_name: api_check
32                 project_name: functest
33                 criteria: 100
34                 blocking: true
35                 description: >-
36                     This test case verifies the retrieval of OpenStack clients:
37                     Keystone, Glance, Neutron and Nova and may perform some
38                     simple queries. When the config value of
39                     snaps.use_keystone is True, functest must have access to
40                     the cloud's private network.
41                 dependencies:
42                     installer: ''
43                     scenario: '^((?!lxd).)*$'
44                 run:
45                     module: 'functest.opnfv_tests.openstack.snaps.api_check'
46                     class: 'ApiCheck'
47
48             -
49                 case_name: snaps_health_check
50                 project_name: functest
51                 criteria: 100
52                 blocking: true
53                 description: >-
54                     This test case creates executes the SimpleHealthCheck
55                     Python test class which creates an, image, flavor, network,
56                     and Cirros VM instance and observes the console output to
57                     validate the single port obtains the correct IP address.
58                 dependencies:
59                     installer: ''
60                     scenario: '^((?!lxd).)*$'
61                 run:
62                     module: 'functest.opnfv_tests.openstack.snaps.health_check'
63                     class: 'HealthCheck'
64
65             -
66                 case_name: tenantnetwork1
67                 project_name: functest
68                 criteria: 100
69                 blocking: false
70                 description: >-
71                     It creates and configures all tenant network ressources
72                     required by advanced testcases (subnet, network and
73                     router).
74                 dependencies:
75                     installer: ''
76                     scenario: ''
77                 run:
78                     module: 'functest.core.tenantnetwork'
79                     class: 'TenantNetwork1'
80
81             -
82                 case_name: tenantnetwork2
83                 project_name: functest
84                 criteria: 100
85                 blocking: false
86                 description: >-
87                     It creates new user/project before creating and configuring
88                     all tenant network ressources required by a testcase
89                     (subnet, network and router).
90                 dependencies:
91                     installer: ''
92                     scenario: ''
93                 run:
94                     module: 'functest.core.tenantnetwork'
95                     class: 'TenantNetwork2'