blob: 7531be78adc2a1076c7501b00d0bf8b72638181c (
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
|
*** Settings ***
Documentation The main interface for interacting with External API/NBI
Library RequestsLibrary
Library Collections
Resource global_properties.robot
*** Variables ***
${NBI_HEALTH_CHECK_PATH} /nbi/api/v4/status
${NBI_ENDPOINT} ${GLOBAL_NBI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_NBI_IP_ADDR}:${GLOBAL_NBI_SERVER_PORT}
*** Keywords ***
Run NBI Health Check
[Documentation] Runs NBI Health check
${resp}= Run NBI Get Request ${NBI_HEALTH_CHECK_PATH}
Should Be Equal As Integers ${resp.status_code} 200
Run NBI Get Request
[Documentation] Runs NBI Get request
[Arguments] ${data_path}
${session}= Create Session session ${NBI_ENDPOINT}
${resp}= Get Request session ${data_path}
Should Be Equal As Integers ${resp.status_code} 200
Log Received response from NBI ${resp.text}
${json}= Set Variable ${resp.json()}
${status}= Get From Dictionary ${json} status
Should Be Equal ${status} ok
[Return] ${resp}
|