blob: 5d354dde9601f4e6ec4254b0308e463ddda336a0 [file] [log] [blame]
*** Settings ***
Library OperatingSystem
Library RequestsLibrary
*** Variables ***
${MESSAGE} Hello, world!
*** Test Cases ***
String Equality Test
Should Be Equal ${MESSAGE} Hello, world!
Dir Test
[Documentation] Check if /tmp exists
Log ${MESSAGE}
CheckDir /tmp
Url Test
[Documentation] Check if www.onap.org can be reached
Create Session openo http://www.onap.org
CheckUrl openo /
*** Keywords ***
CheckDir
[Arguments] ${path}
Directory Should Exist ${path}
CheckUrl
[Arguments] ${session} ${path}
${resp}= Get Request ${session} ${path}
Should Be Equal As Integers ${resp.status_code} 200