blob: 938465f7399c8d7b2761aeec25e9e8c5d1524456 [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
7Resource asdc_interface.robot
Brian Freeman391680a2018-08-11 15:20:58 -05008Resource so_interface.robot
DR695Hbf5a3a32017-06-30 13:09:57 -04009Resource vid/vid_interface.robot
Michal Ptacek6880b652019-07-08 16:13:02 +020010Resource consul_interface.robot
11Resource policy_interface.robot
Marco Platania9d992ae2019-01-23 17:20:05 -050012Resource aai/create_availability_zone.robot
jf986075010a42017-02-22 16:52:54 -050013
DR695H18872bc2019-06-13 16:16:52 -040014Library ONAPLibrary.Utilities
jf986075010a42017-02-22 16:52:54 -050015Library Collections
16Library OperatingSystem
DR695H910097e2019-05-08 13:55:32 -040017Library SeleniumLibrary
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040018Library RequestsLibrary
DR695H3bb6cf42019-06-20 15:04:04 -040019Library ONAPLibrary.Templating
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
33 [Documentation] Use openECOMP to Orchestrate a service.
34 [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
43 [Documentation] Use openECOMP to Orchestrate a service.
44 [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
55 [Documentation] Use openECOMP to Orchestrate a service.
56 [Arguments] ${customer_name}
jf986099c63292017-03-09 15:28:42 -050057 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
jf986075010a42017-02-22 16:52:54 -050058 Set Test Variable ${CUSTOMER_NAME} ${customer_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040059 ${region}= Get Openstack Region
60 Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${TENANT_ID}
Brian Freemaneef7c6f2018-11-16 18:42:21 -050061 Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} RegionTlab 50b190410b2a4c229d8a6044a80ab7c1
Marco Platania9d992ae2019-01-23 17:20:05 -050062 Create Availability Zone If Not Exists ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${GLOBAL_AAI_AVAILABILITY_ZONE_NAME}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040063
64Load Models
65 [Documentation] Use openECOMP to Orchestrate a service.
66 [Arguments] ${customer_name}
67 Set Test Variable ${CUSTOMER_NAME} ${customer_name}
DR695H8e7028b2019-07-10 10:13:58 -040068 Log ${\n}Distributing vFWCL
Jerry Flood9cfbec82017-12-06 11:33:09 -050069 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vFWCL ${DEMO_PREFIX}VFWCL
DR695H8e7028b2019-07-10 10:13:58 -040070 Log Distibuting vLB
Jerry Flood1973e2c2017-10-19 18:26:24 -040071 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB ${DEMO_PREFIX}VLB
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
86 [Arguments] ${service} ${modelName}
Brian Freemanbd9b04f2018-07-16 16:23:54 -050087 ${service_model_type} ${vnf_type} ${vf_modules} ${catalog_resources}= Model Distribution For Directory ${service} ${modelName}
jf98601aa4c9d2017-03-02 16:35:04 -050088
bdfreeman1421b2a49512018-11-25 07:32:19 -050089Distribute vCPEResCust Model
90 [Arguments] ${service} ${modelName}
91 ${service_model_type} ${vnf_type} ${vf_modules} ${catalog_resources}= Model Distribution For vCPEResCust Directory ${service} ${modelName}
92
93
jf986075010a42017-02-22 16:52:54 -050094Create Customer For VNF Demo
95 [Documentation] Create demo customer for the demo
jf98601aa4c9d2017-03-02 16:35:04 -050096 [Arguments] ${customer_name} ${customer_id} ${customer_type} ${clouder_owner} ${cloud_region_id} ${tenant_id}
Brian Freeman0aebc3a2018-09-14 11:22:43 -050097 Create Service If Not Exists vFW
Jerry Flood9cfbec82017-12-06 11:33:09 -050098 Create Service If Not Exists vFWCL
Jerry Flood7762dd02017-10-26 06:21:03 -040099 Create Service If Not Exists vLB
100 Create Service If Not Exists vCPE
101 Create Service If Not Exists vIMS
Brian Freeman0aebc3a2018-09-14 11:22:43 -0500102 Create Service If Not Exists gNB
jf98601aa4c9d2017-03-02 16:35:04 -0500103 ${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 -0500104 Set To Dictionary ${arguments} service1=vFWCL service2=vLB service3=vCPE service4=vIMS service5=gNB service6=vFW
DR695H3bb6cf42019-06-20 15:04:04 -0400105 Create Environment aai ${GLOBAL_TEMPLATE_FOLDER}
106 ${data}= Apply Template aai ${ADD_DEMO_CUSTOMER_BODY} ${arguments}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400107 ${put_resp}= Run A&AI Put Request ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id} ${data}
jf986075010a42017-02-22 16:52:54 -0500108 ${status_string}= Convert To String ${put_resp.status_code}
Jerry Floodf225e142017-10-11 16:19:04 -0400109 Should Match Regexp ${status_string} ^(200|201|412)$
jf986075010a42017-02-22 16:52:54 -0500110
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400111Preload User Model
112 [Documentation] Preload the demo data for the passed VNF with the passed module name
jf986075010a42017-02-22 16:52:54 -0500113 [Arguments] ${vnf_name} ${vf_module_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400114 # Go to A&AI and get information about the VNF we need to preload
jf98601aa4c9d2017-03-02 16:35:04 -0500115 ${status} ${generic_vnf}= Run Keyword And Ignore Error Get Service Instance ${vnf_name}
jf986075010a42017-02-22 16:52:54 -0500116 Run Keyword If '${status}' == 'FAIL' FAIL VNF Name: ${vnf_name} is not found.
117 ${vnf_type}= Set Variable ${generic_vnf['vnf-type']}
118 ${relationships}= Set Variable ${generic_vnf['relationship-list']['relationship']}
119 ${relationship_data}= Get Relationship Data ${relationships}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400120 ${customer_id}= Catenate
DR695H910097e2019-05-08 13:55:32 -0400121 :FOR ${r} IN @{relationship_data}
jf98601aa4c9d2017-03-02 16:35:04 -0500122 \ ${service}= Set Variable If '${r['relationship-key']}' == 'service-subscription.service-type' ${r['relationship-value']} ${service}
123 \ ${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 -0400124 \ ${customer_id}= Set Variable If '${r['relationship-key']}' == 'customer.global-customer-id' ${r['relationship-value']} ${customer_id}
125 ${invariantUUID}= Get Persona Model Id ${service_instance_id} ${service} ${customer_id}
126
127 # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
128 Setup Browser
129 Login To VID GUI
130 ${vf_modules}= Get Module Names from VID ${invariantUUID}
jf986075010a42017-02-22 16:52:54 -0500131 Log ${generic_vnf}
132 Log ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
jf986075010a42017-02-22 16:52:54 -0500133 Preload Vnf ${service_instance_id} ${vnf_name} ${vnf_type} ${vf_module_name} ${vf_modules} ${service} demo
134 [Teardown] Close All Browsers
jf98601aa4c9d2017-03-02 16:35:04 -0500135
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400136
jf986075010a42017-02-22 16:52:54 -0500137Get Relationship Data
138 [Arguments] ${relationships}
DR695H910097e2019-05-08 13:55:32 -0400139 :FOR ${r} IN @{relationships}
jf98601aa4c9d2017-03-02 16:35:04 -0500140 \ ${status} ${relationship_data} Run Keyword And Ignore Error Set Variable ${r['relationship-data']}
141 \ Return From Keyword If '${status}' == 'PASS' ${relationship_data}
142
143
Gary Wu76bc74f2018-03-22 13:25:49 -0700144Get Generic VNF By ID
145 [Arguments] ${vnf_id}
146 ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id}
147 Should Be Equal As Strings ${resp.status_code} 200
148 [Return] ${resp.json()}
149
jf986075010a42017-02-22 16:52:54 -0500150Get Service Instance
151 [Arguments] ${vnf_name}
jf98601aa4c9d2017-03-02 16:35:04 -0500152 ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name}
jf986075010a42017-02-22 16:52:54 -0500153 Should Be Equal As Strings ${resp.status_code} 200
jf98601aa4c9d2017-03-02 16:35:04 -0500154 [Return] ${resp.json()}
155
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400156Get Persona Model Id
157 [Documentation] Query and Validates A&AI Service Instance
158 [Arguments] ${service_instance_id} ${service_type} ${customer_id}
159 ${resp}= Run A&AI Get Request ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id}
Jerry Flood9cfbec82017-12-06 11:33:09 -0500160 ${persona_model_id}= Get From DIctionary ${resp.json()['service-instance'][0]} model-invariant-id
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400161 [Return] ${persona_model_id}
162
jf98601aa4c9d2017-03-02 16:35:04 -0500163APPC Mount Point
jf986075010a42017-02-22 16:52:54 -0500164 [Arguments] ${vf_module_name}
165 Run Openstack Auth Request auth
166 ${status} ${stack_info}= Run Keyword and Ignore Error Wait for Stack to Be Deployed auth ${vf_module_name} timeout=120s
167 Run Keyword if '${status}' == 'FAIL' FAIL ${vf_module_name} Stack is not found
168 ${stack_id}= Get From Dictionary ${stack_info} id
jf98601aa4c9d2017-03-02 16:35:04 -0500169 ${server_list}= Get Openstack Servers auth
jf986075010a42017-02-22 16:52:54 -0500170 ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0
Brian Freemand65e2aa2018-07-26 11:13:46 -0500171 ${vnf_id}= Get From Dictionary ${stack_info} vnf_id
DR695H97cb0372019-06-25 11:38:48 -0400172 ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=${GLOBAL_INJECTED_OPENSTACK_PUBLIC_NETWORK}
Brian Freemane147b222019-05-14 22:14:01 -0500173
174 # vpg_oam_ip is no longer needed - use vpg_public_ip
175 #${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_private_ip_1
176 #${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_onap_private_ip_0
Brian Freemand65e2aa2018-07-26 11:13:46 -0500177 #${appc}= Create Mount Point In APPC ${vpg_name_0} ${vpg_oam_ip}
Brian Freemaneea42d42018-10-25 07:41:54 -0500178 #${appc}= Create Mount Point In APPC ${vnf_id} ${vpg_oam_ip}
Brian Freemane147b222019-05-14 22:14:01 -0500179
Brian Freemaneea42d42018-10-25 07:41:54 -0500180 ${appc}= Create Mount Point In APPC ${vnf_id} ${vpg_public_ip}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400181
182Instantiate VNF
Brian Freemand65e2aa2018-07-26 11:13:46 -0500183 [Arguments] ${service} ${vf_module_label}=NULL
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400184 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
Brian Freemanc967dd62019-04-30 09:47:44 -0500185 ${vf_module_name_list} ${service} ${generic_vnfs}= Orchestrate VNF DemoCust ${service} ${service} ${TENANT_NAME}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400186 Save For Delete
DR695H8e7028b2019-07-10 10:13:58 -0400187 Log Customer Name=${CUSTOMER_NAME}
Brian Freemanecd38602019-05-06 09:48:01 -0500188 :FOR ${vf_module_name} IN @{vf_module_name_list}
DR695H8e7028b2019-07-10 10:13:58 -0400189 \ Log VNF Module Name=${vf_module_name}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500190 # Don't get from MSO for now due to SO-1186
191 # ${model_invariant_id}= Run MSO Get ModelInvariantId ${SUITE_SERVICE_MODEL_NAME} ${vf_module_label}
192 ${model_invariant_id}= Set Variable ${EMPTY}
DR695H910097e2019-05-08 13:55:32 -0400193 :FOR ${vf_module} IN @{generic_vnfs}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500194 \ ${generic_vnf}= Get From Dictionary ${generic_vnfs} ${vf_module}
195 \ ${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 -0400196 Log Update old vFWCL Policy for ModelInvariantID=${model_invariant_id}
Brian Freemand65e2aa2018-07-26 11:13:46 -0500197 ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id}
Brian Freemanc967dd62019-04-30 09:47:44 -0500198 :FOR ${vf_module_name} IN @{vf_module_name_list}
DR695H8e7028b2019-07-10 10:13:58 -0400199 \ Log APPC Mount Point for VNF Module Name=${vf_module_name}
Brian Freemanc967dd62019-04-30 09:47:44 -0500200 \ ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name}
Michal Ptacek6880b652019-07-08 16:13:02 +0200201 Log Update Tca ControlLoopName
202 Update Tca ControlLoopName ${model_invariant_id}
Brian Freemancc2623b2018-10-29 09:15:15 -0500203
204Instantiate Demo VNF
205 [Arguments] ${service} ${vf_module_label}=NULL
206 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500207 ${vf_module_name} ${service} ${generic_vnfs}= Orchestrate Demo VNF Demonstration ${service} ${service} ${TENANT_NAME}
Brian Freemancc2623b2018-10-29 09:15:15 -0500208 #Save For Delete
DR695H8e7028b2019-07-10 10:13:58 -0400209 Log Customer Name=${CUSTOMER_NAME}
210 Log VNF Module Name=${vf_module_name}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500211 # Don't get from MSO for now due to SO-1186
212 # ${model_invariant_id}= Run MSO Get ModelInvariantId ${SUITE_SERVICE_MODEL_NAME} ${vf_module_label}
213 ${model_invariant_id}= Set Variable ${EMPTY}
DR695H910097e2019-05-08 13:55:32 -0400214 :FOR ${vf_module} IN @{generic_vnfs}
Brian Freemanbc02e3c2018-11-20 16:07:42 -0500215 \ ${generic_vnf}= Get From Dictionary ${generic_vnfs} ${vf_module}
216 \ ${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 -0400217 Log ModelInvariantID=${model_invariant_id}
Brian Freemancc2623b2018-10-29 09:15:15 -0500218 ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id}
219 ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name}
Brian Freemanca5e32e2018-07-23 12:47:21 -0500220
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400221
222Save For Delete
223 [Documentation] Create a variable file to be loaded for save for delete
224 ${dict}= Create Dictionary
225 Set To Dictionary ${dict} TENANT_NAME=${TENANT_NAME}
226 Set To Dictionary ${dict} TENANT_ID=${TENANT_ID}
227 Set To Dictionary ${dict} CUSTOMER_NAME=${CUSTOMER_NAME}
228 Set To Dictionary ${dict} STACK_NAME=${STACK_NAME}
229 Set To Dictionary ${dict} SERVICE=${SERVICE}
230 Set To Dictionary ${dict} VVG_SERVER_ID=${VVG_SERVER_ID}
231 Set To Dictionary ${dict} SERVICE_INSTANCE_ID=${SERVICE_INSTANCE_ID}
232
233 Set To Dictionary ${dict} VLB_CLOSED_LOOP_DELETE=${VLB_CLOSED_LOOP_DELETE}
234 Set To Dictionary ${dict} VLB_CLOSED_LOOP_VNF_ID=${VLB_CLOSED_LOOP_VNF_ID}
235
236 Set To Dictionary ${dict} CATALOG_SERVICE_ID=${CATALOG_SERVICE_ID}
237
238 ${vars}= Catenate
239 ${keys}= Get Dictionary Keys ${dict}
DR695H910097e2019-05-08 13:55:32 -0400240 :FOR ${key} IN @{keys}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400241 \ ${value}= Get From Dictionary ${dict} ${key}
242 \ ${vars}= Catenate ${vars}${key} = "${value}"\n
243
244 ${comma}= Catenate
245 ${vars}= Catenate ${vars}CATALOG_RESOURCE_IDS = [
DR695H910097e2019-05-08 13:55:32 -0400246 :FOR ${id} IN @{CATALOG_RESOURCE_IDS}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400247 \ ${vars}= Catenate ${vars}${comma} "${id}"
248 \ ${comma}= Catenate ,
249 ${vars}= Catenate ${vars}]\n
250 OperatingSystem.Create File ${FILE_CACHE}/${STACK_NAME}.py ${vars}
Brian Freemanca5e32e2018-07-23 12:47:21 -0500251 OperatingSystem.Create File ${FILE_CACHE}/lastVNF4HEATBRIGE.py ${vars}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400252
253