replace aai keywords with aai lib
[testsuite.git] / robot / resources / aai / create_customer.robot
1 *** Settings ***
2 Documentation     Create A&AI Customer API.
3
4 Resource   aai_interface.robot
5 Library    Collections
6 Library    ONAPLibrary.Templating    WITH NAME    Templating
7 Library    ONAPLibrary.AAI    WITH NAME    AAI
8
9 *** Variables ***
10 ${INDEX PATH}     /aai/v11
11 ${ROOT_CUSTOMER_PATH}  /business/customers/customer/
12 ${SYSTEM USER}    robot-ete
13 ${A&AI ADD CUSTOMER BODY}    aai/add_customer.jinja
14
15 *** Keywords ***
16 Create Customer
17     [Documentation]    Creates a customer in A&AI
18     [Arguments]    ${customer_name}  ${customer_id}  ${customer_type}    ${service_type}      ${clouder_owner}    ${cloud_region_id}    ${tenant_id}
19     ${arguments}=    Create Dictionary    subscriber_name=${customer_name}    global_customer_id=${customer_id}    subscriber_type=${customer_type}     cloud_owner1=${clouder_owner}  cloud_region_id1=${cloud_region_id}    tenant_id1=${tenant_id}    service1=${service_type}
20     Templating.Create Environment    aai    ${GLOBAL_TEMPLATE_FOLDER}
21     ${data}=   Templating.Apply Template    aai   ${A&AI ADD CUSTOMER BODY}    ${arguments}
22     ${auth}=  Create List  ${GLOBAL_AAI_USERNAME}    ${GLOBAL_AAI_PASSWORD}
23         ${put_resp}=    AAI.Run Put Request     ${AAI_FRONTEND_ENDPOINT}    ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${data}        auth=${auth}
24     Should Be Equal As Strings  ${put_resp.status_code}         201
25         [Return]  ${put_resp.status_code}
26
27 *** Keywords ***
28 Delete Customer
29     [Documentation]    Deletes a customer in A&AI
30     [Arguments]    ${customer_id}
31     ${auth}=  Create List  ${GLOBAL_AAI_USERNAME}    ${GLOBAL_AAI_PASSWORD}
32     ${get_resp}=    AAI.Run Get Request     ${AAI_FRONTEND_ENDPOINT}    ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}        auth=${auth}
33         Run Keyword If    '${get_resp.status_code}' == '200'    Delete Customer Exists    ${customer_id}    ${get_resp.json()['resource-version']}
34
35 *** Keywords ***
36 Delete Customer Exists
37     [Documentation]    Deletes a customer in A&AI
38     [Arguments]    ${customer_id}    ${resource_version_id}
39     ${auth}=  Create List  ${GLOBAL_AAI_USERNAME}    ${GLOBAL_AAI_PASSWORD}
40     ${put_resp}=    AAI.Run Delete Request    ${AAI_FRONTEND_ENDPOINT}    ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${resource_version_id}        auth=${auth}
41     Should Be Equal As Strings  ${put_resp.status_code}         204