Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation The main interface for interacting with External API/NBI |
| 3 | Library RequestsLibrary |
| 4 | Library Collections |
| 5 | |
| 6 | *** Variables *** |
| 7 | ${GLOBAL_NBI_SERVER_PROTOCOL} http |
| 8 | ${GLOBAL_INJECTED_NBI_IP_ADDR} localhost |
| 9 | ${GLOBAL_NBI_SERVER_PORT} 8080 |
Matthieu Geerebaert | ffb46a3 | 2019-05-29 15:54:14 +0200 | [diff] [blame] | 10 | ${NBI_HEALTH_CHECK_PATH} /nbi/api/v4/status |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 11 | ${NBI_ENDPOINT} ${GLOBAL_NBI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_NBI_IP_ADDR}:${GLOBAL_NBI_SERVER_PORT} |
| 12 | |
| 13 | *** Test Cases *** |
| 14 | NBI Health Check |
| 15 | Run NBI Health Check |
| 16 | |
| 17 | *** Keywords *** |
| 18 | Run 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 | |
| 23 | Run 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} |