summaryrefslogtreecommitdiffstats
path: root/vnftest/test_config/onap/test_cases/onap_vnftest_instantiate-v1.yaml
blob: addee64acf42bbbd0ee90ece95a5e83b5c36b9ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
##############################################################################
# Copyright 2018 EuropeanSoftwareMarketingLtd.
# ===================================================================
#  Licensed under the ApacheLicense, Version2.0 (the"License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#  http://www.apache.org/licenses/LICENSE-2.0
#
# software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under
# the License
##############################################################################

---
schema: "vnftest:task:0.1"
description: >
    Vnftest TC002 config file;
    Instantiate VNF

{% set rnd = rnd or range(10000)|random %}
# Optional input parameters
{% set cloud_owner = cloud_owner or ['test_cloud_', rnd ]|join %}
{% set customer_name = customer_name or ['test_customer_', rnd ]|join %}
{% set service_instance_name = service_instance_name or ['test_service_instance_', rnd ]|join %}
{% set vnf_instance_name = vnf_instance_name or ['test_vnf_instance_', rnd ]|join %}

# Mandatory input parameters
{% set service_model_version_id = service_model_version_id or '\"\u007Bservice_model_version_id\u007D\"' %}
{% set service_model_version = service_model_version or '\"\u007Bservice_model_version\u007D\"' %}
{% set service_model_normalized_name = service_model_normalized_name or '\"\u007Bservice_model_normalized_name\u007D\"' %}
{% set service_model_invariant_id = service_model_invariant_id or '\"\u007Bservice_model_invariant_id\u007D\"' %}
{% set service_model_name = service_model_name or '\"\u007Bservice_model_name\u007D\"' %}
{% set service_model_customization_id = service_model_customization_id or '\"\u007Bservice_model_customization_id\u007D\"' %}
{% set resource_model_invariant_id = resource_model_invariant_id or '\"\u007Bresource_model_invariant_id\u007D\"' %}
{% set resource_model_version_id = resource_model_version_id or '\"\u007Bresource_model_version_id\u007D\"' %}
{% set resource_model_name = resource_model_name or '\"\u007Bresource_model_name\u007D\"' %}
{% set resource_model_version = resource_model_version or '\"\u007Bresource_model_version\u007D\"' %}
{% set resource_model_customization_id = resource_model_customization_id or '\"\u007Bresource_model_customization_id\u007D\"' %}
{% set resource_model_customization_name = resource_model_customization_name or '\"\u007Bresource_model_customization_name\u007D\"' %}
{% set distributed_service_id = distributed_service_id or '\"\u007Bdistributed_service_id\u007D\"' %}
{% set resource_instance_model_name = resource_instance_model_name or '\"\u007Bresource_instance_model_name\u007D\"' %}
{% set vf_modules_list = vf_modules_list or {}%}

steps:
-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_region.yaml"
    input:
    -
      parameter_name: "cloud_owner"
      value: {{cloud_owner}}
    -
      parameter_name: "tenant_id"
      value: "{context.creds.tenant_id}"
    -
      parameter_name: "tenant_name"
      value: "{context.creds.tenant_name}"
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_service.yaml"
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_customer.yaml"
    input:
    -
      parameter_name: "customer_name"
      value: {{customer_name}}
    -
      parameter_name: "cloud_owner"
      value: {{cloud_owner}}
    -
      parameter_name: "tenant_id"
      value: "{context.creds.tenant_id}"
-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_service_instance.yaml"
    delay: 60
    input:
    -
      parameter_name: "service_instance_name"
      value: {{service_instance_name}}
    -
      parameter_name: "service_model_version_id"
      value: {{service_model_version_id}}
    -
      parameter_name: "service_model_version"
      value: {{service_model_version}}
    -
      parameter_name: "service_model_normalized_name"
      value: {{service_model_normalized_name}}
    -
      parameter_name: "service_model_invariant_id"
      value: {{service_model_invariant_id}}
    -
      parameter_name: "customer_name"
      value: {{customer_name}}
    output:
    -
      parameter_name: "service_instance_id"
      value: "[requestReferences][instanceId]"
    -
      parameter_name: "request_id"
      value: "[requestReferences][requestId]"
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/monitor_request.yaml"
    input:
    -
      parameter_name: "request_id"
      value: "{request_id}"
    output:
    -
      parameter_name: "request_state"
      value: "[request][requestStatus][requestState]"
  sla:
    action: assert
    value: "{request_state}"
    equals: "COMPLETE"
    retries: 15
    interval: 5

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_vnf_instance.yaml"
    delay: 30
    input:
    -
      parameter_name: "service_instance_id"
      value: "{service_instance_id}"
    -
      parameter_name: "vnf_instance_name"
      value: {{vnf_instance_name}}
    -
      parameter_name: "resource_model_invariant_id"
      value: {{resource_model_invariant_id}}
    -
      parameter_name: "resource_model_version_id"
      value: {{resource_model_version_id}}
    -
      parameter_name: "resource_model_name"
      value: {{resource_model_name}}
    -
      parameter_name: "resource_model_version"
      value: {{resource_model_version}}
    -
      parameter_name: "resource_model_customization_id"
      value: {{resource_model_customization_id}}
    -
      parameter_name: "resource_model_customization_name"
      value: {{resource_model_customization_name}}
    -
      parameter_name: "tenant_id"
      value: "{context.creds.tenant_id}"
    -
      parameter_name: "service_model_name"
      value: {{service_model_name}}
    -
      parameter_name: "service_model_invariant_id"
      value: {{service_model_invariant_id}}
    -
      parameter_name: "service_model_version"
      value: {{service_model_version}}
    -
      parameter_name: "distributed_service_id"
      value: {{distributed_service_id}}

    output:
    -
      parameter_name: "vnf_instance_id"
      value: "[requestReferences][instanceId]"
    -
      parameter_name: "request_id"
      value: "[requestReferences][requestId]"
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/monitor_request.yaml"
    input:
    -
      parameter_name: "request_id"
      value: "{request_id}"
    output:
    -
      parameter_name: "request_state"
      value: "[request][requestStatus][requestState]"
  sla:
    action: assert
    value: "{request_state}"
    equals: "COMPLETE"
    retries: 15
    interval: 5
  runner:
    type: Iteration
    run_step: "setup,run"

