Skip to content
Permalink
0a6e879ef6
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
28 lines (25 sloc) 861 Bytes
*** Settings ***
Library XML
Resource MDQ.robot
Default Tags all-entities
*** Test Cases ***
Get All Entities
[Documentation] GET all entities
[Tags] http-get
${resp}= Get uri=/entities
Should Be Equal As Strings ${resp.status_code} 200
#${root}= Parse XML ${resp.text}
#Should Be Equal ${root.tag} EntitiesDescriptor
Gzip Encoding
[Documentation] GET all entities with gzip encoding
[Tags] http-get gzip
${resp}= Get With Gzip uri=/entities/urn:mace:incommon:internet2.edu
Should Be Equal As Strings ${resp.status_code} 200
Should Be Equal ${resp.encoding} gzip
#${root}= Parse XML ${resp.text}
#Should Be Equal ${root.tag} EntitiesDescriptor
Head All Entities
[Documentation] HEAD all entities
[Tags] http-head
${resp}= Head uri=/entities
Should Be Equal As Strings ${resp.status_code} 200