Skip to content
Permalink
358bcb5960
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) 848 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
Should Be Equal As Strings ${resp.status_code} 200
Should Be Equal ${resp.headers['content-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