blob: b91a6710aedd48ce8fcbd3b2c7169b3c0c83f217 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
2Documentation The main interface for interacting with External API/NBI
3Library RequestsLibrary
4Library Collections
5
6*** Variables ***
7${GLOBAL_NBI_SERVER_PROTOCOL} http
8${GLOBAL_INJECTED_NBI_IP_ADDR} localhost
9${GLOBAL_NBI_SERVER_PORT} 8080
Matthieu Geerebaertffb46a32019-05-29 15:54:14 +020010${NBI_HEALTH_CHECK_PATH} /nbi/api/v4/status
Gary Wu9abb61c2018-09-27 10:38:50 -070011${NBI_ENDPOINT} ${GLOBAL_NBI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_NBI_IP_ADDR}:${GLOBAL_NBI_SERVER_PORT}
12
13*** Test Cases ***
14NBI Health Check
15 Run NBI Health Check
16
17*** Keywords ***
18Run NBI Health Check
19 [Documentation] Runs NBI Health check
20 ${resp}= Run NBI Get Request ${NBI_HEALTH_CHECK_PATH}
21 Should Be Equal As Integers ${resp.status_code} 200
22
23Run NBI Get Request
24 [Documentation] Runs NBI Get request
25 [Arguments] ${data_path}
26 ${session}= Create Session session ${NBI_ENDPOINT}
27 ${resp}= Get Request session ${data_path}
28 Should Be Equal As Integers ${resp.status_code} 200
29 Log Received response from NBI ${resp.text}
30 ${json}= Set Variable ${resp.json()}
31 ${status}= Get From Dictionary ${json} status
32 Should Be Equal ${status} ok
33 [Return] ${resp}