blob: 209be499b29b0b34bde677574642905582793602 [file] [log] [blame]
jf986075010a42017-02-22 16:52:54 -05001*** Settings ***
jf98601aa4c9d2017-03-02 16:35:04 -05002Documentation This test template encapsulates the VNF Orchestration use case.
jf986075010a42017-02-22 16:52:54 -05003
jf98601aa4c9d2017-03-02 16:35:04 -05004Resource test_templates/model_test_template.robot
DR695H910097e2019-05-08 13:55:32 -04005Resource test_templates/model_test_template_vcperescust.robot
jf98601aa4c9d2017-03-02 16:35:04 -05006Resource test_templates/vnf_orchestration_test_template.robot
DR695Hc0cf6a42019-07-26 16:42:36 -04007Resource sdc_interface.robot
DR695Hbf5a3a32017-06-30 13:09:57 -04008Resource vid/vid_interface.robot
Michal Ptacek6880b652019-07-08 16:13:02 +02009Resource consul_interface.robot
10Resource policy_interface.robot
Marco Platania9d992ae2019-01-23 17:20:05 -050011Resource aai/create_availability_zone.robot
jf986075010a42017-02-22 16:52:54 -050012
DR695H18872bc2019-06-13 16:16:52 -040013Library ONAPLibrary.Utilities
jf986075010a42017-02-22 16:52:54 -050014Library Collections
15Library OperatingSystem
DR695H910097e2019-05-08 13:55:32 -040016Library SeleniumLibrary
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040017Library RequestsLibrary
DR695Hd9794652019-07-19 18:20:40 -040018Library ONAPLibrary.Templating WITH NAME Templating
19Library ONAPLibrary.AAI WITH NAME AAI
jf986075010a42017-02-22 16:52:54 -050020
21*** Variables ***
22
DR695H3bb6cf42019-06-20 15:04:04 -040023${ADD_DEMO_CUSTOMER_BODY} aai/add_demo_customer.jinja
jf986075010a42017-02-22 16:52:54 -050024${AAI_INDEX_PATH} /aai/v8
25${VF_MODULES_NAME} _Demo_VFModules.json
jf98601aa4c9d2017-03-02 16:35:04 -050026${FILE_CACHE} /share/
Jerry Flood1973e2c2017-10-19 18:26:24 -040027${DEMO_PREFIX} demo
Brian Freemand65e2aa2018-07-26 11:13:46 -050028${VPKG_MODULE_LABEL} base_vpkg
Jerry Flood1973e2c2017-10-19 18:26:24 -040029
jf986075010a42017-02-22 16:52:54 -050030
jf98601aa4c9d2017-03-02 16:35:04 -050031*** Keywords ***
jf986075010a42017-02-22 16:52:54 -050032Load Customer And Models
DR695Hc0cf6a42019-07-26 16:42:36 -040033 [Documentation] Use ONAP to Orchestrate a service.
jf986075010a42017-02-22 16:52:54 -050034 [Arguments] ${customer_name}
Brian Freeman76454ae2018-04-23 15:51:31 -050035 Load OwningEntity lineOfBusiness LOB-${customer_name}
36 Load OwningEntity platform Platform-${customer_name}
37 Load OwningEntity project Project-${customer_name}
38 Load OwningEntity owningEntity OE-${customer_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040039 Load Customer ${customer_name}
40 Load Models ${customer_name}
41
Sonsino, Ofir (os0695)b0775852018-04-22 15:33:47 +030042Load OwningEntity
DR695Hc0cf6a42019-07-26 16:42:36 -040043 [Documentation] Use ONAP to Orchestrate a service.
Sonsino, Ofir (os0695)b0775852018-04-22 15:33:47 +030044 [Arguments] ${parameter} ${name}
Brian Freeman76454ae2018-04-23 15:51:31 -050045 ${data_path}= Set Variable /maintenance/category_parameter/${parameter}
46 ${vid_data}= Set Variable {"options":["${name}"]}
47 ${auth}= Create List ${GLOBAL_VID_USERNAME} ${GLOBAL_VID_PASSWORD}
48 Log Creating session ${data_path}
49 ${session}= Create Session vid ${VID_ENDPOINT}${VID_ENV} auth=${auth}
DR695H18872bc2019-06-13 16:16:52 -040050 ${uuid}= Generate UUID4
Brian Freeman76454ae2018-04-23 15:51:31 -050051 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json USER_ID=${GLOBAL_VID_USERNAME} X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
52 ${resp}= Post Request vid ${data_path} data=${vid_data} headers=${headers}
Brian Freemaneef7c6f2018-11-16 18:42:21 -050053
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040054Load Customer
DR695Hc0cf6a42019-07-26 16:42:36 -040055 [Documentation] Use ONAP to Orchestrate a service.
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040056 [Arguments] ${customer_name}
DR695H31480282019-07-12 18:34:15 -040057 ${tenant_id} ${tenant_name}= Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040058 ${region}= Get Openstack Region
DR695H1ccabd02019-07-15 17:19:12 -040059 Create Customer For VNF Demo ${customer_name} ${customer_name} INFRA ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${tenant_id}
60 Create Customer For VNF Demo ${customer_name} ${customer_name} INFRA ${GLOBAL_AAI_CLOUD_OWNER} RegionTlab 50b190410b2a4c229d8a6044a80ab7c1
Marco Platania9d992ae2019-01-23 17:20:05 -050061 Create Availability Zone If Not Exists ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${GLOBAL_AAI_AVAILABILITY_ZONE_NAME}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040062
63Load Models
DR695Hc0cf6a42019-07-26 16:42:36 -040064 [Documentation] Use ONAP to Orchestrate a service.
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040065 [Arguments] ${customer_name}
DR695H8e7028b2019-07-10 10:13:58 -040066 Log ${\n}Distributing vFWCL
Jerry Flood9cfbec82017-12-06 11:33:09 -050067 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vFWCL ${DEMO_PREFIX}VFWCL
DR695H8e7028b2019-07-10 10:13:58 -040068 Log Distibuting vLB
Jerry Flood1973e2c2017-10-19 18:26:24 -040069 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB ${DEMO_PREFIX}VLB
Abdelmuhaimen Seaudi908e9bd2019-07-25 17:28:25 +000070 Log Distibuting vLB_CDS
71 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB_CDS ${DEMO_PREFIX}VLB_CDS True
Brian Freemaneef7c6f2018-11-16 18:42:21 -050072 ##${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPE ${DEMO_PREFIX}VCPE
Jerry Flood1973e2c2017-10-19 18:26:24 -040073 ##${status} ${value}= Run Keyword And Ignore Error Distribute Model vIMS ${DEMO_PREFIX}VIMS
DR695H8e7028b2019-07-10 10:13:58 -040074 Log Distibuting vCPEInfra
Brian Freemaneef7c6f2018-11-16 18:42:21 -050075 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEInfra ${DEMO_PREFIX}VCPEInfra
DR695H8e7028b2019-07-10 10:13:58 -040076 Log Distibuting vCPEvBNG
Brian Freemaneef7c6f2018-11-16 18:42:21 -050077 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvBNG ${DEMO_PREFIX}VCPEvBNG
DR695H8e7028b2019-07-10 10:13:58 -040078 Log Distibuting vCPEvBRGEMU
Brian Freemaneef7c6f2018-11-16 18:42:21 -050079 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvBRGEMU ${DEMO_PREFIX}VCPEvBRGEMU
DR695H8e7028b2019-07-10 10:13:58 -040080 Log Distibuting vCPEvGMUX
Brian Freemaneef7c6f2018-11-16 18:42:21 -050081 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvGMUX ${DEMO_PREFIX}VCPEvGMUX
DR695H8e7028b2019-07-10 10:13:58 -040082 Log Distibuting vCPEvGW (this is not vCPEResCust service)
Brian Freemaneef7c6f2018-11-16 18:42:21 -050083 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvGW ${DEMO_PREFIX}VCPEvGW
jf986075010a42017-02-22 16:52:54 -050084
85Distribute Model
Abdelmuhaimen Seaudi908e9bd2019-07-25 17:28:25 +000086 [Arguments] ${service} ${modelName} ${cds}=
87 Model Distribution For Directory ${service} ${modelName} ${cds}
jf98601aa4c9d2017-03-02 16:35:04 -050088
bdfreeman1421b2a49512018-11-25 07:32:19 -050089Distribute vCPEResCust Model
90 [Arguments] ${service} ${modelName}
DR695Hc1103fb2019-07-22 12:37:45 -040091 Model Distribution For vCPEResCust Directory ${service} ${modelName}
bdfreeman1421b2a49512018-11-25 07:32:19 -050092
jf986075010a42017-02-22 16:52:54 -050093Create Customer For VNF Demo
94 [Documentation] Create demo customer for the demo
jf98601aa4c9d2017-03-02 16:35:04 -050095 [Arguments] ${customer_name} ${customer_id} ${customer_type} ${clouder_owner} ${cloud_region_id} ${tenant_id}
Brian Freeman0aebc3a2018-09-14 11:22:43 -050096 Create Service If Not Exists vFW
Jerry Flood9cfbec82017-12-06 11:33:09 -050097 Create Service If Not Exists vFWCL
Jerry Flood7762dd02017-10-26 06:21:03 -040098 Create Service If Not Exists vLB
99 Create Service If Not Exists vCPE
100 Create Service If Not Exists vIMS
Brian Freeman0aebc3a2018-09-14 11:22:43 -0500101 Create Service If Not Exists gNB
jf98601aa4c9d2017-03-02 16:35:04 -0500102 ${arguments}= Create Dictionary subscriber_name=${customer_name} global_customer_id=${customer_id} subscriber_type=${customer_type} cloud_owner=${clouder_owner} cloud_region_id=${cloud_region_id} tenant_id=${tenant_id}
Brian Freeman858f1052018-09-14 12:36:40 -0500103 Set To Dictionary ${arguments} service1=vFWCL service2=vLB service3=vCPE service4=vIMS service5=gNB service6=vFW
DR695Hd9794652019-07-19 18:20:40 -0400104 Templating.Create Environment aai ${GLOBAL_TEMPLATE_FOLDER}
105 ${data}= Templating.Apply Template aai ${ADD_DEMO_CUSTOMER_BODY} ${arguments}
DR695Hc6184272019-07-26 15:50:23 -0400106 ${put_resp}= AAI.Run Put Request ${AAI_FRONTEND_ENDPOINT} ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id} ${data} auth=${GLOBAL_AAI_AUTHENTICATION}
jf986075010a42017-02-22 16:52:54 -0500107 ${status_string}= Convert To String ${put_resp.status_code}
Jerry Floodf225e142017-10-11 16:19:04 -0400108 Should Match Regexp ${status_string} ^(200|201|412)$
jf986075010a42017-02-22 16:52:54 -0500109
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400110Preload User Model
111 [Documentation] Preload the demo data for the passed VNF with the passed module name
DR695H70861af2019-07-30 17:25:33 -0400112 [Arguments] ${vnf_name} ${vf_module_name} ${service} ${service_instance_id} ${vnf}=${service}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400113 # Go to A&AI and get information about the VNF we need to preload
jf98601aa4c9d2017-03-02 16:35:04 -0500114 ${status} ${generic_vnf}= Run Keyword And Ignore Error Get Service Instance ${vnf_name}
jf986075010a42017-02-22 16:52:54 -0500115 Run Keyword If '${status}' == 'FAIL' FAIL VNF Name: ${vnf_name} is not found.
116 ${vnf_type}= Set Variable ${generic_vnf['vnf-type']}
117 ${relationships}= Set Variable ${generic_vnf['relationship-list']['relationship']}
118 ${relationship_data}= Get Relationship Data ${relationships}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400119 ${customer_id}= Catenate
DR695H910097e2019-05-08 13:55:32 -0400120 :FOR ${r} IN @{relationship_data}
jf98601aa4c9d2017-03-02 16:35:04 -0500121 \ ${service}= Set Variable If '${r['relationship-key']}' == 'service-subscription.service-type' ${r['relationship-value']} ${service}
122 \ ${service_instance_id}= Set Variable If '${r['relationship-key']}' == 'service-instance.service-instance-id' ${r['relationship-value']} ${service_instance_id}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400123 \ ${customer_id}= Set Variable If '${r['relationship-key']}' == 'customer.global-customer-id' ${r['relationship-value']} ${customer_id}
124 ${invariantUUID}= Get Persona Model Id ${service_instance_id} ${service} ${customer_id}
125
126 # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
127 Setup Browser
128 Login To VID GUI
129 ${vf_modules}= Get Module Names from VID ${invariantUUID}
jf986075010a42017-02-22 16:52:54 -0500130 Log ${generic_vnf}
131 Log ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
DR695H70861af2019-07-30 17:25:33 -0400132 Preload Vnf ${service_instance_id} ${vnf_name} ${vnf_type} ${vf_module_name} ${vf_modules} ${vnf} demo ${service}
jf986075010a42017-02-22 16:52:54 -0500133 [Teardown] Close All Browsers
jf98601aa4c9d2017-03-02 16:35:04 -0500134
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400135
jf986075010a42017-02-22 16:52:54 -0500136Get Relationship Data
137 [Arguments] ${relationships}
DR695H910097e2019-05-08 13:55:32 -0400138 :FOR ${r} IN @{relationships}
jf98601aa4c9d2017-03-02 16:35:04 -0500139 \ ${status} ${relationship_data} Run Keyword And Ignore Error Set Variable ${r['relationship-data']}
140 \ Return From Keyword If '${status}' == 'PASS' ${relationship_data}
141
142
Gary Wu76bc74f2018-03-22 13:25:49 -0700143Get Generic VNF By ID
144 [Arguments] ${vnf_id}
DR695Hc6184272019-07-26 15:50:23 -0400145 ${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id} auth=${GLOBAL_AAI_AUTHENTICATION}
Gary Wu76bc74f2018-03-22 13:25:49 -0700146 Should Be Equal As Strings ${resp.status_code} 200
147 [Return] ${resp.json()}
148
jf986075010a42017-02-22 16:52:54 -0500149Get Service Instance
150 [Arguments] ${vnf_name}
DR695Hc6184272019-07-26 15:50:23 -0400151 ${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name} auth=${GLOBAL_AAI_AUTHENTICATION}
jf986075010a42017-02-22 16:52:54 -0500152 Should Be Equal As Strings ${resp.status_code} 200
jf98601aa4c9d2017-03-02 16:35:04 -0500153 [Return] ${resp.json()}
154
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400155Get Persona Model Id
156 [Documentation] Query and Validates A&AI Service Instance
157 [Arguments] ${service_instance_id} ${service_type} ${customer_id}
DR695Hc6184272019-07-26 15:50:23 -0400158 ${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id} auth=${GLOBAL_AAI_AUTHENTICATION}
Jerry Flood9cfbec82017-12-06 11:33:09 -0500159 ${persona_model_id}= Get From DIctionary ${resp.json()['service-instance'][0]} model-invariant-id
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400160 [Return] ${persona_model_id}
161
jf98601aa4c9d2017-03-02 16:35:04 -0500162APPC Mount Point
jf986075010a42017-02-22 16:52:54 -0500163 [Arguments] ${vf_module_name}
164 Run Openstack Auth Request auth
165 ${status} ${stack_info}= Run Keyword and Ignore Error Wait for Stack to Be Deployed auth ${vf_module_name} timeout=120s
166 Run Keyword if '${status}' == 'FAIL' FAIL ${vf_module_name} Stack is not found
167 ${stack_id}= Get From Dictionary ${stack_info} id
jf98601aa4c9d2017-03-02 16:35:04 -0500168 ${server_list}= Get Openstack Servers auth
jf986075010a42017-02-22 16:52:54 -0500169 ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0
Brian Freemand65e2aa2018-07-26 11:13:46 -0500170 ${vnf_id}= Get From Dictionary ${stack_info} vnf_id
DR695H97cb0372019-06-25 11:38:48 -0400171 ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=${GLOBAL_INJECTED_OPENSTACK_PUBLIC_NETWORK}
Brian Freemaneea42d42018-10-25 07:41:54 -0500172 ${appc}= Create Mount Point In APPC ${vnf_id} ${vpg_public_ip}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400173
174Instantiate VNF
Brian Freemand65e2aa2018-07-26 11:13:46 -0500175 [Arguments] ${service} ${vf_module_label}=NULL
DR695H31480282019-07-12 18:34:15 -0400176 ${tenant_id} ${tenant_name}= Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
DR695H1ccabd02019-07-15 17:19:12 -0400177 ${uuid}= Generate UUID4
DR695Hc1103fb2019-07-22 12:37:45 -0400178 ${vf_module_name_list} ${generic_vnfs} ${server_id} ${service_instance_id} ${catalog_resource_ids} ${catalog_service_id}= Orchestrate VNF DemoCust_${uuid} ${service} ${service} ${tenant_id} ${tenant_name}
DR695H1ccabd02019-07-15 17:19:12 -0400179 ${stack_name} = Get From List ${vf_module_name_list} -1
DR695Hc1103fb2019-07-22 12:37:45 -0400180 Save For Delete ${tenant_id} ${tenant_name} ${server_id} DemoCust_${uuid} ${service_instance_id} ${stack_name} ${catalog_service_id} ${catalog_resource_ids}
Brian Freemanecd38602019-05-06 09:48:01 -0500181 :FOR ${vf_module_name} IN @{vf_module_name_list}
DR695H8e7028b2019-07-10 10:13:58 -0400182 \ Log VNF Module Name=${vf_module_name}
DR695Hc0cf6a42019-07-26 16:42:36 -0400183 # Don't get from SO for now due to SO-1186
184 # ${model_invariant_id}= Run SO Get ModelInvariantId ${suite_service_model_name} ${vf_module_label}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500185 ${model_invariant_id}= Set Variable ${EMPTY}
DR695H910097e2019-05-08 13:55:32 -0400186 :FOR ${vf_module} IN @{generic_vnfs}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500187 \ ${generic_vnf}= Get From Dictionary ${generic_vnfs} ${vf_module}
188 \ ${model_invariant_id}= Set Variable If '${vf_module_label}' in '${vf_module}' ${generic_vnf['model-invariant-id']} ${model_invariant_id}
DR695H8e7028b2019-07-10 10:13:58 -0400189 Log Update old vFWCL Policy for ModelInvariantID=${model_invariant_id}
Brian Freemand65e2aa2018-07-26 11:13:46 -0500190 ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id}
Brian Freemanc967dd62019-04-30 09:47:44 -0500191 :FOR ${vf_module_name} IN @{vf_module_name_list}
DR695H8e7028b2019-07-10 10:13:58 -0400192 \ Log APPC Mount Point for VNF Module Name=${vf_module_name}
Brian Freemanc967dd62019-04-30 09:47:44 -0500193 \ ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name}
Michal Ptacek6880b652019-07-08 16:13:02 +0200194 Log Update Tca ControlLoopName
195 Update Tca ControlLoopName ${model_invariant_id}
Brian Freemancc2623b2018-10-29 09:15:15 -0500196
197Instantiate Demo VNF
198 [Arguments] ${service} ${vf_module_label}=NULL
DR695H31480282019-07-12 18:34:15 -0400199 ${tenant_id} ${tenant_name}= Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
200 ${vf_module_name} ${service} ${generic_vnfs}= Orchestrate Demo VNF Demonstration ${service} ${service} ${tenant_id} ${tenant_name}
DR695H8e7028b2019-07-10 10:13:58 -0400201 Log VNF Module Name=${vf_module_name}
DR695Hc0cf6a42019-07-26 16:42:36 -0400202 # Don't get from SO for now due to SO-1186
203 # ${model_invariant_id}= Run SO Get ModelInvariantId ${suite_service_model_name} ${vf_module_label}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500204 ${model_invariant_id}= Set Variable ${EMPTY}
DR695H910097e2019-05-08 13:55:32 -0400205 :FOR ${vf_module} IN @{generic_vnfs}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500206 \ ${generic_vnf}= Get From Dictionary ${generic_vnfs} ${vf_module}
207 \ ${model_invariant_id}= Set Variable If '${vf_module_label}' in '${vf_module}' ${generic_vnf['model-invariant-id']} ${model_invariant_id}
DR695H8e7028b2019-07-10 10:13:58 -0400208 Log ModelInvariantID=${model_invariant_id}
Brian Freemancc2623b2018-10-29 09:15:15 -0500209 ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id}
210 ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name}
Brian Freemanca5e32e2018-07-23 12:47:21 -0500211
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400212
213Save For Delete
214 [Documentation] Create a variable file to be loaded for save for delete
DR695Hc1103fb2019-07-22 12:37:45 -0400215 [Arguments] ${tenant_id} ${tenant_name} ${vvg_server_id} ${customer_name} ${service_instance_id} ${stack_name} ${catalog_service_id} ${catalog_resource_ids}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400216 ${dict}= Create Dictionary
DR695H31480282019-07-12 18:34:15 -0400217 Set To Dictionary ${dict} TENANT_NAME=${tenant_name}
218 Set To Dictionary ${dict} TENANT_ID=${tenant_id}
DR695H1ccabd02019-07-15 17:19:12 -0400219 Set To Dictionary ${dict} CUSTOMER_NAME=${customer_name}
220 Set To Dictionary ${dict} STACK_NAME=${stack_name}
DR695H31480282019-07-12 18:34:15 -0400221 Set To Dictionary ${dict} VVG_SERVER_ID=${vvg_server_id}
DR695H1ccabd02019-07-15 17:19:12 -0400222 Set To Dictionary ${dict} SERVICE_INSTANCE_ID=${service_instance_id}
DR695Hc1103fb2019-07-22 12:37:45 -0400223 Set To Dictionary ${dict} CATALOG_SERVICE_ID=${catalog_service_id}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400224
225 ${vars}= Catenate
226 ${keys}= Get Dictionary Keys ${dict}
DR695H910097e2019-05-08 13:55:32 -0400227 :FOR ${key} IN @{keys}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400228 \ ${value}= Get From Dictionary ${dict} ${key}
229 \ ${vars}= Catenate ${vars}${key} = "${value}"\n
230
231 ${comma}= Catenate
232 ${vars}= Catenate ${vars}CATALOG_RESOURCE_IDS = [
DR695Hc1103fb2019-07-22 12:37:45 -0400233 :FOR ${id} IN @{catalog_resource_ids}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400234 \ ${vars}= Catenate ${vars}${comma} "${id}"
235 \ ${comma}= Catenate ,
236 ${vars}= Catenate ${vars}]\n
DR695H1ccabd02019-07-15 17:19:12 -0400237 OperatingSystem.Create File ${FILE_CACHE}/${stack_name}.py ${vars}
Brian Freemanca5e32e2018-07-23 12:47:21 -0500238 OperatingSystem.Create File ${FILE_CACHE}/lastVNF4HEATBRIGE.py ${vars}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400239
240