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