blob: aeabb4d35abcf80f1e02a1bc11c8643692bd899b (
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
|
*** Settings ***
Documentation The main driver for instantiating a generic VNF
Test Teardown Teardown Test
Library OperatingSystem
Library Process
Library ArchiveLibrary
Library Collections
Library String
Library DateTime
Library ONAPLibrary.ServiceMapping WITH NAME ServiceMapping
Library ONAPLibrary.Utilities
Resource ../resources/test_templates/vnf_orchestration_test_template.robot
Resource ../resources/test_templates/vnf_instantiation_ovp.robot
Resource ../resources/global_properties.robot
Resource ../resources/vvp_validation.robot
*** Variables ***
${OVP_BUILD_TAG} vnf-validation-${GLOBAL_BUILD_NUMBER}
${OVP_VERSION} 2019.09
${VNF_CHKSUM}
${SDC_ASSETS_DIRECTORY} ${GLOBAL_HEAT_TEMPLATES_FOLDER}
${BUILD_DIR}= /tmp/vnfdata.${GLOBAL_BUILD_NUMBER}
*** Test Cases ***
VNF Instantiation
[Documentation] Instantiate Generic VNF
[Tags] instantiate_vnf_ovp
[Timeout] 3000
#### Executing VVP Validation Scripts ####
Run VVP Validation Scripts ${BUILD_DIR} ${BUILD_DIR}/templates/ ${OUTPUTDIR}/summary
#### Creating Runtime Service Mapping Data From Manifest ####
${new_vnf_name}= Add Service Mapping
#### Runtime Service Name ####
${new_vnf_service_name}= Set Variable ${new_vnf_name}_${GLOBAL_BUILD_NUMBER}
#### Getting Manifest Data ####
${subscriber}= Retrieve Manifest Data subscriber
${service_type}= Retrieve Manifest Data service_type
${tenant_name}= Retrieve Manifest Data tenant_name
${region_id}= Retrieve Manifest Data region_id
${cloud_owner}= Retrieve Manifest Data cloud_owner
${project_name}= Retrieve Manifest Data project_name
${owning_entity}= Retrieve Manifest Data owning_entity
${platform}= Retrieve Manifest Data platform
${line_of_business}= Retrieve Manifest Data line_of_business
${api_type}= Retrieve Manifest Data api_type
${os_password}= Retrieve Manifest Data os_password
#### Copying Heat Templates To Assett Directory ####
Copy Files ${BUILD_DIR}/templates/* ${SDC_ASSETS_DIRECTORY}/${new_vnf_name}/
Log Modeling Service ${new_vnf_service_name} console=yes
${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resources} ${catalog_resource_ids} ${catalog_service_id}= Model Distribution For Directory ${new_vnf_name} ${new_vnf_service_name}
#### VID Stuff ####
Log Instantiating Service ${new_vnf_service_name} console=yes
${vnf_details}= Instantiate VNF ${subscriber} ${new_vnf_name} ${service_type} ${new_vnf_service_name} ${catalog_service_name} ${catalog_resource_name} ${vf_modules} ${catalog_resources} ${service_type} ${tenant_name} ${region_id} ${cloud_owner} ${project_name} ${owning_entity} ${api_type} platform=${platform} line_of_business=${line_of_business}
# sleeping after instantiation, seems to occasionally have some issues if running validation immediately
Sleep 30
Run VNF Instantiation Report ${region_id} ${vnf_details} ${os_password} ${new_vnf_name}
*** Keywords ***
Add Service Mapping
[Documentation] Adding service mapping for this VNF at runtime. This replicates service_mapping.json.
${json}= OperatingSystem.Get File ${BUILD_DIR}/vnf-details.json
${object}= Evaluate json.loads('''${json}''') json
${vnf_name}= Set Variable ${object["vnf_name"]}
${module_list}= Set Variable ${object["modules"]}
${template_mapping_list} Create List
${module_index}= Set Variable 0
:FOR ${module} IN @{module_list}
\ ${empty_dict} Create Dictionary
\ ${base}= Set Variable ${module["isBase"]}
\ ${filename}= Set Variable ${module["filename"]}
\ ${index}= Set Variable If '${base}'=='true' 0 ${module_index} + 1
\ ${name}= Remove String ${filename} .yaml .yml
\ ${preload}= Set Variable ${module["preload"]}
\ set to dictionary ${empty_dict} isBase=${base} template="" vnf_index=${index} name_pattern=${name} preload_file=${preload}
\ Append To List ${template_mapping_list} ${empty_dict}
${GLOBAL_SERVICE_TEMPLATE_MAPPING} Create Dictionary
${GLOBAL_SERVICE_FOLDER_MAPPING} Create Dictionary
${GLOBAL_SERVICE_VNF_MAPPING} Create Dictionary
${GLOBAL_SERVICE_GEN_NEUTRON_NETWORK_MAPPING} Create Dictionary
${GLOBAL_SERVICE_DEPLOYMENT_ARTIFACT_MAPPING} Create Dictionary
${SERVICE_MAPPING} Create Dictionary
set to dictionary ${GLOBAL_SERVICE_TEMPLATE_MAPPING} ${vnf_name}=${template_mapping_list}
${folder_mapping_list} Create List
Append To List ${folder_mapping_list} ${vnf_name}
set to dictionary ${GLOBAL_SERVICE_FOLDER_MAPPING} ${vnf_name}=${folder_mapping_list}
${service_mapping_list} Create List
Append To List ${service_mapping_list} ${vnf_name}
set to dictionary ${GLOBAL_SERVICE_VNF_MAPPING} ${vnf_name}=${service_mapping_list}
${neutron_mapping_list} Create List
set to dictionary ${GLOBAL_SERVICE_GEN_NEUTRON_NETWORK_MAPPING} ${vnf_name}=${neutron_mapping_list}
${deployment_mapping_list} Create List
set to dictionary ${GLOBAL_SERVICE_DEPLOYMENT_ARTIFACT_MAPPING} ${vnf_name}=${deployment_mapping_list}
set to dictionary ${SERVICE_MAPPING} GLOBAL_SERVICE_FOLDER_MAPPING=${GLOBAL_SERVICE_FOLDER_MAPPING} GLOBAL_SERVICE_VNF_MAPPING=${GLOBAL_SERVICE_VNF_MAPPING} GLOBAL_SERVICE_GEN_NEUTRON_NETWORK_MAPPING=${GLOBAL_SERVICE_GEN_NEUTRON_NETWORK_MAPPING} GLOBAL_SERVICE_DEPLOYMENT_ARTIFACT_MAPPING=${GLOBAL_SERVICE_DEPLOYMENT_ARTIFACT_MAPPING} GLOBAL_SERVICE_TEMPLATE_MAPPING=${GLOBAL_SERVICE_TEMPLATE_MAPPING} GLOBAL_VALIDATE_NAME_MAPPING=
${json_string}= evaluate json.dumps(${SERVICE_MAPPING}) json
OperatingSystem.Create File ${GLOBAL_SERVICE_MAPPING_DIRECTORY}/${vnf_name}/service_mapping.json ${json_string}
[Return] ${vnf_name}
Retrieve Manifest Data
[Arguments] ${required_key}
${json}= OperatingSystem.Get File ${BUILD_DIR}/vnf-details.json
${object}= Evaluate json.loads('''${json}''') json
Dictionary Should Contain Key ${object} ${required_key} msg=ERROR: key "${required_key}" not found in the manifest.
[Return] ${object["${required_key}"]}
Teardown Test
Remove Directory ${BUILD_DIR} recursive=True
|