Skip to content
Permalink
645a8df664
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (25 sloc) 980 Bytes
*** Settings ***
Library RequestsLibrary
*** Keywords ***
Get All Entities
[Arguments] ${baseUrl}
Create Session alias=md url=${baseUrl}
${resp}= Get Request alias=md uri=entities
[Return] ${resp}
Get Entity
[Arguments] ${baseUrl} ${identifier}
Create Session alias=md url=${baseUrl}
${resp}= Get Request alias=md uri=/entities/${identifier}
[Return] ${resp}
Get Entity With Gzip
[Arguments] ${baseUrl} ${identifier}
Create Session alias=md url=${baseUrl}
&{headers}= Create Dictionary Accept-Encoding=gzip
${resp}= Get Request alias=md uri=entities/${identifier} headers=${headers}
[Return] ${resp}
Conditional Get Entity
[Arguments] ${baseUrl} ${identifier} ${etag}
&{headers}= Create Dictionary If-None-Match=${etag}
Create Session alias=md url=${baseUrl}
${resp}= Get Request alias=md uri=/entities/${identifier} headers=${headers}
[Return] ${resp}