Skip to content
Permalink
master
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
*** Settings ***
Library RequestsLibrary
*** Keywords ***
Get All Entities
[Arguments] ${baseUrl}
Create Session md ${baseUrl}
${resp}= GET On Session md /entities
[Return] ${resp}
Get Entity
[Arguments] ${baseUrl} ${identifier} ${expectedStatus}=200
Create Session md ${baseUrl}
${resp}= GET On Session md /entities/${identifier} expected_status=${expectedStatus}
[Return] ${resp}
Get Entity With Gzip
[Arguments] ${baseUrl} ${identifier}
Create Session md ${baseUrl}
&{headers}= Create Dictionary Accept-Encoding=gzip
${resp}= GET On Session md /entities/${identifier} headers=${headers}
[Return] ${resp}
Conditional Get Entity
[Arguments] ${baseUrl} ${identifier} ${etag}
&{headers}= Create Dictionary If-None-Match=${etag}
Create Session md ${baseUrl}
${resp}= GET On Session md /entities/${identifier} headers=${headers}
[Return] ${resp}