{% for vf_module_definition in vnf_descriptor.vf_modules %}
  {% set vf_module = vf_modules_list[vf_module_definition.module_name] %}
  {% set vnf_name = ['test_vnf_', rnd, '_', vf_module_definition.module_name ]|join %}
-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/preload_sdnc.yaml"
    input:
    -
      parameter_name: "vnf_parameters"
      value: {{vf_module_definition.vnf_parameters}}
    -
      parameter_name: "vnf_name"
      value: {{vnf_name}}
    -
      parameter_name: "vnf_instance_name"
      value: {{vnf_instance_name}}
    -
      parameter_name: "service_model_name"
      value: {{service_model_name}}
    -
      parameter_name: "resource_instance_model_name"
      value: {{resource_instance_model_name}}
    -
      parameter_name: "service_instance_id"
      value: "{service_instance_id}"
    -
      parameter_name: "vnf_type"
      value: {{vf_module.groupName}}
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/create_vf_module.yaml"
    delay: 30
    input:
    -
      parameter_name: "user_parameters"
      value: {{vf_module_definition.user_parameters}}
    -
      parameter_name: "service_instance_id"
      value: "{service_instance_id}"
    -
      parameter_name: "vnf_instance_id"
      value: "{vnf_instance_id}"
    -
      parameter_name: "vnf_name"
      value: {{vnf_name}}
    -
      parameter_name: "module_model_invariant_id"
      value: {{vf_module.invariantUUID}}
    -
      parameter_name: "module_model_version_id"
      value: {{vf_module.groupUUID}}
    -
      parameter_name: "vnf_type"
      value: {{vf_module.groupName}}
    -
      parameter_name: "module_model_version"
      value: {{vf_module.version}}
    -
      parameter_name: "module_model_customization_id"
      value: {{vf_module.customizationUUID}}
    -
      parameter_name: "tenant_id"
      value: "{context.creds.tenant_id}"
    -
      parameter_name: "service_model_name"
      value: {{service_model_name}}
    -
      parameter_name: "service_model_invariant_id"
      value: {{service_model_invariant_id}}
    -
      parameter_name: "service_model_version"
      value: {{service_model_version}}
    -
      parameter_name: "distributed_service_id"
      value: {{distributed_service_id}}
    -
      parameter_name: "resource_model_name"
      value: {{resource_model_name}}
    -
      parameter_name: "resource_model_invariant_id"
      value: {{resource_model_invariant_id}}
    -
      parameter_name: "resource_model_version"
      value: {{resource_model_version}}
    -
      parameter_name: "resource_model_version_id"
      value: {{resource_model_version_id}}
    -
      parameter_name: "resource_model_customization_id"
      value: {{resource_model_customization_id}}
    -
      parameter_name: "resource_model_customization_name"
      value: {{resource_model_customization_name}}

    output:
    -
      parameter_name: "vf_module_instance_id"
      value: "[requestReferences][instanceId]"
    -
      parameter_name: "request_id"
      value: "[requestReferences][requestId]"
  runner:
    type: Iteration
    run_step: "setup,run"

-
  type: RestCall
  options:
    file: "vnftest/onap/lifecycle/monitor_request.yaml"
    input:
    -
      parameter_name: "request_id"
      value: "{request_id}"
    output:
    -
      parameter_name: "request_state"
      value: "[request][requestStatus][requestState]"
  sla:
    action: assert
    value: "{request_state}"
    equals: "COMPLETE"
    retries: 15
    interval: 5

  runner:
    type: Iteration
    run_step: "setup,run"
-
  type: VfModuleValidator
  options:
    vnf_instance_id: "{vnf_instance_id}"
    vf_module_instance_id: "{vf_module_instance_id}"
  runner:
    type: Iteration
    run_step: "setup,run"

{% endfor %}
context:
  type: CSAR