-
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.
TIDO-550 Update testing framework (#7)
- Loading branch information
Showing
9 changed files
with
88 additions
and
44 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 @@ | ||
| { | ||
| "build": { | ||
| "dockerfile": "../Dockerfile" | ||
| }, | ||
| "customizations": { | ||
| "vscode": { | ||
| "extensions": [ | ||
| "d-biehl.robotcode" | ||
| ] | ||
| } | ||
| }, | ||
| "postCreateCommand": "echo alias robot=\\'robot --outputdir output\\' >> ~/.bashrc", | ||
| "workspaceMount": "source=${localWorkspaceFolder},target=/app,type=bind", | ||
| "workspaceFolder": "/app" | ||
| } |
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 |
|---|---|---|
| @@ -1,7 +1,5 @@ | ||
| *.pyc | ||
| __pycache__ | ||
| .DS_Store | ||
| log.html | ||
| output.xml | ||
| output/ | ||
| pip-selfcheck.json | ||
| report.html |
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,11 @@ | ||
| FROM python:3.13.3-slim-bullseye | ||
|
|
||
| # Need curl for http version tests | ||
| RUN apt-get update && apt-get install -y curl | ||
|
|
||
| # Set the working directory inside the container | ||
| WORKDIR /app | ||
|
|
||
| # Install the dependencies for robot framework | ||
| COPY requirements.txt . | ||
| RUN pip install --no-cache-dir -r requirements.txt |
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
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
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
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| certifi==2021.10.8 | ||
| charset-normalizer==2.0.12 | ||
| idna==3.3 | ||
| requests==2.27.1 | ||
| robotframework==5.0 | ||
| robotframework-requests==0.9.2 | ||
| urllib3==1.26.9 | ||
| certifi==2025.1.31 | ||
| charset-normalizer==3.4.1 | ||
| idna==3.10 | ||
| requests==2.32.3 | ||
| robotframework==7.2.2 | ||
| robotframework-requests==0.9.7 | ||
| urllib3==2.4.0 |
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,29 @@ | ||
| # Base Metadata Query server URL | ||
| BASE_URL = "http://mdq-dev.ti.internet2.edu" | ||
|
|
||
| # Any known existing entityID | ||
| ENTITY_ID = "https://login.at.internet2.edu/Saml2/proxy_saml2_backend.xml" | ||
|
|
||
| # Percent-encoded form of ENTITY_ID above | ||
| ENTITY_ID_ENCODED = "https:%2F%2Flogin.at.internet2.edu%2FSaml2%2Fproxy_saml2_backend.xml" | ||
|
|
||
| # Percent-encoded form of ENTITY_ID above using uppercase percent-encoding | ||
| ENTITY_ID_ENCODED_UPPERCASE = "https:%2F%2Flogin.at.internet2.edu%2FSaml2%2Fproxy_saml2_backend.xml" | ||
|
|
||
| # Percent-encoded form of ENTITY_ID above using lowercase percent-encoding | ||
| ENTITY_ID_ENCODED_LOWERCASE = "https:%2f%2flogin.at.internet2.edu%2fSaml2%2fproxy_saml2_backend.xml" | ||
|
|
||
| # SHA-1 transformed form of ENTITY_ID above | ||
| ENTITY_ID_SHA1 = "e7c92201d85ed38c817ebe3a63866fd948f22d14" | ||
|
|
||
| # InCommon URL-style entityID | ||
| INC_ENTITY_ID_URL = "https://login.at.internet2.edu/Saml2/proxy_saml2_backend.xml" | ||
|
|
||
| # Percent-encoded form of INC_ENTITY_ID_URL above | ||
| INC_ENTITY_ID_URL_ENCODED = "https:%2F%2Flogin.at.internet2.edu%2FSaml2%2Fproxy_saml2_backend.xml" | ||
|
|
||
| # InCommon URN-style entityID | ||
| INC_ENTITY_ID_URN = "urn:mace:incommon:internet2.edu" | ||
|
|
||
| # InCommon collection of all IdPs | ||
| INC_ALL_IDPS = "idps/all" |
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