Initial Generic GRA API support
[testsuite.git] / robot / resources / demo_preload.robot
1 *** Settings ***
2 Documentation     This test template encapsulates the VNF Orchestration use case.
3
4 Resource        test_templates/model_test_template.robot
5 Resource        test_templates/model_test_template_vcperescust.robot
6 Resource        test_templates/vnf_orchestration_test_template.robot
7 Resource        sdc_interface.robot
8 Resource        vid/vid_interface.robot
9 Resource        consul_interface.robot
10 Resource        policy_interface.robot
11 Resource        aai/create_availability_zone.robot
12 Resource    so/direct_instantiate.robot
13
14 Library         ONAPLibrary.Utilities
15 Library         Collections
16 Library         OperatingSystem
17 Library         SeleniumLibrary
18 Library         RequestsLibrary
19 Library         ONAPLibrary.Templating    WITH NAME    Templating
20 Library         ONAPLibrary.AAI    WITH NAME    AAI
21 Library         ONAPLibrary.SO    WITH NAME    SO
22
23 *** Variables ***
24
25 ${ADD_DEMO_CUSTOMER_BODY}   aai/add_demo_customer.jinja
26 ${AAI_INDEX_PATH}     /aai/v8
27 ${VF_MODULES_NAME}     _Demo_VFModules.json
28 ${FILE_CACHE}    /share/
29 ${DEMO_PREFIX}   demo
30 ${VPKG_MODULE_LABEL}    base_vpkg
31
32
33 *** Keywords ***
34 Load Customer And Models
35     [Documentation]   Use ONAP to Orchestrate a service.
36     [Arguments]    ${customer_name}
37     Load OwningEntity  lineOfBusiness  LOB-${customer_name}
38     Load OwningEntity  platform  Platform-${customer_name}
39     Load OwningEntity  project  Project-${customer_name}
40     Load OwningEntity  owningEntity  OE-${customer_name}
41     Load Customer  ${customer_name}
42     Load Models  ${customer_name}
43
44 Load OwningEntity
45     [Documentation]   Use ONAP to Orchestrate a service.
46     [Arguments]    ${parameter}   ${name}
47     ${data_path}=  Set Variable  /maintenance/category_parameter/${parameter}
48     ${vid_data}=  Set Variable  {"options":["${name}"]}
49     ${auth}=  Create List  ${GLOBAL_VID_USERNAME}    ${GLOBAL_VID_PASSWORD}
50     Log    Creating session ${data_path}
51     ${session}=    Create Session       vid    ${VID_ENDPOINT}${VID_ENV}     auth=${auth}
52     ${uuid}=    Generate UUID4
53     ${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}
54     ${resp}=    Post Request    vid     ${data_path}   data=${vid_data}    headers=${headers}
55         
56 Load Customer
57     [Documentation]   Use ONAP to Orchestrate a service.
58     [Arguments]    ${customer_name}
59     ${tenant_id}    ${tenant_name}=    Setup Orchestrate VNF   ${GLOBAL_AAI_CLOUD_OWNER}   SharedNode    OwnerType    v1    CloudZone
60     ${region}=   Get Openstack Region
61     Create Customer For VNF Demo    ${customer_name}    ${customer_name}    INFRA    ${GLOBAL_AAI_CLOUD_OWNER}    ${region}   ${tenant_id}
62     Create Customer For VNF Demo    ${customer_name}    ${customer_name}    INFRA    ${GLOBAL_AAI_CLOUD_OWNER}    RegionTlab  50b190410b2a4c229d8a6044a80ab7c1 
63     Create Availability Zone If Not Exists    ${GLOBAL_AAI_CLOUD_OWNER}    ${region}   ${GLOBAL_AAI_AVAILABILITY_ZONE_NAME}
64
65 Load Models
66     [Documentation]   Use ONAP to Orchestrate a service.
67     [Arguments]    ${customer_name}
68     Log   ${\n}Distributing vFWCL
69     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vFWCL   ${DEMO_PREFIX}VFWCL
70     Log   Distibuting vLB
71     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vLB   ${DEMO_PREFIX}VLB
72     Log   Distibuting vLB_CDS
73     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vLB_CDS   ${DEMO_PREFIX}VLB_CDS  True
74     ##${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPE   ${DEMO_PREFIX}VCPE
75     ##${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vIMS   ${DEMO_PREFIX}VIMS
76     Log   Distibuting vCPEInfra
77     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPEInfra   ${DEMO_PREFIX}VCPEInfra
78     Log   Distibuting vCPEvBNG
79     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPEvBNG   ${DEMO_PREFIX}VCPEvBNG
80     Log   Distibuting vCPEvBRGEMU
81     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPEvBRGEMU   ${DEMO_PREFIX}VCPEvBRGEMU 
82     Log   Distibuting vCPEvGMUX
83     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPEvGMUX    ${DEMO_PREFIX}VCPEvGMUX
84     Log   Distibuting vCPEvGW (this is not vCPEResCust service)
85     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPEvGW    ${DEMO_PREFIX}VCPEvGW
86
87 Distribute Model
88     [Arguments]   ${service}   ${modelName}  ${cds}=False   ${instantiationType}=A-la-carte  ${resourceType}=VF
89     Model Distribution For Directory    ${service}   ${modelName}  ${cds}  ${instantiationType}  ${resourceType}
90
91 Create Customer For VNF Demo
92     [Documentation]    Create demo customer for the demo
93     [Arguments]    ${customer_name}   ${customer_id}   ${customer_type}    ${clouder_owner}    ${cloud_region_id}    ${tenant_id}
94     Create Service If Not Exists    vFW
95     Create Service If Not Exists    vFWCL
96     Create Service If Not Exists    vLB
97     Create Service If Not Exists    vCPE
98     Create Service If Not Exists    vIMS
99     Create Service If Not Exists    gNB
100     ${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}
101     Set To Dictionary   ${arguments}       service1=vFWCL       service2=vLB   service3=vCPE   service4=vIMS  service5=gNB   service6=vFW
102     Templating.Create Environment    aai    ${GLOBAL_TEMPLATE_FOLDER}
103     ${data}=   Templating.Apply Template    aai   ${ADD_DEMO_CUSTOMER_BODY}    ${arguments}
104     ${put_resp}=    AAI.Run Put Request     ${AAI_FRONTEND_ENDPOINT}    ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${data}    auth=${GLOBAL_AAI_AUTHENTICATION}
105     ${status_string}=    Convert To String    ${put_resp.status_code}
106     Should Match Regexp    ${status_string}    ^(200|201|412)$
107
108 Preload User Model
109     [Documentation]   Preload the demo data for the passed VNF with the passed module name
110     [Arguments]   ${vnf_name}   ${vf_module_name}    ${service}    ${service_instance_id}    ${vnf}=${service}
111     # Go to A&AI and get information about the VNF we need to preload
112     ${status}  ${generic_vnf}=   Run Keyword And Ignore Error   Get Service Instance    ${vnf_name}
113     Run Keyword If   '${status}' == 'FAIL'   FAIL   VNF Name: ${vnf_name} is not found.
114     ${vnf_type}=   Set Variable   ${generic_vnf['vnf-type']}
115     ${relationships}=   Set Variable   ${generic_vnf['relationship-list']['relationship']}
116     ${relationship_data}=    Get Relationship Data   ${relationships}
117     ${customer_id}=   Catenate
118     :FOR    ${r}   IN   @{relationship_data}
119     \   ${service}=   Set Variable If    '${r['relationship-key']}' == 'service-subscription.service-type'   ${r['relationship-value']}    ${service}
120     \   ${service_instance_id}=   Set Variable If    '${r['relationship-key']}' == 'service-instance.service-instance-id'   ${r['relationship-value']}   ${service_instance_id}
121     \   ${customer_id}=    Set Variable If   '${r['relationship-key']}' == 'customer.global-customer-id'   ${r['relationship-value']}   ${customer_id}
122     ${invariantUUID}=   Get Persona Model Id     ${service_instance_id}    ${service}    ${customer_id}
123
124     # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
125     Setup Browser
126     Login To VID GUI
127     ${vf_modules}=   Get Module Names from VID    ${invariantUUID}
128     Log    ${generic_vnf}
129     Log   ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
130     Preload Vnf    ${service_instance_id}   ${vnf_name}   ${vnf_type}   ${vf_module_name}    ${vf_modules}    ${vnf}    demo    ${service}
131     [Teardown]    Close All Browsers
132
133 Preload User Model GRA
134     [Documentation]   Preload the demo data for the passed VNF with the passed module name via GRA
135     [Arguments]   ${vnf_name}   ${vf_module_name}   ${service}    ${service_instance_id}    ${vnf}=${service}
136     # Go to A&AI and get information about the VNF we need to preload
137     ${status}  ${generic_vnf}=   Run Keyword And Ignore Error   Get Service Instance    ${vnf_name}
138     Run Keyword If   '${status}' == 'FAIL'   FAIL   VNF Name: ${vnf_name} is not found.
139     ${vnf_type}=   Set Variable   ${generic_vnf['vnf-type']}
140     ${relationships}=   Set Variable   ${generic_vnf['relationship-list']['relationship']}
141     ${relationship_data}=    Get Relationship Data   ${relationships}
142     ${customer_id}=   Catenate
143     :FOR    ${r}   IN   @{relationship_data}
144     \   ${service}=   Set Variable If    '${r['relationship-key']}' == 'service-subscription.service-type'   ${r['relationship-value']}    ${service}
145     \   ${service_instance_id}=   Set Variable If    '${r['relationship-key']}' == 'service-instance.service-instance-id'   ${r['relationship-value']}   ${service_instance_id}
146     \   ${customer_id}=    Set Variable If   '${r['relationship-key']}' == 'customer.global-customer-id'   ${r['relationship-value']}   ${customer_id}
147     ${invariantUUID}=   Get Persona Model Id     ${service_instance_id}    ${service}    ${customer_id}
148
149     # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
150     Setup Browser
151     Login To VID GUI
152     ${vf_modules}=   Get Module Names from VID    ${invariantUUID}
153     Log    ${generic_vnf}
154     Log   ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
155     Preload Gra    ${service_instance_id}   ${vnf_name}   ${vnf_type}   ${vf_module_name}    ${vf_modules}  ${vnf}   demo   ${service}   
156     [Teardown]    Close All Browsers
157
158
159 Get Relationship Data
160     [Arguments]   ${relationships}
161     :FOR    ${r}   IN   @{relationships}
162     \     ${status}   ${relationship_data}   Run Keyword And Ignore Error    Set Variable   ${r['relationship-data']}
163     \     Return From Keyword If    '${status}' == 'PASS'   ${relationship_data}
164
165
166 Get Generic VNF By ID
167     [Arguments]   ${vnf_id}
168     ${resp}=    AAI.Run Get Request    ${AAI_FRONTEND_ENDPOINT}    ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id}    auth=${GLOBAL_AAI_AUTHENTICATION}
169     Should Be Equal As Strings  ${resp.status_code}     200
170     [Return]   ${resp.json()}
171
172 Get Service Instance
173     [Arguments]   ${vnf_name}
174     ${resp}=    AAI.Run Get Request    ${AAI_FRONTEND_ENDPOINT}    ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name}    auth=${GLOBAL_AAI_AUTHENTICATION}
175     Should Be Equal As Strings  ${resp.status_code}     200
176     [Return]   ${resp.json()}
177
178 Get Persona Model Id
179     [Documentation]    Query and Validates A&AI Service Instance
180     [Arguments]    ${service_instance_id}    ${service_type}   ${customer_id}
181     ${resp}=    AAI.Run Get Request    ${AAI_FRONTEND_ENDPOINT}    ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id}    auth=${GLOBAL_AAI_AUTHENTICATION}
182     ${persona_model_id}=   Get From DIctionary   ${resp.json()['service-instance'][0]}    model-invariant-id
183     [Return]   ${persona_model_id}
184
185 APPC Mount Point
186     [Arguments]   ${vf_module_name}
187     Run Openstack Auth Request    auth
188     ${status}   ${stack_info}=   Run Keyword and Ignore Error    Wait for Stack to Be Deployed    auth    ${vf_module_name}   timeout=120s
189     Run Keyword if   '${status}' == 'FAIL'   FAIL   ${vf_module_name} Stack is not found
190     ${stack_id}=    Get From Dictionary    ${stack_info}    id
191     ${server_list}=    Get Openstack Servers    auth
192     ${vpg_name_0}=    Get From Dictionary    ${stack_info}    vpg_name_0
193     ${vnf_id}=    Get From Dictionary    ${stack_info}    vnf_id
194     ${vpg_public_ip}=    Get Server Ip    ${server_list}    ${stack_info}   vpg_name_0    network_name=${GLOBAL_INJECTED_OPENSTACK_PUBLIC_NETWORK}
195     ${appc}=    Create Mount Point In APPC    ${vnf_id}    ${vpg_public_ip}
196
197 Instantiate VNF
198     [Arguments]   ${service}   ${vf_module_label}=NULL
199     ${tenant_id}    ${tenant_name}=    Setup Orchestrate VNF    ${GLOBAL_AAI_CLOUD_OWNER}    SharedNode    OwnerType    v1    CloudZone
200     ${uuid}=    Generate UUID4
201     ${vf_module_name_list}   ${generic_vnfs}    ${server_id}    ${service_instance_id}    ${catalog_resource_ids}   ${catalog_service_id}    ${uris_to_delete}=    Orchestrate VNF    DemoCust_${uuid}    ${service}   ${service}    ${tenant_id}    ${tenant_name}
202     ${stack_name} =     Get From List   ${vf_module_name_list}  -1
203     Save For Delete    ${tenant_id}    ${tenant_name}    ${server_id}    DemoCust_${uuid}    ${service_instance_id}    ${stack_name}    ${catalog_service_id}    ${catalog_resource_ids}
204     :FOR  ${vf_module_name}  IN   @{vf_module_name_list}
205     \   Log   VNF Module Name=${vf_module_name}
206     # Don't get from SO for now due to SO-1186
207     # ${model_invariant_id}=  Run SO Get ModelInvariantId   ${suite_service_model_name}  ${vf_module_label}
208     ${model_invariant_id}=   Set Variable   ${EMPTY}
209     :FOR    ${vf_module}    IN    @{generic_vnfs}
210     \    ${generic_vnf}=    Get From Dictionary    ${generic_vnfs}    ${vf_module}
211     \    ${model_invariant_id}=    Set Variable If    '${vf_module_label}' in '${vf_module}'   ${generic_vnf['model-invariant-id']}    ${model_invariant_id}
212     Log   Update old vFWCL Policy for ModelInvariantID=${model_invariant_id}
213     ${status}   ${value}=   Run Keyword And Ignore Error  Update vVFWCL Policy   ${model_invariant_id}
214     :FOR  ${vf_module_name}  IN   @{vf_module_name_list}
215     \   Log   APPC Mount Point for VNF Module Name=${vf_module_name}
216     \   ${status}   ${value}=   Run Keyword And Ignore Error  APPC Mount Point    ${vf_module_name}
217     Log   Update Tca ControlLoopName
218     Update Tca ControlLoopName    ${model_invariant_id}
219
220 Instantiate VNF CDS
221     [Arguments]   ${service}   ${vf_module_label}=NULL
222     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vLB_CDS   demoVLB_CDS  True
223     ${resp}=  Get Service Catalog  demoVLB_CDS
224     ${service-uuid}=     Set Variable    ${resp['uuid']}  
225     ${service-invariantUUID}=     Set Variable    ${resp['invariantUUID']}     
226     ${requestid}=   CDS Service Instantiate  demoVLB_CDS  ${service-uuid}  ${service-invariantUUID}
227     ${auth}=  Create List  ${GLOBAL_SO_CATDB_USERNAME }  ${GLOBAL_SO_PASSWORD}        
228     SO.Run Polling Get Request  ${GLOBAL_SO_APIHAND_ENDPOINT}  ${GLOBAL_SO_ORCHESTRATION_REQUESTS_PATH}/${requestid}  tries=30   interval=60  auth=${auth}
229
230 Instantiate Demo VNF
231     [Arguments]   ${service}   ${vf_module_label}=NULL
232     ${tenant_id}    ${tenant_name}=    Setup Orchestrate VNF    ${GLOBAL_AAI_CLOUD_OWNER}    SharedNode    OwnerType    v1    CloudZone
233     ${vf_module_name}    ${service}    ${generic_vnfs}=   Orchestrate Demo VNF    Demonstration    ${service}   ${service}    ${tenant_id}    ${tenant_name}
234     Log   VNF Module Name=${vf_module_name}
235     # Don't get from SO for now due to SO-1186
236     # ${model_invariant_id}=  Run SO Get ModelInvariantId   ${suite_service_model_name}  ${vf_module_label}
237     ${model_invariant_id}=   Set Variable   ${EMPTY}
238     :FOR    ${vf_module}    IN    @{generic_vnfs}
239     \    ${generic_vnf}=    Get From Dictionary    ${generic_vnfs}    ${vf_module}
240     \    ${model_invariant_id}=    Set Variable If    '${vf_module_label}' in '${vf_module}'   ${generic_vnf['model-invariant-id']}    ${model_invariant_id}
241     Log   ModelInvariantID=${model_invariant_id}
242     ${status}   ${value}=   Run Keyword And Ignore Error  Update vVFWCL Policy   ${model_invariant_id}
243     ${status}   ${value}=   Run Keyword And Ignore Error  APPC Mount Point    ${vf_module_name}
244
245
246 Save For Delete
247     [Documentation]   Create a variable file to be loaded for save for delete
248     [Arguments]    ${tenant_id}    ${tenant_name}    ${vvg_server_id}    ${customer_name}    ${service_instance_id}    ${stack_name}    ${catalog_service_id}    ${catalog_resource_ids}
249     ${dict}=    Create Dictionary
250     Set To Dictionary   ${dict}   TENANT_NAME=${tenant_name}
251     Set To Dictionary   ${dict}   TENANT_ID=${tenant_id}
252     Set To Dictionary   ${dict}   CUSTOMER_NAME=${customer_name}
253     Set To Dictionary   ${dict}   STACK_NAME=${stack_name}
254     Set To Dictionary   ${dict}   VVG_SERVER_ID=${vvg_server_id}
255     Set To Dictionary   ${dict}   SERVICE_INSTANCE_ID=${service_instance_id}
256     Set To Dictionary   ${dict}   CATALOG_SERVICE_ID=${catalog_service_id}
257
258     ${vars}=    Catenate
259     ${keys}=   Get Dictionary Keys    ${dict}
260     :FOR   ${key}   IN   @{keys}
261     \    ${value}=   Get From Dictionary   ${dict}   ${key}
262     \    ${vars}=   Catenate   ${vars}${key} = "${value}"\n
263
264     ${comma}=   Catenate
265     ${vars}=    Catenate   ${vars}CATALOG_RESOURCE_IDS = [
266     :FOR   ${id}   IN    @{catalog_resource_ids}
267     \    ${vars}=    Catenate  ${vars}${comma} "${id}"
268     \    ${comma}=   Catenate   ,
269     ${vars}=    Catenate  ${vars}]\n
270     OperatingSystem.Create File   ${FILE_CACHE}/${stack_name}.py   ${vars}
271     OperatingSystem.Create File   ${FILE_CACHE}/lastVNF4HEATBRIGE.py   ${vars}
272
273