blob: 6402699361f37f7080a047612d78fa380b1da835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
*** Settings ***
Documentation The main interface for interacting with A&AI. It handles low level stuff like managing the http request library and A&AI required fields
Library RequestsLibrary
Library ONAPLibrary.Utilities
Library ONAPLibrary.AAI WITH NAME AAI
Resource ../global_properties.robot
*** Variables ***
${AAI_HEALTH_PATH} /aai/util/echo?action=long
${VERSIONED_INDEX_PATH} /aai/v19
${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_AAI_IP_ADDR}:${GLOBAL_AAI_SERVER_PORT}
${model_invariant_id} AAI-HealthCheck-Dummy
${data_path} ${VERSIONED_INDEX_PATH}/service-design-and-creation/models/model/${model_invariant_id}
${PUT_data} {"model-invariant-id": "AAI-HealthCheck-Dummy","model-type": "service"}
${traversal_data_path} ${VERSIONED_INDEX_PATH}/query?format=count
${traversal_data} {"start" : "service-design-and-creation/models"}
*** Keywords ***
Run A&AI Health Check
[Documentation] Runs an A&AI health check
${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${AAI_HEALTH_PATH} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${resp.status_code} 200
Run Resource API AAI Inventory check
[Documentation] Runs A&AI Inventory health check Resource API
${GET_res}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${data_path} auth=${GLOBAL_AAI_AUTHENTICATION}
Run Keyword If ${GET_res.status_code}== 200 Run Delete dummy data ${GET_res}
Run Resource API
Run Delete dummy data
[Documentation] Delete Existing dummy data
[Arguments] ${GET_res}
${json} = Set Variable ${GET_res.json()}
${resource_version} Set Variable ${json["resource-version"]}
${delete_response}= AAI.Run Delete Request ${AAI_FRONTEND_ENDPOINT} ${data_path} ${resource_version} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${delete_response.status_code} 204
Run Resource API
[Documentation] Resource API check with put get and delete request
#PUT Request
${Put_resp}= AAI.Run Put Request ${AAI_FRONTEND_ENDPOINT} ${data_path} ${PUT_data} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${Put_resp.status_code} 201
#GET Request
${GET_resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${data_path} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${GET_resp.status_code} 200
${res_body}= Convert to string ${GET_resp.content}
Should contain ${res_body} ${model_invariant_id}
#DELETE Request
Run Delete dummy data ${GET_resp}
Run Traversal API AAI Inventory check
[Documentation] Runs A&AI Inventory health check Traversal API
${Put_resp}= AAI.Run Put Request ${AAI_FRONTEND_ENDPOINT} ${traversal_data_path} ${traversal_data} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${Put_resp.status_code} 200
Delete A&AI Entity
[Documentation] Deletes an entity in A&AI
[Arguments] ${uri}
${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${VERSIONED_INDEX_PATH}${uri} auth=${GLOBAL_AAI_AUTHENTICATION}
Run Keyword If '${resp.status_code}' == '200' Delete A&AI Entity Exists ${uri} ${resp.json()['resource-version']}
Delete A&AI Entity Exists
[Documentation] Deletes an A&AI entity
[Arguments] ${uri} ${resource_version_id}
${put_resp}= AAI.Run Delete Request ${AAI_FRONTEND_ENDPOINT} ${VERSIONED_INDEX_PATH}${uri} ${resource_version_id} auth=${GLOBAL_AAI_AUTHENTICATION}
Should Be Equal As Strings ${put_resp.status_code} 204
|