blob: c05e4c7ca017b10a133be4a47d6a31a64cc14f88 [file] [log] [blame]
mrichomme547e3112018-04-13 16:44:04 +02001*** Settings ***
2Documentation The main interface for interacting with External API/NBI
3Library RequestsLibrary
DR695H910097e2019-05-08 13:55:32 -04004Library Collections
mrichomme547e3112018-04-13 16:44:04 +02005
6Resource global_properties.robot
7
8*** Variables ***
mrichomme021a5ae2020-04-03 15:14:12 +02009${NBI_HEALTH_CHECK_PATH} /nbi/api/v4/status?fullStatus=true
mrichomme547e3112018-04-13 16:44:04 +020010${NBI_ENDPOINT} ${GLOBAL_NBI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_NBI_IP_ADDR}:${GLOBAL_NBI_SERVER_PORT}
11
12
13*** Keywords ***
14Run NBI Health Check
15 [Documentation] Runs NBI Health check
16 ${resp}= Run NBI Get Request ${NBI_HEALTH_CHECK_PATH}
17 Should Be Equal As Integers ${resp.status_code} 200
18
19Run NBI Get Request
20 [Documentation] Runs NBI Get request
21 [Arguments] ${data_path}
22 ${session}= Create Session session ${NBI_ENDPOINT}
23 ${resp}= Get Request session ${data_path}
24 Should Be Equal As Integers ${resp.status_code} 200
25 Log Received response from NBI ${resp.text}
26 ${json}= Set Variable ${resp.json()}
27 ${status}= Get From Dictionary ${json} status
28 Should Be Equal ${status} ok
29 [Return] ${resp}