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/rfc3986.robot
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15 lines (12 sloc)
660 Bytes
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
# 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 |