blob: be63f22f6d29ce142bb067c0b82ee4d8903d9a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
*** Settings ***
Library Collections
Library RequestsLibrary
Library OperatingSystem
Library json
*** Variables ***
${login} admin
${passw} password
*** Keywords ***
Create the sessions
${auth}= Create List ${login} ${passw}
Create Session clamp https://localhost:8443 auth=${auth} disable_warnings=1
Set Global Variable ${clamp_session} clamp
*** Test Cases ***
Get Requests health check ok
Create the sessions
${resp}= Get Request ${clamp_session} /restservices/clds/v1/healthcheck
Should Be Equal As Strings ${resp.status_code} 200
|