blob: 10e685213bff1efb5f4c711a6b645be5a1495f2c (
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
30
|
*** 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 google.com can be reached
CheckUrl http://www.google.com
*** Keywords ***
CheckDir
[Arguments] ${path}
Directory Should Exist ${path}
CheckUrl
[Arguments] ${url}
Create Session session ${url}
${resp}= Get Request session /
Should Be Equal As Integers ${resp.status_code} 200
|