generated from bcgov/quickstart-openshift
-
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.
feat: e2e regression testing (#1701)
- Loading branch information
Showing
4 changed files
with
92 additions
and
90 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,91 @@ | ||
name: E2E Regression Tests | ||
|
||
on: | ||
workflow_run: | ||
workflows: ['PR Opened'] | ||
types: [completed] | ||
workflow_dispatch: | ||
inputs: | ||
### Required | ||
target: | ||
description: 'PR number, test, uat or prod.' | ||
default: 'test' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
vars: | ||
name: Set Variables | ||
outputs: | ||
target: ${{ steps.env.outputs.target }} | ||
environment: ${{ steps.env.outputs.environment }} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: env | ||
id: env | ||
run: | | ||
pr="${{github.event.workflow_run.pull_requests[0].number}}" | ||
if [[pr]]; then | ||
target="$pr" | ||
environment="dev" | ||
else | ||
target=${{inputs.target}} | ||
environment=${{inputs.target}} | ||
fi | ||
echo target=$target | tee $GITHUB_OUTPUT | ||
echo environment=$environment | tee $GITHUB_OUTPUT | ||
${{matrix.test}}: | ||
name: ${{matrix.test}} | ||
needs: [vars] | ||
environment: ${{needs.vars.outputs.environment}} | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
working-directory: tests/ | ||
strategy: | ||
matrix: | ||
browser: | ||
- chrome | ||
- edge | ||
- firefox | ||
test: | ||
- 'bceid-crud-power-units.cy.js' | ||
- 'bceid-crud-trailers.cy.js' | ||
- 'bceid-new-term-oversize.cy.js' | ||
- 'bceid-new-term-overweight.cy.js' | ||
- 'bceid-update-term-oversize.cy.js' | ||
- 'idir-amend-term-oversize.cy.js' | ||
- 'idir-void-term-oversize.cy.js' | ||
|
||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cypress-io/[email protected] | ||
name: Cypress run | ||
env: | ||
CYPRESS_baseUrl: https://${{ github.event.repository.name }}-${{ needs.vars.outputs.target || 'test' }}-frontend.apps.silver.devops.gov.bc.ca/ | ||
CYPRESS_bceid_username: ${{vars.BCEID_USERNAME}} | ||
CYPRESS_bceid_password: ${{secrets.BCEID_PASSWORD}} | ||
with: | ||
browser: ${{ matrix.browser }} | ||
config: pageLoadTimeout=10000,video=true | ||
spec: cypress/e2e/${{matrix.test}} | ||
working-directory: tests | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: ${{matrix.test}} screenshot | ||
path: tests/cypress/screenshots/ | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: ${{matrix.test}} video | ||
path: tests/cypress/videos/ | ||
overwrite: true | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` | ||
|
This file was deleted.
Oops, something went wrong.
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