Skip to content
Permalink
2af9988b04
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
15 lines (12 sloc) 660 Bytes
# https://www.rfc-editor.org/rfc/rfc3986.txt
*** Settings ***
Resource MDQ.robot
Variables variables.py
*** Test Cases ***
2.1 Percent Encoding
# If two URIs differ only in the case of hexadecimal digits used in
# percent-encoded octets, they are equivalent.
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${ENTITY_ID_ENCODED_UPPERCASE}
Should Be Equal As Strings ${resp.status_code} 200 msg=MUST respond to uppercase percent-encoding
${resp}= Get Entity baseUrl=${BASE_URL} identifier=${ENTITY_ID_ENCODED_LOWERCASE}
Should Be Equal As Strings ${resp.status_code} 200 msg=MUST respond to lowercase percent-encoding