blob: 02e4ce6903a6ed35372e25216a0bac1f4eca89ee [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
jf986075010a42017-02-22 16:52:54 -05007
8Library UUID
9Library Collections
10Library OperatingSystem
11Library HttpLibrary.HTTP
12Library ExtendedSelenium2Library
13
14*** Variables ***
15
16${ADD_DEMO_CUSTOMER_BODY} robot/assets/templates/aai/add_demo_customer.template
17${AAI_INDEX_PATH} /aai/v8
18${VF_MODULES_NAME} _Demo_VFModules.json
jf98601aa4c9d2017-03-02 16:35:04 -050019${FILE_CACHE} /share/
jf986075010a42017-02-22 16:52:54 -050020
jf98601aa4c9d2017-03-02 16:35:04 -050021*** Keywords ***
jf986075010a42017-02-22 16:52:54 -050022Load Customer And Models
23 [Documentation] Use openECOMP to Orchestrate a service.
24 [Arguments] ${customer_name}
jf986099c63292017-03-09 15:28:42 -050025 Setup Orchestrate VNF ${GLOBAL_AAI_CLOUD_OWNER} SharedNode OwnerType v1 CloudZone
jf986075010a42017-02-22 16:52:54 -050026 Set Test Variable ${CUSTOMER_NAME} ${customer_name}
27 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vFW demoVFW
28 ${status} ${value}= Run Keyword And Ignore Error Distribute Model vLB demoVLB
29 ## MSO polling is 60 second intervals
jf98601aa4c9d2017-03-02 16:35:04 -050030 Sleep 60s
jf986099c63292017-03-09 15:28:42 -050031 ${region}= Get Openstack Region
32 Create Customer For VNF Demo ${CUSTOMER_NAME} ${CUSTOMER_NAME} INFRA ${GLOBAL_AAI_CLOUD_OWNER} ${region} ${TENANT_ID}
jf986075010a42017-02-22 16:52:54 -050033
34Distribute Model
35 [Arguments] ${service} ${modelName}
36 ${service_model_type} ${vnf_type} ${vf_modules}= Model Distribution For Directory ${service} ${modelName}
37 ${jsonString}= Evaluate json.dumps(${vf_modules}) json
38 OperatingSystem.Create File ${FILE_CACHE}${service}${VF_MODULES_NAME} ${jsonString}
jf98601aa4c9d2017-03-02 16:35:04 -050039
jf986075010a42017-02-22 16:52:54 -050040Create Customer For VNF Demo
41 [Documentation] Create demo customer for the demo
jf98601aa4c9d2017-03-02 16:35:04 -050042 [Arguments] ${customer_name} ${customer_id} ${customer_type} ${clouder_owner} ${cloud_region_id} ${tenant_id}
43 ${data_template}= OperatingSystem.Get File ${ADD_DEMO_CUSTOMER_BODY}
44 ${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}
45 Set To Dictionary ${arguments} service1=vFW service2=vLB
46 ${data}= Fill JSON Template ${data_template} ${arguments}
jf986075010a42017-02-22 16:52:54 -050047 ${put_resp}= Run A&AI Put Request ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id} ${data}
48 ${status_string}= Convert To String ${put_resp.status_code}
jf98601aa4c9d2017-03-02 16:35:04 -050049 Should Match Regexp ${status_string} ^(201|412)$
jf986075010a42017-02-22 16:52:54 -050050 Create Service If Not Exists vFW
51 Create Service If Not Exists vLB
52
53
54Preload Demo
55 [Arguments] ${vnf_name} ${vf_module_name}
56 ${vf_modules}= Create List
jf98601aa4c9d2017-03-02 16:35:04 -050057 ${status} ${generic_vnf}= Run Keyword And Ignore Error Get Service Instance ${vnf_name}
jf986075010a42017-02-22 16:52:54 -050058 Run Keyword If '${status}' == 'FAIL' FAIL VNF Name: ${vnf_name} is not found.
59 ${vnf_type}= Set Variable ${generic_vnf['vnf-type']}
60 ${relationships}= Set Variable ${generic_vnf['relationship-list']['relationship']}
61 ${relationship_data}= Get Relationship Data ${relationships}
jf98601aa4c9d2017-03-02 16:35:04 -050062 :for ${r} in @{relationship_data}
63 \ ${service}= Set Variable If '${r['relationship-key']}' == 'service-subscription.service-type' ${r['relationship-value']} ${service}
64 \ ${service_instance_id}= Set Variable If '${r['relationship-key']}' == 'service-instance.service-instance-id' ${r['relationship-value']} ${service_instance_id}
jf986075010a42017-02-22 16:52:54 -050065 ${data}= OperatingSystem.Get File ${FILE_CACHE}${service}${VF_MODULES_NAME}
66 ${vf_modules}= Evaluate json.loads('''${data}''') json
67 Log ${generic_vnf}
68 Log ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
69 Setup Browser
70 Preload Vnf ${service_instance_id} ${vnf_name} ${vnf_type} ${vf_module_name} ${vf_modules} ${service} demo
71 [Teardown] Close All Browsers
jf98601aa4c9d2017-03-02 16:35:04 -050072
jf986075010a42017-02-22 16:52:54 -050073Get Relationship Data
74 [Arguments] ${relationships}
75 :for ${r} in @{relationships}
jf98601aa4c9d2017-03-02 16:35:04 -050076 \ ${status} ${relationship_data} Run Keyword And Ignore Error Set Variable ${r['relationship-data']}
77 \ Return From Keyword If '${status}' == 'PASS' ${relationship_data}
78
79
jf986075010a42017-02-22 16:52:54 -050080Get Service Instance
81 [Arguments] ${vnf_name}
jf98601aa4c9d2017-03-02 16:35:04 -050082 ${resp}= Run A&AI Get Request ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name}
jf986075010a42017-02-22 16:52:54 -050083 Should Be Equal As Strings ${resp.status_code} 200
jf98601aa4c9d2017-03-02 16:35:04 -050084 [Return] ${resp.json()}
85
86APPC Mount Point
jf986075010a42017-02-22 16:52:54 -050087 [Arguments] ${vf_module_name}
88 Run Openstack Auth Request auth
89 ${status} ${stack_info}= Run Keyword and Ignore Error Wait for Stack to Be Deployed auth ${vf_module_name} timeout=120s
90 Run Keyword if '${status}' == 'FAIL' FAIL ${vf_module_name} Stack is not found
91 ${stack_id}= Get From Dictionary ${stack_info} id
jf98601aa4c9d2017-03-02 16:35:04 -050092 ${server_list}= Get Openstack Servers auth
jf986075010a42017-02-22 16:52:54 -050093 ${vpg_name_0}= Get From Dictionary ${stack_info} vpg_name_0
jf98601aa4c9d2017-03-02 16:35:04 -050094 ${vpg_public_ip}= Get Server Ip ${server_list} ${stack_info} vpg_name_0 network_name=public
95 ${vpg_oam_ip}= Get From Dictionary ${stack_info} vpg_private_ip_1
96 ${appc}= Create Mount Point In APPC ${vpg_name_0} ${vpg_oam_ip}