file/dir renaming for consistency
[functest.git] / functest / opnfv_tests / openstack / rally / scenario / sanity / opnfv-neutron.yaml
1   NeutronNetworks.create_and_delete_networks:
2     -
3       args:
4         network_create_args: {}
5       context:
6         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
7         quotas:
8           neutron:
9             network: -1
10         {% endcall %}
11       runner:
12         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
13       sla:
14         {{ no_failures_sla() }}
15
16   NeutronNetworks.create_and_delete_ports:
17     -
18       args:
19         network_create_args: {}
20         port_create_args: {}
21         ports_per_network: 1
22       context:
23         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
24         network: {}
25         quotas:
26           neutron:
27             network: -1
28             port: -1
29         {% endcall %}
30       runner:
31         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
32       sla:
33         {{ no_failures_sla() }}
34
35   NeutronNetworks.create_and_delete_routers:
36     -
37       args:
38         network_create_args: {}
39         router_create_args: {}
40         subnet_cidr_start: "1.1.0.0/30"
41         subnet_create_args: {}
42         subnets_per_network: 1
43       context:
44         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
45         network: {}
46         quotas:
47           neutron:
48             network: -1
49             subnet: -1
50             port: -1
51             router: -1
52         {% endcall %}
53       runner:
54         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
55       sla:
56         {{ no_failures_sla() }}
57
58   NeutronNetworks.create_and_delete_subnets:
59     -
60       args:
61         network_create_args: {}
62         subnet_cidr_start: "1.1.0.0/30"
63         subnet_create_args: {}
64         subnets_per_network: 1
65       context:
66         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
67         network: {}
68         quotas:
69           neutron:
70             network: -1
71             subnet: -1
72         {% endcall %}
73       runner:
74         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
75       sla:
76         {{ no_failures_sla() }}
77
78   NeutronNetworks.create_and_list_networks:
79     -
80       args:
81         network_create_args: {}
82       context:
83         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
84         quotas:
85           neutron:
86             network: -1
87         {% endcall %}
88       runner:
89         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
90       sla:
91         {{ no_failures_sla() }}
92
93   NeutronNetworks.create_and_list_ports:
94     -
95       args:
96         network_create_args: {}
97         port_create_args: {}
98         ports_per_network: 1
99       context:
100         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
101         network: {}
102         quotas:
103           neutron:
104             network: -1
105             port: -1
106         {% endcall %}
107       runner:
108         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
109       sla:
110         {{ no_failures_sla() }}
111
112   NeutronNetworks.create_and_list_routers:
113     -
114       args:
115         network_create_args: {}
116         router_create_args: {}
117         subnet_cidr_start: "1.1.0.0/30"
118         subnet_create_args: {}
119         subnets_per_network: 1
120       context:
121         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
122         network: {}
123         quotas:
124           neutron:
125             network: -1
126             subnet: -1
127             router: -1
128         {% endcall %}
129       runner:
130         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
131       sla:
132         {{ no_failures_sla() }}
133
134   NeutronNetworks.create_and_list_subnets:
135     -
136       args:
137         network_create_args: {}
138         subnet_cidr_start: "1.1.0.0/30"
139         subnet_create_args: {}
140         subnets_per_network: 1
141       context:
142         {% call user_context(tenants_amount, users_amount, use_existing_users) %}
143         network: {}
144         quotas:
145           neutron:
146             network: -1
147             subnet: -1
148         {% endcall %}
149       runner:
150         {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
151       sla:
152         {{ no_failures_sla() }}