blob: 972c59de3edb396bd6c1b7ba0c1b124413b96a4f [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
17${NAMED_QUERY_TEMPLATE} robot/assets/templates/aai/named_query.template
18${REVERSE_HEATBRIDGE}
19
jf986075010a42017-02-22 16:52:54 -050020${BASE_URI} /cloud-infrastructure/cloud-regions/cloud-region/\${cloud}/\${region}
21${IMAGE_URI} ${BASE_URI}/images/image/\${image_id}
22${FLAVOR_URI} ${BASE_URI}/flavors/flavor/\${flavor}
23${VSERVER_URI} ${BASE_URI}/tenants/tenant/\${tenant}/vservers/vserver/\${vserver_id}
24${L_INTERFACE_URI} ${VSERVER_URI}/l-interfaces/l-interface/\${linterface_id}
25
26
DR695Hccff30b2017-02-17 18:44:24 -050027
28*** Keywords ***
29Execute Heatbridge
30 [Documentation] Run the Heatbridge against the stack to generate the bulkadd message
31 ... Execute the build add
32 ... Validate the add results by running the named query
33 [Arguments] ${stack_name} ${service_instance_id} ${service}
34 Return From Keyword If '${service}' == 'vVG'
35 Run Openstack Auth Request auth
36 ${stack_info}= Wait for Stack to Be Deployed auth ${stack_name}
37 ${stack_id}= Get From Dictionary ${stack_info} id
38 ${tenant_id}= Get From Dictionary ${stack_info} OS::project_id
39 ${vnf_id}= Get From Dictionary ${stack_info} vnf_id
40 ${openstack_identity_url}= Catenate ${GLOBAL_OPENSTACK_KEYSTONE_SERVER}/v2.0
41 Init Bridge ${openstack_identity_url} ${GLOBAL_VM_PROPERTIES['openstack_username']} ${GLOBAL_VM_PROPERTIES['openstack_password']} ${tenant_id} ${GLOBAL_OPENSTACK_SERVICE_REGION} ${GLOBAL_AAI_CLOUD_OWNER}
42 ${request}= Bridge Data ${stack_id}
43 Log ${request}
jf986075010a42017-02-22 16:52:54 -050044 ${resp}= Run A&AI Put Request ${VERSIONED_INDEX_PATH}${MULTIPART_PATH} ${request}
DR695Hccff30b2017-02-17 18:44:24 -050045 Should Be Equal As Strings ${resp.status_code} 200
jf986075010a42017-02-22 16:52:54 -050046 ${reverse_heatbridge}= Generate Reverse Heatbridge From Stack Info ${stack_info}
47 Set Test Variable ${REVERSE_HEATBRIDGE} ${reverse_heatbridge}
DR695Hccff30b2017-02-17 18:44:24 -050048 Run Validation Query ${stack_info} ${service}
49
jf986075010a42017-02-22 16:52:54 -050050
DR695Hccff30b2017-02-17 18:44:24 -050051Run Validation Query
52 [Documentation] Run A&AI query to validate the bulk add
53 [Arguments] ${stack_info} ${service}
54 Return from Keyword If '${service}' == ''
55 ${server_name_parameter}= Get From Dictionary ${GLOBAL_VALIDATE_NAME_MAPPING} ${service}
56 ${vserver_name}= Get From Dictionary ${stack_info} ${server_name_parameter}
57 Run Vserver Query ${vserver_name}
58
59Run Vserver Query
60 [Documentation] Run A&AI query to validate the bulk add
61 [Arguments] ${vserver_name}
62 ${dict}= Create Dictionary vserver_name=${vserver_name}
63 ${request}= OperatingSystem.Get File ${NAMED_QUERY_TEMPLATE}
64 ${request}= Template String ${request} ${dict}
65 ${resp}= Run A&AI Post Request ${NAMED_QUERY_PATH} ${request}
66 Should Be Equal As Strings ${resp.status_code} 200
67
DR695Hccff30b2017-02-17 18:44:24 -050068
DR695Hccff30b2017-02-17 18:44:24 -050069Execute Reverse Heatbridge
jf986075010a42017-02-22 16:52:54 -050070 [Documentation] VID has already torn down the stack, reverse HB
71 Return From Keyword If len(${REVERSE_HEATBRIDGE}) == 0
72 :for ${uri} in @{REVERSE_HEATBRIDGE}
73 \ Run Keyword And Ignore Error Delete A&AI Entity ${uri}
DR695Hccff30b2017-02-17 18:44:24 -050074
jf986075010a42017-02-22 16:52:54 -050075Generate Reverse Heatbridge From Stack Name
76 [Arguments] ${stack_name}
DR695Hccff30b2017-02-17 18:44:24 -050077 Run Openstack Auth Request auth
jf986075010a42017-02-22 16:52:54 -050078 ${stack_info}= Wait for Stack to Be Deployed auth ${stack_name} timeout=10s
79 ${reverse_heatbridge}= Generate Reverse Heatbridge From Stack Info ${stack_info}
80 [Return] ${reverse_heatbridge}
81
82Generate Reverse Heatbridge From Stack Info
83 [Arguments] ${stack_info}
84 ${reverse_heatbridge}= Create List
85 ${stack_name}= Get From Dictionary ${stack_info} name
DR695Hccff30b2017-02-17 18:44:24 -050086 ${stack_id}= Get From Dictionary ${stack_info} id
87 ${tenant_id}= Get From Dictionary ${stack_info} OS::project_id
jf986075010a42017-02-22 16:52:54 -050088 ${keys}= Create Dictionary region=${GLOBAL_OPENSTACK_SERVICE_REGION} cloud=${GLOBAL_AAI_CLOUD_OWNER} tenant=${tenant_id}
DR695Hccff30b2017-02-17 18:44:24 -050089 ${stack_resources}= Get Stack Resources auth ${stack_name} ${stack_id}
90 ${resource_list}= Get From Dictionary ${stack_resources} resources
DR695Hccff30b2017-02-17 18:44:24 -050091 :FOR ${resource} in @{resource_list}
92 \ Log ${resource}
jf986075010a42017-02-22 16:52:54 -050093 \ Run Keyword If '${resource['resource_type']}' == 'OS::Neutron::Port' Generate Linterface Uri auth ${resource['physical_resource_id']} ${reverse_heatbridge} ${keys}
94 :FOR ${resource} in @{resource_list}
95 \ Log ${resource}
96 \ Run Keyword If '${resource['resource_type']}' == 'OS::Nova::Server' Generate Vserver Uri auth ${resource['physical_resource_id']} ${reverse_heatbridge} ${keys} ${resource_list}
97 [Return] ${reverse_heatbridge}
98
99Generate Vserver Uri
DR695Hccff30b2017-02-17 18:44:24 -0500100 [Documentation] Run teardown against the server to generate a message that removes it
jf986075010a42017-02-22 16:52:54 -0500101 [Arguments] ${alias} ${port_id} ${reverse_heatbridge} ${keys} ${resource_list}
102 ${resp}= Get Openstack Server By Id ${alias} ${port_id}
103 Return From Keyword If '${resp.status_code}' != '200'
104 ${info}= Set Variable ${resp.json()}
105 Set To Dictionary ${keys} vserver_id=${info['server']['id']}
106 Set To Dictionary ${keys} flavor=${info['server']['flavor']['id']}
107 Set To Dictionary ${keys} image_id=${info['server']['image']['id']}
108 ${uri}= Template String ${VSERVER_URI} ${keys}
109 Append To List ${reverse_heatbridge} ${uri}
110 ${uri}= Template String ${FLAVOR_URI} ${keys}
111 Append To List ${reverse_heatbridge} ${uri}
112 ${uri}= Template String ${IMAGE_URI} ${keys}
113 Append To List ${reverse_heatbridge} ${uri}
114
115Generate Linterface Uri
116 [Documentation] Run teardown against the server to generate a message that removes it
117 [Arguments] ${alias} ${server_id} ${reverse_heatbridge} ${keys}
118 ${resp}= Get Openstack Port By Id ${alias} ${server_id}
119 Return From Keyword If '${resp.status_code}' != '200'
120 ${info}= Set Variable ${resp.json()}
121 Set To Dictionary ${keys} vserver_id=${info['port']['device_id']}
122 Set To Dictionary ${keys} linterface_id=${info['port']['name']}
123 ${uri}= Template String ${L_INTERFACE_URI} ${keys}
124 Append To List ${reverse_heatbridge} ${uri}
125