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/InCommon.robot
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (22 sloc)
1.12 KB
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 Collections | |
Resource MDQ.robot | |
Variables variables.py | |
*** Test Cases *** | |
URL-Style Entity ID | |
[Documentation] GET an entity with a URL-style entityID | |
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${INC_ENTITY_ID_URL_ENCODED} | |
Should Be Equal As Strings ${resp.status_code} 200 | |
URN-Style Entity ID | |
[Documentation] GET an entity with a URN-style entityID | |
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${INC_ENTITY_ID_URN} | |
Should Be Equal As Strings ${resp.status_code} 200 | |
All IdPs Collection | |
[Documentation] GET the collection of all IdPs | |
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${INC_ALL_IDPS} | |
Should Be Equal As Strings ${resp.status_code} 200 | |
All IdPs Collection (Gzip) | |
[Documentation] GET the collection of all IdPs with Gzip compression | |
${resp}= Get Entity With Gzip baseUrl=${BASE_URL} identifier=${INC_ALL_IDPS} | |
Should Be Equal As Strings ${resp.status_code} 200 msg=MUST support gzip compression | |
Dictionary Should Contain Item ${resp.headers} content-encoding gzip msg=MUST support gzip compression |