First Pass Automated vFW control setup
[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/vnf_orchestration_test_template.robot
6 Resource        asdc_interface.robot
7 Resource        mso_interface.robot
8 Resource        vid/vid_interface.robot
9 Resource        policy_interface.robot
10
11 Library         UUID
12 Library         Collections
13 Library         OperatingSystem
14 Library         HttpLibrary.HTTP
15 Library         ExtendedSelenium2Library
16 Library         RequestsLibrary
17
18 *** Variables ***
19
20 ${ADD_DEMO_CUSTOMER_BODY}   robot/assets/templates/aai/add_demo_customer.template
21 ${AAI_INDEX_PATH}     /aai/v8
22 ${VF_MODULES_NAME}     _Demo_VFModules.json
23 ${FILE_CACHE}    /share/
24 ${DEMO_PREFIX}   demo
25
26
27 *** Keywords ***
28 Load Customer And Models
29     [Documentation]   Use openECOMP to Orchestrate a service.
30     [Arguments]    ${customer_name}
31     Load OwningEntity  lineOfBusiness  LOB-${customer_name}
32     Load OwningEntity  platform  Platform-${customer_name}
33     Load OwningEntity  project  Project-${customer_name}
34     Load OwningEntity  owningEntity  OE-${customer_name}
35     Load Customer  ${customer_name}
36     Load Models  ${customer_name}
37
38 Load OwningEntity
39     [Documentation]   Use openECOMP to Orchestrate a service.
40     [Arguments]    ${parameter}   ${name}
41     ${data_path}=  Set Variable  /maintenance/category_parameter/${parameter}
42     ${vid_data}=  Set Variable  {"options":["${name}"]}
43     ${auth}=  Create List  ${GLOBAL_VID_USERNAME}    ${GLOBAL_VID_PASSWORD}
44     Log    Creating session ${data_path}
45     ${session}=    Create Session       vid    ${VID_ENDPOINT}${VID_ENV}     auth=${auth}
46     ${uuid}=    Generate UUID
47     ${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}
48     ${resp}=    Post Request    vid     ${data_path}   data=${vid_data}    headers=${headers}
49         
50 Load Customer
51     [Documentation]   Use openECOMP to Orchestrate a service.
52     [Arguments]    ${customer_name}
53     Setup Orchestrate VNF   ${GLOBAL_AAI_CLOUD_OWNER}   SharedNode    OwnerType    v1    CloudZone
54     Set Test Variable    ${CUSTOMER_NAME}    ${customer_name}
55     ${region}=   Get Openstack Region
56     Create Customer For VNF Demo    ${CUSTOMER_NAME}    ${CUSTOMER_NAME}    INFRA    ${GLOBAL_AAI_CLOUD_OWNER}    ${region}   ${TENANT_ID}
57
58 Load Models
59     [Documentation]   Use openECOMP to Orchestrate a service.
60     [Arguments]    ${customer_name}
61     Set Test Variable    ${CUSTOMER_NAME}    ${customer_name}
62     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vFWCL   ${DEMO_PREFIX}VFWCL
63     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vLB   ${DEMO_PREFIX}VLB
64     ${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vCPE   ${DEMO_PREFIX}VCPE
65     ##${status}   ${value}=   Run Keyword And Ignore Error   Distribute Model   vIMS   ${DEMO_PREFIX}VIMS
66
67 Distribute Model
68     [Arguments]   ${service}   ${modelName}
69     ${service_model_type}     ${vnf_type}    ${vf_modules}   ${catalog_resources}=   Model Distribution For Directory    ${service}   ${modelName}
70
71 Create Customer For VNF Demo
72     [Documentation]    Create demo customer for the demo
73     [Arguments]    ${customer_name}   ${customer_id}   ${customer_type}    ${clouder_owner}    ${cloud_region_id}    ${tenant_id}
74     Create Service If Not Exists    vFWCL
75     Create Service If Not Exists    vLB
76     Create Service If Not Exists    vCPE
77     Create Service If Not Exists    vIMS
78     ${data_template}=    OperatingSystem.Get File    ${ADD_DEMO_CUSTOMER_BODY}
79     ${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}
80     Set To Dictionary   ${arguments}       service1=vFWCL       service2=vLB   service3=vCPE   service4=vIMS
81     ${data}=    Fill JSON Template    ${data_template}    ${arguments}
82     ${put_resp}=    Run A&AI Put Request     ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${data}
83     ${status_string}=    Convert To String    ${put_resp.status_code}
84     Should Match Regexp    ${status_string}    ^(200|201|412)$
85
86 Preload User Model
87     [Documentation]   Preload the demo data for the passed VNF with the passed module name
88     [Arguments]   ${vnf_name}   ${vf_module_name}
89     # Go to A&AI and get information about the VNF we need to preload
90     ${status}  ${generic_vnf}=   Run Keyword And Ignore Error   Get Service Instance    ${vnf_name}
91     Run Keyword If   '${status}' == 'FAIL'   FAIL   VNF Name: ${vnf_name} is not found.
92     ${vnf_type}=   Set Variable   ${generic_vnf['vnf-type']}
93     ${relationships}=   Set Variable   ${generic_vnf['relationship-list']['relationship']}
94     ${relationship_data}=    Get Relationship Data   ${relationships}
95     ${customer_id}=   Catenate
96     :for    ${r}   in   @{relationship_data}
97     \   ${service}=   Set Variable If    '${r['relationship-key']}' == 'service-subscription.service-type'   ${r['relationship-value']}    ${service}
98     \   ${service_instance_id}=   Set Variable If    '${r['relationship-key']}' == 'service-instance.service-instance-id'   ${r['relationship-value']}   ${service_instance_id}
99     \   ${customer_id}=    Set Variable If   '${r['relationship-key']}' == 'customer.global-customer-id'   ${r['relationship-value']}   ${customer_id}
100     ${invariantUUID}=   Get Persona Model Id     ${service_instance_id}    ${service}    ${customer_id}
101
102     # We still need the vf module names. We can get them from VID using the persona_model_id (invariantUUID) from A&AI
103     Setup Browser
104     Login To VID GUI
105     ${vf_modules}=   Get Module Names from VID    ${invariantUUID}
106     Log    ${generic_vnf}
107     Log   ${service_instance_id},${vnf_name},${vnf_type},${vf_module_name},${vf_modules},${service}
108     Preload Vnf    ${service_instance_id}   ${vnf_name}   ${vnf_type}   ${vf_module_name}    ${vf_modules}    ${service}    demo
109     [Teardown]    Close All Browsers
110
111
112 Get Relationship Data
113     [Arguments]   ${relationships}
114     :for    ${r}   in   @{relationships}
115     \     ${status}   ${relationship_data}   Run Keyword And Ignore Error    Set Variable   ${r['relationship-data']}
116     \     Return From Keyword If    '${status}' == 'PASS'   ${relationship_data}
117
118
119 Get Generic VNF By ID
120     [Arguments]   ${vnf_id}
121     ${resp}=    Run A&AI Get Request      ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-id=${vnf_id}
122     Should Be Equal As Strings  ${resp.status_code}     200
123     [Return]   ${resp.json()}
124
125 Get Service Instance
126     [Arguments]   ${vnf_name}
127     ${resp}=    Run A&AI Get Request      ${AAI_INDEX PATH}/network/generic-vnfs/generic-vnf?vnf-name=${vnf_name}
128     Should Be Equal As Strings  ${resp.status_code}     200
129     [Return]   ${resp.json()}
130
131 Get Persona Model Id
132     [Documentation]    Query and Validates A&AI Service Instance
133     [Arguments]    ${service_instance_id}    ${service_type}   ${customer_id}
134     ${resp}=    Run A&AI Get Request      ${INDEX PATH}${CUSTOMER SPEC PATH}${customer_id}${SERVICE SUBSCRIPTIONS}${service_type}${SERVICE INSTANCE}${service_instance_id}
135     ${persona_model_id}=   Get From DIctionary   ${resp.json()['service-instance'][0]}    model-invariant-id
136     [Return]   ${persona_model_id}
137
138 APPC Mount Point
139     [Arguments]   ${vf_module_name}
140     Run Openstack Auth Request    auth
141     ${status}   ${stack_info}=   Run Keyword and Ignore Error    Wait for Stack to Be Deployed    auth    ${vf_module_name}   timeout=120s
142     Run Keyword if   '${status}' == 'FAIL'   FAIL   ${vf_module_name} Stack is not found
143     ${stack_id}=    Get From Dictionary    ${stack_info}    id
144     ${server_list}=    Get Openstack Servers    auth
145     ${vpg_name_0}=    Get From Dictionary    ${stack_info}    vpg_name_0
146     ${vpg_public_ip}=    Get Server Ip    ${server_list}    ${stack_info}   vpg_name_0    network_name=public
147     ${vpg_oam_ip}=    Get From Dictionary    ${stack_info}    vpg_private_ip_1
148     ${appc}=    Create Mount Point In APPC    ${vpg_name_0}    ${vpg_oam_ip}
149
150 Instantiate VNF
151     [Arguments]   ${service}
152     Setup Orchestrate VNF    ${GLOBAL_AAI_CLOUD_OWNER}    SharedNode    OwnerType    v1    CloudZone
153     ${vf_module_name}    ${service}=    Orchestrate VNF    DemoCust    ${service}   ${service}    ${TENANT_NAME}
154     Save For Delete
155     Log to Console   Customer Name=${CUSTOMER_NAME}
156     Log to Console   VNF Module Name=${vf_module_name}
157     ${model_invariant_id}=   Run MSO Get ModelInvariantId   ${SUITE_SERVICE_MODEL_NAME} 
158     Log to Console   ModelInvariantID=${model_invariant_id}
159     Update vVFWCL Policy   ${model_invariant_id}
160     APPC Mount Point    ${vf_module_name}
161     
162     
163     
164
165
166 Save For Delete
167     [Documentation]   Create a variable file to be loaded for save for delete
168     ${dict}=    Create Dictionary
169     Set To Dictionary   ${dict}   TENANT_NAME=${TENANT_NAME}
170     Set To Dictionary   ${dict}   TENANT_ID=${TENANT_ID}
171     Set To Dictionary   ${dict}   CUSTOMER_NAME=${CUSTOMER_NAME}
172     Set To Dictionary   ${dict}   STACK_NAME=${STACK_NAME}
173     Set To Dictionary   ${dict}   SERVICE=${SERVICE}
174     Set To Dictionary   ${dict}   VVG_SERVER_ID=${VVG_SERVER_ID}
175     Set To Dictionary   ${dict}   SERVICE_INSTANCE_ID=${SERVICE_INSTANCE_ID}
176
177     Set To Dictionary   ${dict}   VLB_CLOSED_LOOP_DELETE=${VLB_CLOSED_LOOP_DELETE}
178     Set To Dictionary   ${dict}   VLB_CLOSED_LOOP_VNF_ID=${VLB_CLOSED_LOOP_VNF_ID}
179
180     Set To Dictionary   ${dict}   CATALOG_SERVICE_ID=${CATALOG_SERVICE_ID}
181
182     ${vars}=    Catenate
183     ${keys}=   Get Dictionary Keys    ${dict}
184     :for   ${key}   in   @{keys}
185     \    ${value}=   Get From Dictionary   ${dict}   ${key}
186     \    ${vars}=   Catenate   ${vars}${key} = "${value}"\n
187
188     ${comma}=   Catenate
189     ${vars}=    Catenate   ${vars}CATALOG_RESOURCE_IDS = [
190     :for   ${id}   in    @{CATALOG_RESOURCE_IDS}
191     \    ${vars}=    Catenate  ${vars}${comma} "${id}"
192     \    ${comma}=   Catenate   ,
193     ${vars}=    Catenate  ${vars}]\n
194     OperatingSystem.Create File   ${FILE_CACHE}/${STACK_NAME}.py   ${vars}
195     OperatingSystem.Create File   ${FILE_CACHE}/lastVNF4HEATBRIGE.py   ${vars}
196
197