jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 1 | *** Settings *** |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 2 | Documentation This test template encapsulates the VNF Orchestration use case. |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 3 | |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 4 | Resource test_templates/model_test_template.robot |
| 5 | Resource test_templates/vnf_orchestration_test_template.robot |
| 6 | Resource asdc_interface.robot |
Brian Freeman | 391680a | 2018-08-11 15:20:58 -0500 | [diff] [blame] | 7 | Resource so_interface.robot |
DR695H | bf5a3a3 | 2017-06-30 13:09:57 -0400 | [diff] [blame] | 8 | Resource vid/vid_interface.robot |
Brian Freeman | ca5e32e | 2018-07-23 12:47:21 -0500 | [diff] [blame] | 9 | Resource policy_interface.robot |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 10 | |
| 11 | Library UUID |
| 12 | Library Collections |
| 13 | Library OperatingSystem |
| 14 | Library HttpLibrary.HTTP |
| 15 | Library ExtendedSelenium2Library |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 16 | Library RequestsLibrary |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 17 | |
| 18 | *** Variables *** |
| 19 | |
| 20 | ${ADD_DEMO_CUSTOMER_BODY} robot/assets/templates/aai/add_demo_customer.template |
| 21 | ${AAI_INDEX_PATH} /aai/v8 |
| 22 | ${VF_MODULES_NAME} _Demo_VFModules.json |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 23 | ${FILE_CACHE} /share/ |
Jerry Flood | 1973e2c | 2017-10-19 18:26:24 -0400 | [diff] [blame] | 24 | ${DEMO_PREFIX} demo |
Brian Freeman | d65e2aa | 2018-07-26 11:13:46 -0500 | [diff] [blame] | 25 | ${VPKG_MODULE_LABEL} base_vpkg |
Jerry Flood | 1973e2c | 2017-10-19 18:26:24 -0400 | [diff] [blame] | 26 | |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 27 | |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 28 | *** Keywords *** |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 29 | Load Customer And Models |
| 30 | [Documentation] Use openECOMP to Orchestrate a service. |
| 31 | [Arguments] ${customer_name} |
Brian Freeman | 76454ae | 2018-04-23 15:51:31 -0500 | [diff] [blame] | 32 | Load OwningEntity lineOfBusiness LOB-${customer_name} |
| 33 | Load OwningEntity platform Platform-${customer_name} |
| 34 | Load OwningEntity project Project-${customer_name} |
| 35 | Load OwningEntity owningEntity OE-${customer_name} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 36 | Load Customer ${customer_name} |
| 37 | Load Models ${customer_name} |
| 38 | |
Sonsino, Ofir (os0695) | b077585 | 2018-04-22 15:33:47 +0300 | [diff] [blame] | 39 | Load OwningEntity |
| 40 | [Documentation] Use openECOMP to Orchestrate a service. |
| 41 | [Arguments] ${parameter} ${name} |
Brian Freeman | 76454ae | 2018-04-23 15:51:31 -0500 | [diff] [blame] | 42 | ${data_path}= Set Variable /maintenance/category_parameter/${parameter} |
| 43 | ${vid_data}= Set Variable {"options":["${name}"]} |
| 44 | ${auth}= Create List ${GLOBAL_VID_USERNAME} ${GLOBAL_VID_PASSWORD} |
| 45 | Log Creating session ${data_path} |
| 46 | ${session}= Create Session vid ${VID_ENDPOINT}${VID_ENV} auth=${auth} |
| 47 | ${uuid}= Generate UUID |
| 48 | ${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} |
| 49 | ${resp}= Post Request vid ${data_path} data=${vid_data} headers=${headers} |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 50 | |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 51 | Load Customer |
| 52 | [Documentation] Use openECOMP to Orchestrate a service. |
| 53 | [Arguments] ${customer_name} |
jf9860 | 99c6329 | 2017-03-09 15:28:42 -0500 | [diff] [blame] | 54 | Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 55 | Set Test Variable ${CUSTOMER_NAME} ${customer_name} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 56 | ${region}= Get Openstack Region |
| 57 | Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${TENANT_ID} |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 58 | Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} RegionTlab 50b190410b2a4c229d8a6044a80ab7c1 |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 59 | |
| 60 | Load Models |
| 61 | [Documentation] Use openECOMP to Orchestrate a service. |
| 62 | [Arguments] ${customer_name} |
| 63 | Set Test Variable ${CUSTOMER_NAME} ${customer_name} |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 64 | Log To Console Distibuting vFWCL |
Jerry Flood | 9cfbec8 | 2017-12-06 11:33:09 -0500 | [diff] [blame] | 65 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vFWCL ${DEMO_PREFIX}VFWCL |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 66 | Log To Console Distibuting vLB |
Jerry Flood | 1973e2c | 2017-10-19 18:26:24 -0400 | [diff] [blame] | 67 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB ${DEMO_PREFIX}VLB |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 68 | ##${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPE ${DEMO_PREFIX}VCPE |
Jerry Flood | 1973e2c | 2017-10-19 18:26:24 -0400 | [diff] [blame] | 69 | ##${status} ${value}= Run Keyword And Ignore Error Distribute Model vIMS ${DEMO_PREFIX}VIMS |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 70 | Log To Console Distibuting vCPEInfra |
| 71 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEInfra ${DEMO_PREFIX}VCPEInfra |
| 72 | Log To Console Distibuting vCPEvBNG |
| 73 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvBNG ${DEMO_PREFIX}VCPEvBNG |
| 74 | Log To Console Distibuting vCPEvBRGEMU |
| 75 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvBRGEMU ${DEMO_PREFIX}VCPEvBRGEMU |
| 76 | Log To Console Distibuting vCPEvGMUX |
| 77 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvGMUX ${DEMO_PREFIX}VCPEvGMUX |
| 78 | Log To Console Distibuting vCPEvGW (this is not vCPEResCust service) |
| 79 | ${status} ${value}= Run Keyword And Ignore Error Distribute Model vCPEvGW ${DEMO_PREFIX}VCPEvGW |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 80 | |
| 81 | Distribute Model |
| 82 | [Arguments] ${service} ${modelName} |
Brian Freeman | bd9b04f | 2018-07-16 16:23:54 -0500 | [diff] [blame] | 83 | ${service_model_type} ${vnf_type} ${vf_modules} ${catalog_resources}= Model Distribution For Directory ${service} ${modelName} |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 84 | |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 85 | Create Customer For VNF Demo |
| 86 | [Documentation] Create demo customer for the demo |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 87 | [Arguments] ${customer_name} ${customer_id} ${customer_type} ${clouder_owner} ${cloud_region_id} ${tenant_id} |
Brian Freeman | 0aebc3a | 2018-09-14 11:22:43 -0500 | [diff] [blame] | 88 | Create Service If Not Exists vFW |
Jerry Flood | 9cfbec8 | 2017-12-06 11:33:09 -0500 | [diff] [blame] | 89 | Create Service If Not Exists vFWCL |
Jerry Flood | 7762dd0 | 2017-10-26 06:21:03 -0400 | [diff] [blame] | 90 | Create Service If Not Exists vLB |
| 91 | Create Service If Not Exists vCPE |
| 92 | Create Service If Not Exists vIMS |
Brian Freeman | 0aebc3a | 2018-09-14 11:22:43 -0500 | [diff] [blame] | 93 | Create Service If Not Exists gNB |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 94 | ${data_template}= OperatingSystem.Get File ${ADD_DEMO_CUSTOMER_BODY} |
| 95 | ${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 Freeman | 858f105 | 2018-09-14 12:36:40 -0500 | [diff] [blame] | 96 | Set To Dictionary ${arguments} service1=vFWCL service2=vLB service3=vCPE service4=vIMS service5=gNB service6=vFW |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 97 | ${data}= Fill JSON Template ${data_template} ${arguments} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 98 | ${put_resp}= Run A&AI Put Request ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id} ${data} |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 99 | ${status_string}= Convert To String ${put_resp.status_code} |
Jerry Flood | f225e14 | 2017-10-11 16:19:04 -0400 | [diff] [blame] | 100 | Should Match Regexp ${status_string} ^(200|201|412)$ |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 101 | |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 102 | Preload User Model |
| 103 | [Documentation] Preload the demo data for the passed VNF with the passed module name |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 104 | [Arguments] ${vnf_name} ${vf_module_name} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 105 | # Go to A&AI and get information about the VNF we need to preload |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 106 | ${status} ${generic_vnf}= Run Keyword And Ignore Error Get Service Instance ${vnf_name} |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 107 | Run Keyword If '${status}' == 'FAIL' FAIL VNF Name: ${vnf_name} is not found. |
| 108 | ${vnf_type}= Set Variable ${generic_vnf['vnf-type']} |
| 109 | ${relationships}= Set Variable ${generic_vnf['relationship-list']['relationship']} |
| 110 | ${relationship_data}= Get Relationship Data ${relationships} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 111 | ${customer_id}= Catenate |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 112 | :for ${r} in @{relationship_data} |
| 113 | \ ${service}= Set Variable If '${r['relationship-key']}' == 'service-subscription.service-type' ${r['relationship-value']} ${service} |
| 114 | \ ${service_instance_id}= Set Variable If '${r['relationship-key']}' == 'service-instance.service-instance-id' ${r['relationship-value']} ${service_instance_id} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 115 | \ ${customer_id}= Set Variable If '${r['relationship-key']}' == 'customer.global-customer-id' ${r['relationship-value']} ${customer_id} |
| 116 | ${invariantUUID}= Get Persona Model Id ${service_instance_id} ${service} ${customer_id} |
| 117 | |
| 118 | # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI |
| 119 | Setup Browser |
| 120 | Login To VID GUI |
| 121 | ${vf_modules}= Get Module Names from VID ${invariantUUID} |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 122 | Log ${generic_vnf} |
| 123 | Log ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service} |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 124 | Preload Vnf ${service_instance_id} ${vnf_name} ${vnf_type} ${vf_module_name} ${vf_modules} ${service} demo |
| 125 | [Teardown] Close All Browsers |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 126 | |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 127 | |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 128 | Get Relationship Data |
| 129 | [Arguments] ${relationships} |
| 130 | :for ${r} in @{relationships} |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 131 | \ ${status} ${relationship_data} Run Keyword And Ignore Error Set Variable ${r['relationship-data']} |
| 132 | \ Return From Keyword If '${status}' == 'PASS' ${relationship_data} |
| 133 | |
| 134 | |
Gary Wu | 76bc74f | 2018-03-22 13:25:49 -0700 | [diff] [blame] | 135 | Get Generic VNF By ID |
| 136 | [Arguments] ${vnf_id} |
| 137 | ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id} |
| 138 | Should Be Equal As Strings ${resp.status_code} 200 |
| 139 | [Return] ${resp.json()} |
| 140 | |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 141 | Get Service Instance |
| 142 | [Arguments] ${vnf_name} |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 143 | ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name} |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 144 | Should Be Equal As Strings ${resp.status_code} 200 |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 145 | [Return] ${resp.json()} |
| 146 | |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 147 | Get Persona Model Id |
| 148 | [Documentation] Query and Validates A&AI Service Instance |
| 149 | [Arguments] ${service_instance_id} ${service_type} ${customer_id} |
| 150 | ${resp}= Run A&AI Get Request ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id} |
Jerry Flood | 9cfbec8 | 2017-12-06 11:33:09 -0500 | [diff] [blame] | 151 | ${persona_model_id}= Get From DIctionary ${resp.json()['service-instance'][0]} model-invariant-id |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 152 | [Return] ${persona_model_id} |
| 153 | |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 154 | APPC Mount Point |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 155 | [Arguments] ${vf_module_name} |
| 156 | Run Openstack Auth Request auth |
| 157 | ${status} ${stack_info}= Run Keyword and Ignore Error Wait for Stack to Be Deployed auth ${vf_module_name} timeout=120s |
| 158 | Run Keyword if '${status}' == 'FAIL' FAIL ${vf_module_name} Stack is not found |
| 159 | ${stack_id}= Get From Dictionary ${stack_info} id |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 160 | ${server_list}= Get Openstack Servers auth |
jf9860 | 75010a4 | 2017-02-22 16:52:54 -0500 | [diff] [blame] | 161 | ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0 |
Brian Freeman | d65e2aa | 2018-07-26 11:13:46 -0500 | [diff] [blame] | 162 | ${vnf_id}= Get From Dictionary ${stack_info} vnf_id |
jf9860 | 1aa4c9d | 2017-03-02 16:35:04 -0500 | [diff] [blame] | 163 | ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=public |
| 164 | ${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_private_ip_1 |
Brian Freeman | d65e2aa | 2018-07-26 11:13:46 -0500 | [diff] [blame] | 165 | #${appc}= Create Mount Point In APPC ${vpg_name_0} ${vpg_oam_ip} |
Brian Freeman | eea42d4 | 2018-10-25 07:41:54 -0500 | [diff] [blame] | 166 | #${appc}= Create Mount Point In APPC ${vnf_id} ${vpg_oam_ip} |
| 167 | ${appc}= Create Mount Point In APPC ${vnf_id} ${vpg_public_ip} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 168 | |
| 169 | Instantiate VNF |
Brian Freeman | d65e2aa | 2018-07-26 11:13:46 -0500 | [diff] [blame] | 170 | [Arguments] ${service} ${vf_module_label}=NULL |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 171 | Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 172 | ${vf_module_name} ${service}= Orchestrate VNF DemoCust ${service} ${service} ${TENANT_NAME} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 173 | Save For Delete |
| 174 | Log to Console Customer Name=${CUSTOMER_NAME} |
| 175 | Log to Console VNF Module Name=${vf_module_name} |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 176 | ${model_invariant_id}= Run MSO Get ModelInvariantId ${SUITE_SERVICE_MODEL_NAME} ${vf_module_label} |
Brian Freeman | ca5e32e | 2018-07-23 12:47:21 -0500 | [diff] [blame] | 177 | Log to Console ModelInvariantID=${model_invariant_id} |
Brian Freeman | d65e2aa | 2018-07-26 11:13:46 -0500 | [diff] [blame] | 178 | ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id} |
| 179 | ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name} |
Brian Freeman | cc2623b | 2018-10-29 09:15:15 -0500 | [diff] [blame] | 180 | |
| 181 | Instantiate Demo VNF |
| 182 | [Arguments] ${service} ${vf_module_label}=NULL |
| 183 | Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 184 | ${vf_module_name} ${service}= Orchestrate Demo VNF Demonstration ${service} ${service} ${TENANT_NAME} |
Brian Freeman | cc2623b | 2018-10-29 09:15:15 -0500 | [diff] [blame] | 185 | #Save For Delete |
| 186 | Log to Console Customer Name=${CUSTOMER_NAME} |
| 187 | Log to Console VNF Module Name=${vf_module_name} |
Brian Freeman | eef7c6f | 2018-11-16 18:42:21 -0500 | [diff] [blame] | 188 | ${model_invariant_id}= Run MSO Get ModelInvariantId ${SUITE_SERVICE_MODEL_NAME} ${vf_module_label} |
Brian Freeman | cc2623b | 2018-10-29 09:15:15 -0500 | [diff] [blame] | 189 | Log to Console ModelInvariantID=${model_invariant_id} |
| 190 | ${status} ${value}= Run Keyword And Ignore Error Update vVFWCL Policy ${model_invariant_id} |
| 191 | ${status} ${value}= Run Keyword And Ignore Error APPC Mount Point ${vf_module_name} |
Brian Freeman | ca5e32e | 2018-07-23 12:47:21 -0500 | [diff] [blame] | 192 | |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 193 | |
| 194 | Save For Delete |
| 195 | [Documentation] Create a variable file to be loaded for save for delete |
| 196 | ${dict}= Create Dictionary |
| 197 | Set To Dictionary ${dict} TENANT_NAME=${TENANT_NAME} |
| 198 | Set To Dictionary ${dict} TENANT_ID=${TENANT_ID} |
| 199 | Set To Dictionary ${dict} CUSTOMER_NAME=${CUSTOMER_NAME} |
| 200 | Set To Dictionary ${dict} STACK_NAME=${STACK_NAME} |
| 201 | Set To Dictionary ${dict} SERVICE=${SERVICE} |
| 202 | Set To Dictionary ${dict} VVG_SERVER_ID=${VVG_SERVER_ID} |
| 203 | Set To Dictionary ${dict} SERVICE_INSTANCE_ID=${SERVICE_INSTANCE_ID} |
| 204 | |
| 205 | Set To Dictionary ${dict} VLB_CLOSED_LOOP_DELETE=${VLB_CLOSED_LOOP_DELETE} |
| 206 | Set To Dictionary ${dict} VLB_CLOSED_LOOP_VNF_ID=${VLB_CLOSED_LOOP_VNF_ID} |
| 207 | |
| 208 | Set To Dictionary ${dict} CATALOG_SERVICE_ID=${CATALOG_SERVICE_ID} |
| 209 | |
| 210 | ${vars}= Catenate |
| 211 | ${keys}= Get Dictionary Keys ${dict} |
| 212 | :for ${key} in @{keys} |
| 213 | \ ${value}= Get From Dictionary ${dict} ${key} |
| 214 | \ ${vars}= Catenate ${vars}${key} = "${value}"\n |
| 215 | |
| 216 | ${comma}= Catenate |
| 217 | ${vars}= Catenate ${vars}CATALOG_RESOURCE_IDS = [ |
| 218 | :for ${id} in @{CATALOG_RESOURCE_IDS} |
| 219 | \ ${vars}= Catenate ${vars}${comma} "${id}" |
| 220 | \ ${comma}= Catenate , |
| 221 | ${vars}= Catenate ${vars}]\n |
| 222 | OperatingSystem.Create File ${FILE_CACHE}/${STACK_NAME}.py ${vars} |
Brian Freeman | ca5e32e | 2018-07-23 12:47:21 -0500 | [diff] [blame] | 223 | OperatingSystem.Create File ${FILE_CACHE}/lastVNF4HEATBRIGE.py ${vars} |
Jerry Flood | be0fa8e | 2017-04-21 17:31:05 -0400 | [diff] [blame] | 224 | |
| 225 | |