785477587947c8cf5d4c9860159bf6850f2e8c43
[testsuite.git] / robot / resources / aai / create_customer.robot
1 *** Settings ***
2 Documentation     Create A&AI Customer API.
3 ...
4 ...                   Create A&AI Customer API
5
6 Resource   aai_interface.robot
7 Resource   ../json_templater.robot
8 Library    Collections
9
10
11 *** Variables ***
12 ${INDEX PATH}     /aai/v11
13 ${ROOT_CUSTOMER_PATH}  /business/customers/customer/
14 ${SYSTEM USER}    robot-ete
15 ${A&AI ADD CUSTOMER BODY}    robot/assets/templates/aai/add_customer.template
16
17 *** Keywords ***
18 Create Customer
19     [Documentation]    Creates a customer in A&AI
20     [Arguments]    ${customer_name}  ${customer_id}  ${customer_type}    ${service_type}      ${clouder_owner}    ${cloud_region_id}    ${tenant_id}
21     ${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}
22     ${data}=    Fill JSON Template File    ${A&AI ADD CUSTOMER BODY}    ${arguments}
23         ${put_resp}=    Run A&AI Put Request     ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${data}
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     ${get_resp}=    Run A&AI Get Request     ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}
32         Run Keyword If    '${get_resp.status_code}' == '200'    Delete Customer Exists    ${customer_id}    ${get_resp.json()['resource-version']}
33
34 *** Keywords ***
35 Delete Customer Exists
36     [Documentation]    Deletes a customer in A&AI
37     [Arguments]    ${customer_id}    ${resource_version_id}
38     ${put_resp}=    Run A&AI Delete Request    ${INDEX PATH}${ROOT_CUSTOMER_PATH}${customer_id}    ${resource_version_id}
39     Should Be Equal As Strings  ${put_resp.status_code}         204