Permalink
Cannot retrieve contributors at this time
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?
md-query-saml-uat/MDQ.robot
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (25 sloc)
962 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** 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} |