-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # 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 |
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