blob: d0c7034f89f71f62211b326cfbb2adf943d40a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
*** Settings ***
Library Collections
Library RequestsLibrary
Library OperatingSystem
Library json
*** Variables ***
*** Test Cases ***
Healthcheck
Create Session refrepo http://${REPO_IP}:9092
&{headers}= Create Dictionary Authorization=Basic dm5mbTpwYXNzd29yZDEk== Content-Type=application/json
${resp}= Get Request refrepo /manage/health headers=${headers}
Run Keyword If '${resp.status_code}' == 'UP' log to console \nexecuted with expected result
|