blob: 2b271ee296dc4057009577e77590d989aca76c90 [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001*** Settings ***
2Library HeatBridge
3Library Collections
4Library StringTemplater
5Library OperatingSystem
6Library UUID
7
8Resource openstack/keystone_interface.robot
9Resource openstack/heat_interface.robot
10Resource openstack/nova_interface.robot
jf986075010a42017-02-22 16:52:54 -050011Resource openstack/neutron_interface.robot
DR695Hccff30b2017-02-17 18:44:24 -050012Resource aai/aai_interface.robot
13
14*** Variables ***
DR695Hccff30b2017-02-17 18:44:24 -050015${MULTIPART_PATH} /bulkadd
16${NAMED_QUERY_PATH} /aai/search/named-query
jf986099c63292017-03-09 15:28:42 -050017${NAMED_QUERY_TEMPLATE} robot/assets/templates/aai/named_query.template
DR695Hccff30b2017-02-17 18:44:24 -050018
jf986075010a42017-02-22 16:52:54 -050019${BASE_URI} /cloud-infrastructure/cloud-regions/cloud-region/\${cloud}/\${region}
20${IMAGE_URI} ${BASE_URI}/images/image/\${image_id}
21${FLAVOR_URI} ${BASE_URI}/flavors/flavor/\${flavor}
22${VSERVER_URI} ${BASE_URI}/tenants/tenant/\${tenant}/vservers/vserver/\${vserver_id}
23${L_INTERFACE_URI} ${VSERVER_URI}/l-interfaces/l-interface/\${linterface_id}
24
jf986099c63292017-03-09 15:28:42 -050025#******************** Test Case Variables ****************
26${REVERSE_HEATBRIDGE}
27
DR695Hccff30b2017-02-17 18:44:24 -050028
29*** Keywords ***
30Execute Heatbridge
31 [Documentation] Run the Heatbridge against the stack to generate the bulkadd message
32 ... Execute the build add
jf986099c63292017-03-09 15:28:42 -050033 ... Validate the add results by running the named query
Marco Plataniabf2a3ee2018-07-25 15:10:09 -040034 [Arguments] ${stack_name} ${service_instance_id} ${service} ${ipv4_oam_address}
jf986099c63292017-03-09 15:28:42 -050035 Return From Keyword If '${service}' == 'vVG'
DR695Hccff30b2017-02-17 18:44:24 -050036 Run Openstack Auth Request auth
37 ${stack_info}= Wait for Stack to Be Deployed auth ${stack_name}
38 ${stack_id}= Get From Dictionary ${stack_info} id
39 ${tenant_id}= Get From Dictionary ${stack_info} OS::project_id
40 ${vnf_id}= Get From Dictionary ${stack_info} vnf_id
Marco Plataniae0079272018-08-01 12:45:28 -040041 ${KeyIsPresent}= Run Keyword And Return Status Dictionary Should Contain Key ${stack_info} ${ipv4_oam_address}
42 ${ipv4_vnf_address}= Run Keyword If ${KeyIsPresent} Get From Dictionary ${stack_info} ${ipv4_oam_address}
Marco Platania4abf21f2018-10-29 17:22:52 -040043 Run Set VNF Params ${vnf_id} ${ipv4_vnf_address} ACTIVE Active
44 ${keystone_api_version}= Run Keyword If '${GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION}'=='' Get KeystoneAPIVersion
Ah2f3b8462018-10-04 11:56:36 +053045 ... ELSE Set Variable ${GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION}
Marco Platania4abf21f2018-10-29 17:22:52 -040046 ${url} ${path}= Get Keystone Url And Path ${keystone_api_version}
Jerry Flood596db382017-10-27 08:37:37 -040047 ${openstack_identity_url}= Catenate ${url}${path}
jf986099c63292017-03-09 15:28:42 -050048 ${region}= Get Openstack Region
49 ${user} ${pass}= Get Openstack Credentials
Ah2f3b8462018-10-04 11:56:36 +053050 Run Keyword If '${keystone_api_version}'=='v2.0' Init Bridge ${openstack_identity_url} ${user} ${pass} ${tenant_id} ${region} ${GLOBAL_AAI_CLOUD_OWNER}
51 ... ELSE Init Bridge ${openstack_identity_url} ${user} ${pass} ${tenant_id} ${region} ${GLOBAL_AAI_CLOUD_OWNER} ${GLOBAL_INJECTED_OPENSTACK_DOMAIN_ID} ${GLOBAL_INJECTED_OPENSTACK_PROJECT_NAME}
DR695Hccff30b2017-02-17 18:44:24 -050052 ${request}= Bridge Data ${stack_id}
53 Log ${request}
Marco Platania4abf21f2018-10-29 17:22:52 -040054 ${resp}= Run A&AI Put Request ${VERSIONED_INDEX_PATH}${MULTIPART_PATH} ${request}
DR695H11c06932017-03-03 18:12:49 -050055 ${status_string}= Convert To String ${resp.status_code}
56 Should Match Regexp ${status_string} ^(201|200)$
jf986075010a42017-02-22 16:52:54 -050057 ${reverse_heatbridge}= Generate Reverse Heatbridge From Stack Info ${stack_info}
58 Set Test Variable ${REVERSE_HEATBRIDGE} ${reverse_heatbridge}
DR695Hccff30b2017-02-17 18:44:24 -050059 Run Validation Query ${stack_info} ${service}
60
jf986075010a42017-02-22 16:52:54 -050061
DR695Hccff30b2017-02-17 18:44:24 -050062Run Validation Query
jf986099c63292017-03-09 15:28:42 -050063 [Documentation] Run A&AI query to validate the bulk add
DR695Hccff30b2017-02-17 18:44:24 -050064 [Arguments] ${stack_info} ${service}
jf986099c63292017-03-09 15:28:42 -050065 Return from Keyword If '${service}' == ''
DR695Hccff30b2017-02-17 18:44:24 -050066 ${server_name_parameter}= Get From Dictionary ${GLOBAL_VALIDATE_NAME_MAPPING} ${service}
67 ${vserver_name}= Get From Dictionary ${stack_info} ${server_name_parameter}
jf986099c63292017-03-09 15:28:42 -050068 Run Vserver Query ${vserver_name}
DR695Hccff30b2017-02-17 18:44:24 -050069
70Run Vserver Query
jf986099c63292017-03-09 15:28:42 -050071 [Documentation] Run A&AI query to validate the bulk add
DR695Hccff30b2017-02-17 18:44:24 -050072 [Arguments] ${vserver_name}
73 ${dict}= Create Dictionary vserver_name=${vserver_name}
74 ${request}= OperatingSystem.Get File ${NAMED_QUERY_TEMPLATE}
jf986099c63292017-03-09 15:28:42 -050075 ${request}= Template String ${request} ${dict}
DR695Hccff30b2017-02-17 18:44:24 -050076 ${resp}= Run A&AI Post Request ${NAMED_QUERY_PATH} ${request}
jf986099c63292017-03-09 15:28:42 -050077 Should Be Equal As Strings ${resp.status_code} 200
78
79
Marco Plataniabf2a3ee2018-07-25 15:10:09 -040080Run Set VNF Params
81 [Documentation] Run A&A GET and PUT to set prov-status, orchestration status, and ipv4-oam-address
Marco Platania4abf21f2018-10-29 17:22:52 -040082 [Arguments] ${vnf_id} ${ipv4_vnf_address} ${prov_status}=ACTIVE ${orch_status}=Active
Brian Freeman108048b2018-05-22 13:13:05 -050083 ${payload}= Run Get Generic VNF by VnfId ${vnf_id}
84
85 #${payload_json}= evaluate json.loads('''${payload}''') json
86 set to dictionary ${payload} prov-status ${prov_status}
Marco Plataniaf44e6432018-05-31 11:09:14 -040087 set to dictionary ${payload} orchestration-status ${orch_status}
Marco Plataniabf2a3ee2018-07-25 15:10:09 -040088 set to dictionary ${payload} ipv4-oam-address ${ipv4_vnf_address}
Brian Freeman108048b2018-05-22 13:13:05 -050089 ${payload_string}= evaluate json.dumps(${payload}) json
90
91 ${put_resp}= Run A&AI Put Request ${VERSIONED_INDEX_PATH}/network/generic-vnfs/generic-vnf/${vnf_id} ${payload_string}
92 ${status_string}= Convert To String ${put_resp.status_code}
93 Should Match Regexp ${status_string} ^(200|201)$
94 Log To Console Set VNF ProvStatus: ${vnf_id} to ${prov_status}
95
96Run Get Generic VNF By VnfId
97 [Documentation] Get VNF GET Payload with resource ID
98 [Arguments] ${vnf_id}
Brian Freemana55adef2018-05-22 13:54:30 -050099 ${resp}= Run A&AI Get Request ${VERSIONED_INDEX_PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id}
Brian Freeman108048b2018-05-22 13:13:05 -0500100 Should Be Equal As Strings ${resp.status_code} 200
101 [Return] ${resp.json()}
102
DR695Hccff30b2017-02-17 18:44:24 -0500103Execute Reverse Heatbridge
jf986075010a42017-02-22 16:52:54 -0500104 [Documentation] VID has already torn down the stack, reverse HB
105 Return From Keyword If len(${REVERSE_HEATBRIDGE}) == 0
106 :for ${uri} in @{REVERSE_HEATBRIDGE}
107 \ Run Keyword And Ignore Error Delete A&AI Entity ${uri}
DR695Hccff30b2017-02-17 18:44:24 -0500108
jf986099c63292017-03-09 15:28:42 -0500109Generate Reverse Heatbridge From Stack Name
jf986075010a42017-02-22 16:52:54 -0500110 [Arguments] ${stack_name}
DR695Hccff30b2017-02-17 18:44:24 -0500111 Run Openstack Auth Request auth
jf986075010a42017-02-22 16:52:54 -0500112 ${stack_info}= Wait for Stack to Be Deployed auth ${stack_name} timeout=10s
113 ${reverse_heatbridge}= Generate Reverse Heatbridge From Stack Info ${stack_info}
114 [Return] ${reverse_heatbridge}
jf986099c63292017-03-09 15:28:42 -0500115
116Generate Reverse Heatbridge From Stack Info
jf986075010a42017-02-22 16:52:54 -0500117 [Arguments] ${stack_info}
118 ${reverse_heatbridge}= Create List
119 ${stack_name}= Get From Dictionary ${stack_info} name
DR695Hccff30b2017-02-17 18:44:24 -0500120 ${stack_id}= Get From Dictionary ${stack_info} id
121 ${tenant_id}= Get From Dictionary ${stack_info} OS::project_id
jf986099c63292017-03-09 15:28:42 -0500122 ${region}= Get Openstack Region
123 ${keys}= Create Dictionary region=${region} cloud=${GLOBAL_AAI_CLOUD_OWNER} tenant=${tenant_id}
DR695Hccff30b2017-02-17 18:44:24 -0500124 ${stack_resources}= Get Stack Resources auth ${stack_name} ${stack_id}
125 ${resource_list}= Get From Dictionary ${stack_resources} resources
DR695Hccff30b2017-02-17 18:44:24 -0500126 :FOR ${resource} in @{resource_list}
127 \ Log ${resource}
jf986075010a42017-02-22 16:52:54 -0500128 \ Run Keyword If '${resource['resource_type']}' == 'OS::Neutron::Port' Generate Linterface Uri auth ${resource['physical_resource_id']} ${reverse_heatbridge} ${keys}
129 :FOR ${resource} in @{resource_list}
130 \ Log ${resource}
131 \ Run Keyword If '${resource['resource_type']}' == 'OS::Nova::Server' Generate Vserver Uri auth ${resource['physical_resource_id']} ${reverse_heatbridge} ${keys} ${resource_list}
132 [Return] ${reverse_heatbridge}
jf986099c63292017-03-09 15:28:42 -0500133
jf986075010a42017-02-22 16:52:54 -0500134Generate Vserver Uri
DR695Hccff30b2017-02-17 18:44:24 -0500135 [Documentation] Run teardown against the server to generate a message that removes it
jf986075010a42017-02-22 16:52:54 -0500136 [Arguments] ${alias} ${port_id} ${reverse_heatbridge} ${keys} ${resource_list}
137 ${resp}= Get Openstack Server By Id ${alias} ${port_id}
138 Return From Keyword If '${resp.status_code}' != '200'
jf986099c63292017-03-09 15:28:42 -0500139 ${info}= Set Variable ${resp.json()}
140 Set To Dictionary ${keys} vserver_id=${info['server']['id']}
141 Set To Dictionary ${keys} flavor=${info['server']['flavor']['id']}
142 Set To Dictionary ${keys} image_id=${info['server']['image']['id']}
jf986075010a42017-02-22 16:52:54 -0500143 ${uri}= Template String ${VSERVER_URI} ${keys}
144 Append To List ${reverse_heatbridge} ${uri}
145 ${uri}= Template String ${FLAVOR_URI} ${keys}
146 Append To List ${reverse_heatbridge} ${uri}
147 ${uri}= Template String ${IMAGE_URI} ${keys}
148 Append To List ${reverse_heatbridge} ${uri}
149
150Generate Linterface Uri
151 [Documentation] Run teardown against the server to generate a message that removes it
152 [Arguments] ${alias} ${server_id} ${reverse_heatbridge} ${keys}
153 ${resp}= Get Openstack Port By Id ${alias} ${server_id}
154 Return From Keyword If '${resp.status_code}' != '200'
jf986099c63292017-03-09 15:28:42 -0500155 ${info}= Set Variable ${resp.json()}
jf986075010a42017-02-22 16:52:54 -0500156 Set To Dictionary ${keys} vserver_id=${info['port']['device_id']}
157 Set To Dictionary ${keys} linterface_id=${info['port']['name']}
158 ${uri}= Template String ${L_INTERFACE_URI} ${keys}
159 Append To List ${reverse_heatbridge} ${uri}
jf986099c63292017-03-09 15:28:42 -0500160