forked from Sage-Bionetworks/sage-monorepo
-
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.
feat(schematic): integration testing (Sage-Bionetworks#2400)
* feat(schematic): integration testing (Sage-Bionetworks#2398) * changed authenticication so that only endpoints that need it have it * updated schematic * add patch for access token * schema endpoints no longer mockeed * added tests for handle exceptions * added integration tests * marked synapse tests * added error handling for bad schema urls * fix error message * add workflow for end to end testing * fix some test results * add unit mark * add unit mark * add workflow for testing with secrets * rename file * fix synapse test file when secrets file doesnt exists * fix test workflows * turned synapse ids into secrets in workflow * turned synapse ids into secrets in workflow * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml * Update schematic-api-ci.yml
- Loading branch information
1 parent
8df5976
commit dad6440
Showing
13 changed files
with
660 additions
and
511 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,128 @@ | ||
name: Schematic API CI | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
env: | ||
NX_BRANCH: ${{ github.event.number }} | ||
NX_RUN_GROUP: ${{ github.run_id }} | ||
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }} | ||
NX_CLOUD_ENCRYPTION_KEY: ${{ secrets.NX_CLOUD_ENCRYPTION_KEY }} | ||
NX_CLOUD_ENV_NAME: 'linux' | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
DOCKER_USERNAME: ${{ github.actor }} | ||
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
pr: | ||
runs-on: ubuntu-22.04-4core-16GBRAM-150GBSSD | ||
# Runs this job if: | ||
# 1. Triggered by a PR | ||
# 2. The PR originate from the Schematic-API-Staging branch | ||
# 3. Targets the main branch | ||
if: | | ||
github.event_name == 'pull_request' && | ||
github.event.pull_request.base.ref == 'main' && | ||
github.event.pull_request.head.ref == 'Schematic-API-Staging' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
fetch-depth: 0 | ||
|
||
- name: Derive appropriate SHAs for base and head for `nx affected` commands | ||
uses: nrwl/nx-set-shas@v3 | ||
|
||
- name: Set up Yarn cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: '/tmp/.yarn/cache' | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Set up Poetry cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: '/tmp/.cache/pypoetry' | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Set up venv cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/tmp/.local/share/virtualenv | ||
**/.venv | ||
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Set up Gradle cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/tmp/.gradle/caches | ||
/tmp/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Install the Dev Container CLI | ||
run: npm install -g @devcontainers/[email protected] | ||
|
||
- name: Start the dev container | ||
run: | | ||
mkdir -p \ | ||
/tmp/.yarn/cache \ | ||
/tmp/.cache/R/renv/cache \ | ||
/tmp/.cache/pypoetry \ | ||
/tmp/.local/share/virtualenv \ | ||
/tmp/.gradle/caches \ | ||
/tmp/.gradle/wrapper | ||
devcontainer up \ | ||
--mount type=bind,source=/tmp/.yarn/cache,target=/workspaces/sage-monorepo/.yarn/cache \ | ||
--mount type=bind,source=/tmp/.cache/R/renv/cache,target=/home/vscode/.cache/R/renv/cache \ | ||
--mount type=bind,source=/tmp/.cache/pypoetry,target=/home/vscode/.cache/pypoetry \ | ||
--mount type=bind,source=/tmp/.local/share/virtualenv,target=/home/vscode/.local/share/virtualenv \ | ||
--mount type=bind,source=/tmp/.gradle/caches,target=/home/vscode/.gradle/caches \ | ||
--mount type=bind,source=/tmp/.gradle/wrapper,target=/home/vscode/.gradle/wrapper \ | ||
--workspace-folder ../sage-monorepo | ||
- name: Prepare the workspace | ||
run: | | ||
devcontainer exec --workspace-folder ../sage-monorepo bash -c " | ||
sudo chown -R vscode:vscode \ | ||
/workspaces/sage-monorepo \ | ||
/home/vscode/.cache \ | ||
/home/vscode/.local \ | ||
/home/vscode/.gradle \ | ||
&& . ./dev-env.sh \ | ||
&& workspace-install" | ||
- name: create synapse config | ||
run: | | ||
import yaml | ||
secrets = { | ||
"synapse_token": "${{ secrets.SCHEMATIC_SYNAPSE_TOKEN }}", | ||
"test_project": "${{ secrets.SCHEMATIC_TEST_PROJECT }}", | ||
"test_dataset": "${{ secrets.SCHEMATIC_TEST_DATASET }}", | ||
"test_manifest": "${{ secrets.SCHEMATIC_TEST_MANIFEST }}", | ||
"test_asset_view": "${{ secrets.SCHEMATIC_TEST_ASSET_VIEW }}" | ||
} | ||
for key, secret in secrets.items(): | ||
assert secret is not None | ||
assert isinstance(secret, str) | ||
assert len(secret) > 0 | ||
with open('apps/schematic/api/schematic_api/test/data/synapse_config.yaml', 'w') as file: | ||
yaml.dump(secrets, file) | ||
shell: python | ||
|
||
- name: Test the affected projects (all) | ||
run: | | ||
devcontainer exec --workspace-folder ../sage-monorepo bash -c ". ./dev-env.sh \ | ||
&& nx affected --target=test-all" | ||
- name: Remove the dev container | ||
run: docker rm -f sage_devcontainer |
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 |
---|---|---|
|
@@ -69,6 +69,7 @@ target/ | |
|
||
#secrets | ||
*secrets* | ||
synapse_config.yaml | ||
|
||
#schematic downloaded files | ||
manifests | ||
|
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[pytest] | ||
markers = | ||
synapse: tests that interact with synapse | ||
secrets: tests that require secrets |
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
5 changes: 5 additions & 0 deletions
5
apps/schematic/api/schematic_api/test/data/synapse_config_example.yaml
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,5 @@ | ||
synapse_token: xxx | ||
test_project: syn53072007 | ||
test_dataset: syn53072009 | ||
test_manifest: syn53072014 | ||
test_asset_view: syn53072011 |
Oops, something went wrong.