blob: cb41c5732dd01c8d3b0e8a98cc98c8b239fa50ca [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
5Resource test_templates/vnf_orchestration_test_template.robot
6Resource asdc_interface.robot
DR695Hbf5a3a32017-06-30 13:09:57 -04007Resource vid/vid_interface.robot
jf986075010a42017-02-22 16:52:54 -05008
9Library UUID
10Library Collections
11Library OperatingSystem
12Library HttpLibrary.HTTP
13Library ExtendedSelenium2Library
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040014Library RequestsLibrary
jf986075010a42017-02-22 16:52:54 -050015
16*** Variables ***
17
18${ADD_DEMO_CUSTOMER_BODY} robot/assets/templates/aai/add_demo_customer.template
19${AAI_INDEX_PATH} /aai/v8
20${VF_MODULES_NAME} _Demo_VFModules.json
jf98601aa4c9d2017-03-02 16:35:04 -050021${FILE_CACHE} /share/
jf986075010a42017-02-22 16:52:54 -050022
jf98601aa4c9d2017-03-02 16:35:04 -050023*** Keywords ***
jf986075010a42017-02-22 16:52:54 -050024Load Customer And Models
25 [Documentation] Use openECOMP to Orchestrate a service.
26 [Arguments] ${customer_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040027 Load Customer ${customer_name}
28 Load Models ${customer_name}
29
30Load Customer
31 [Documentation] Use openECOMP to Orchestrate a service.
32 [Arguments] ${customer_name}
jf986099c63292017-03-09 15:28:42 -050033 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
jf986075010a42017-02-22 16:52:54 -050034 Set Test Variable ${CUSTOMER_NAME} ${customer_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040035 ${region}= Get Openstack Region
36 Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${TENANT_ID}
37
38Load Models
39 [Documentation] Use openECOMP to Orchestrate a service.
40 [Arguments] ${customer_name}
41 Set Test Variable ${CUSTOMER_NAME} ${customer_name}
jf986075010a42017-02-22 16:52:54 -050042 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vFW demoVFW
43 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB demoVLB
jf986075010a42017-02-22 16:52:54 -050044
45Distribute Model
46 [Arguments] ${service} ${modelName}
47 ${service_model_type} ${vnf_type} ${vf_modules}= Model Distribution For Directory ${service} ${modelName}
jf98601aa4c9d2017-03-02 16:35:04 -050048
jf986075010a42017-02-22 16:52:54 -050049Create Customer For VNF Demo
50 [Documentation] Create demo customer for the demo
jf98601aa4c9d2017-03-02 16:35:04 -050051 [Arguments] ${customer_name} ${customer_id} ${customer_type} ${clouder_owner} ${cloud_region_id} ${tenant_id}
52 ${data_template}= OperatingSystem.Get File ${ADD_DEMO_CUSTOMER_BODY}
53 ${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}
54 Set To Dictionary ${arguments} service1=vFW service2=vLB
55 ${data}= Fill JSON Template ${data_template} ${arguments}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040056 ${put_resp}= Run A&AI Put Request ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id} ${data}
jf986075010a42017-02-22 16:52:54 -050057 ${status_string}= Convert To String ${put_resp.status_code}
jf98601aa4c9d2017-03-02 16:35:04 -050058 Should Match Regexp ${status_string} ^(201|412)$
jf986075010a42017-02-22 16:52:54 -050059 Create Service If Not Exists vFW
60 Create Service If Not Exists vLB
61
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040062Preload User Model
63 [Documentation] Preload the demo data for the passed VNF with the passed module name
jf986075010a42017-02-22 16:52:54 -050064 [Arguments] ${vnf_name} ${vf_module_name}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040065 # Go to A&AI and get information about the VNF we need to preload
jf98601aa4c9d2017-03-02 16:35:04 -050066 ${status} ${generic_vnf}= Run Keyword And Ignore Error Get Service Instance ${vnf_name}
jf986075010a42017-02-22 16:52:54 -050067 Run Keyword If '${status}' == 'FAIL' FAIL VNF Name: ${vnf_name} is not found.
68 ${vnf_type}= Set Variable ${generic_vnf['vnf-type']}
69 ${relationships}= Set Variable ${generic_vnf['relationship-list']['relationship']}
70 ${relationship_data}= Get Relationship Data ${relationships}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040071 ${customer_id}= Catenate
jf98601aa4c9d2017-03-02 16:35:04 -050072 :for ${r} in @{relationship_data}
73 \ ${service}= Set Variable If '${r['relationship-key']}' == 'service-subscription.service-type' ${r['relationship-value']} ${service}
74 \ ${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 -040075 \ ${customer_id}= Set Variable If '${r['relationship-key']}' == 'customer.global-customer-id' ${r['relationship-value']} ${customer_id}
76 ${invariantUUID}= Get Persona Model Id ${service_instance_id} ${service} ${customer_id}
77
78 # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
79 Setup Browser
80 Login To VID GUI
81 ${vf_modules}= Get Module Names from VID ${invariantUUID}
jf986075010a42017-02-22 16:52:54 -050082 Log ${generic_vnf}
83 Log ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
jf986075010a42017-02-22 16:52:54 -050084 Preload Vnf ${service_instance_id} ${vnf_name} ${vnf_type} ${vf_module_name} ${vf_modules} ${service} demo
85 [Teardown] Close All Browsers
jf98601aa4c9d2017-03-02 16:35:04 -050086
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040087
jf986075010a42017-02-22 16:52:54 -050088Get Relationship Data
89 [Arguments] ${relationships}
90 :for ${r} in @{relationships}
jf98601aa4c9d2017-03-02 16:35:04 -050091 \ ${status} ${relationship_data} Run Keyword And Ignore Error Set Variable ${r['relationship-data']}
92 \ Return From Keyword If '${status}' == 'PASS' ${relationship_data}
93
94
jf986075010a42017-02-22 16:52:54 -050095Get Service Instance
96 [Arguments] ${vnf_name}
jf98601aa4c9d2017-03-02 16:35:04 -050097 ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name}
jf986075010a42017-02-22 16:52:54 -050098 Should Be Equal As Strings ${resp.status_code} 200
jf98601aa4c9d2017-03-02 16:35:04 -050099 [Return] ${resp.json()}
100
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400101Get Persona Model Id
102 [Documentation] Query and Validates A&AI Service Instance
103 [Arguments] ${service_instance_id} ${service_type} ${customer_id}
104 ${resp}= Run A&AI Get Request ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id}
105 ${persona_model_id}= Get From DIctionary ${resp.json()['service-instance'][0]} persona-model-id
106 [Return] ${persona_model_id}
107
jf98601aa4c9d2017-03-02 16:35:04 -0500108APPC Mount Point
jf986075010a42017-02-22 16:52:54 -0500109 [Arguments] ${vf_module_name}
110 Run Openstack Auth Request auth
111 ${status} ${stack_info}= Run Keyword and Ignore Error Wait for Stack to Be Deployed auth ${vf_module_name} timeout=120s
112 Run Keyword if '${status}' == 'FAIL' FAIL ${vf_module_name} Stack is not found
113 ${stack_id}= Get From Dictionary ${stack_info} id
jf98601aa4c9d2017-03-02 16:35:04 -0500114 ${server_list}= Get Openstack Servers auth
jf986075010a42017-02-22 16:52:54 -0500115 ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0
jf98601aa4c9d2017-03-02 16:35:04 -0500116 ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=public
117 ${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_private_ip_1
118 ${appc}= Create Mount Point In APPC ${vpg_name_0} ${vpg_oam_ip}
Jerry Floodbe0fa8e2017-04-21 17:31:05 -0400119
120Instantiate VNF
121 [Arguments] ${service}
122 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
123 ${vf_module_name} ${service}= Orchestrate VNF DemoCust ${service} ${service} ${TENANT_NAME}
124 Save For Delete
125 Log to Console Customer Name=${CUSTOMER_NAME}
126 Log to Console VNF Module Name=${vf_module_name}
127
128Save For Delete
129 [Documentation] Create a variable file to be loaded for save for delete
130 ${dict}= Create Dictionary
131 Set To Dictionary ${dict} TENANT_NAME=${TENANT_NAME}
132 Set To Dictionary ${dict} TENANT_ID=${TENANT_ID}
133 Set To Dictionary ${dict} CUSTOMER_NAME=${CUSTOMER_NAME}
134 Set To Dictionary ${dict} STACK_NAME=${STACK_NAME}
135 Set To Dictionary ${dict} SERVICE=${SERVICE}
136 Set To Dictionary ${dict} VVG_SERVER_ID=${VVG_SERVER_ID}
137 Set To Dictionary ${dict} SERVICE_INSTANCE_ID=${SERVICE_INSTANCE_ID}
138
139 Set To Dictionary ${dict} VLB_CLOSED_LOOP_DELETE=${VLB_CLOSED_LOOP_DELETE}
140 Set To Dictionary ${dict} VLB_CLOSED_LOOP_VNF_ID=${VLB_CLOSED_LOOP_VNF_ID}
141
142 Set To Dictionary ${dict} CATALOG_SERVICE_ID=${CATALOG_SERVICE_ID}
143
144 ${vars}= Catenate
145 ${keys}= Get Dictionary Keys ${dict}
146 :for ${key} in @{keys}
147 \ ${value}= Get From Dictionary ${dict} ${key}
148 \ ${vars}= Catenate ${vars}${key} = "${value}"\n
149
150 ${comma}= Catenate
151 ${vars}= Catenate ${vars}CATALOG_RESOURCE_IDS = [
152 :for ${id} in @{CATALOG_RESOURCE_IDS}
153 \ ${vars}= Catenate ${vars}${comma} "${id}"
154 \ ${comma}= Catenate ,
155 ${vars}= Catenate ${vars}]\n
156 OperatingSystem.Create File ${FILE_CACHE}/${STACK_NAME}.py ${vars}
157
158