Skip to content
Permalink
c94738210a
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
26 lines (22 sloc) 1.12 KB
*** 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