-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add openmrs e2e tests to test both LIME demo
- Loading branch information
Showing
4 changed files
with
173 additions
and
7 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,158 @@ | ||
name: Run E2E Tests on Release PRs | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
patient_management_ref: ${{steps.refs.outputs.patient_management}} | ||
patient_chart_ref: ${{steps.refs.outputs.patient_chart}} | ||
esm_core_ref: ${{steps.refs.outputs.esm_core}} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Build and Run Containers | ||
run: docker-compose -f distro/e2e_test_support_files/docker-compose-build.yml up -d | ||
|
||
- name: Wait for the backend to start | ||
run: while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost/openmrs/login.htm)" != "200" ]]; do sleep 10; done | ||
|
||
- name: Commit and export Containers | ||
run: sh distro/e2e_test_support_files/commit_and_export_images.sh | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: e2e_release_env_images | ||
path: e2e_release_env_images.tar.gz | ||
retention-days: 1 | ||
|
||
run-patient-management-e2e-tests: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Create Temporary Directory to Download Docker Images | ||
id: tempdir | ||
run: echo "tmpdir=$(mktemp -d)" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Download Docker Images | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: e2e_release_env_images | ||
path: ${{ steps.tempdir.outputs.tmpdir }} | ||
|
||
- name: Load Docker Images | ||
run: | | ||
gzip -d ${{ steps.tempdir.outputs.tmpdir }}/e2e_release_env_images.tar.gz | ||
docker load --input ${{ steps.tempdir.outputs.tmpdir }}/e2e_release_env_images.tar | ||
docker image ls -a | ||
- name: Spin up an OpenMRS Instance | ||
run: docker-compose up -d | ||
working-directory: distro/e2e_test_support_files | ||
|
||
- name: Checkout to the Repo's Tag | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: openmrs/openmrs-esm-patient-management | ||
ref: ${{ needs.build.outputs.patient_management_ref }} | ||
path: e2e_repo | ||
|
||
- name: Copy test environment variables | ||
run: cp example.env .env | ||
working-directory: e2e_repo | ||
|
||
- name: Install dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: yarn install --immutable | ||
working-directory: e2e_repo | ||
|
||
- name: Install Playwright Browsers | ||
run: npx playwright install chromium --with-deps | ||
working-directory: e2e_repo | ||
|
||
- name: Wait for the OpenMRS instance to start | ||
run: while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/openmrs/login.htm)" != "200" ]]; do sleep 10; done | ||
|
||
- name: Run E2E tests | ||
run: yarn playwright test | ||
working-directory: e2e_repo | ||
|
||
- name: Upload Report | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: report-patient-management | ||
path: e2e_repo/playwright-report/ | ||
retention-days: 30 | ||
|
||
run-patient-chart-e2e-tests: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Create Temporary Directory to Download Docker Images | ||
id: tempdir | ||
run: echo "tmpdir=$(mktemp -d)" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Download Docker Images | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: e2e_release_env_images | ||
path: ${{ steps.tempdir.outputs.tmpdir }} | ||
|
||
- name: Load Docker Images | ||
run: | | ||
gzip -d ${{ steps.tempdir.outputs.tmpdir }}/e2e_release_env_images.tar.gz | ||
docker load --input ${{ steps.tempdir.outputs.tmpdir }}/e2e_release_env_images.tar | ||
docker image ls -a | ||
- name: Spin up an OpenMRS Instance | ||
run: docker-compose up -d | ||
working-directory: distro/e2e_test_support_files | ||
|
||
- name: Checkout to the Repo's Tag | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: openmrs/openmrs-esm-patient-chart | ||
ref: ${{ needs.build.outputs.patient_chart_ref }} | ||
path: e2e_repo | ||
|
||
- name: Copy test environment variables | ||
run: cp example.env .env | ||
working-directory: e2e_repo | ||
|
||
- name: Install dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: yarn install --immutable | ||
working-directory: e2e_repo | ||
|
||
- name: Install Playwright Browsers | ||
run: npx playwright install chromium --with-deps | ||
working-directory: e2e_repo | ||
|
||
- name: Wait for the OpenMRS instance to start | ||
run: while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/openmrs/login.htm)" != "200" ]]; do sleep 10; done | ||
|
||
- name: Run E2E tests | ||
run: yarn playwright test | ||
working-directory: e2e_repo | ||
|
||
- name: Upload Report | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: report-patient-chart | ||
path: e2e_repo/playwright-report/ | ||
retention-days: 30 |
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