-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #363 from dimagi/QA-7010-separate-testsuites-for-e…
…scape-issues-and-exports QA-7010 Separated testsuites for exports and escape defects
- Loading branch information
Showing
179 changed files
with
1,836 additions
and
394 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,300 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: Export Tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: 'Environment to run tests against' | ||
required: true | ||
default: 'staging' | ||
type: choice | ||
options: | ||
- staging | ||
- production | ||
- india | ||
schedule: | ||
- cron: '30 5 * * 1-5' | ||
|
||
jobs: | ||
set_matrix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix-schedule.outputs.matrix || steps.set-matrix-manual.outputs.matrix || steps.set-matrix-default.outputs.matrix }} | ||
steps: | ||
- id: set-matrix-schedule | ||
if: ${{ github.event_name == 'schedule' }} | ||
run: | | ||
echo "::set-output name=matrix::{\"environment\": [\"production\", \"staging\",\"india\"]}" | ||
- id: set-matrix-manual | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
run: | | ||
echo "::set-output name=matrix::{\"environment\": [\"${{ inputs.environment }}\"]}" | ||
- id: set-matrix-default | ||
if: ${{ !contains(github.event_name , 'dispatch') }} | ||
run: | | ||
echo "::set-output name=matrix::{\"environment\": [\"production\", \"staging\",\"india\"]}" | ||
build: | ||
needs: set_matrix | ||
strategy: | ||
fail-fast: false | ||
matrix: ${{ fromJSON(needs.set_matrix.outputs.matrix) }} | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ matrix.environment }} | ||
cancel-in-progress: true | ||
name: Exports on '${{ matrix.environment }}' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r ExportTests/requires.txt | ||
- name: CCHQ Export Test with pytest | ||
env: | ||
DIMAGIQA_ENV: ${{ matrix.environment }} #${{ secrets.DIMAGIQA_URL }} | ||
DIMAGIQA_LOGIN_USERNAME: ${{ secrets.DIMAGIQA_LOGIN_USERNAME }} | ||
DIMAGIQA_LOGIN_PASSWORD: ${{ secrets.DIMAGIQA_LOGIN_PASSWORD }} | ||
DIMAGIQA_MAIL_USERNAME: ${{ secrets.DIMAGIQA_MAIL_USERNAME }} | ||
DIMAGIQA_MAIL_PASSWORD: ${{ secrets.DIMAGIQA_MAIL_PASSWORD }} | ||
DIMAGIQA_IMAP_PASSWORD: ${{secrets.DIMAGIQA_IMAP_PASSWORD}} | ||
run: | | ||
echo "client_payload: ${{ toJson(github.event.client_payload) }}" | ||
echo "matrix environment: ${{ matrix.environment }}" | ||
echo "NOW=$(date +'%m-%d %H:%M')" >> $GITHUB_ENV | ||
echo ${{env.NOW}} | ||
pytest -v --rootdir= ExportTests/testCases -n 2 --dist=loadfile --reruns 1 --html=report_exports_${{ matrix.environment }}.html | ||
- name: Parse test counts | ||
id: parse_counts | ||
if: always() | ||
run: | | ||
# Extract variables from the export_test_counts.txt file | ||
while IFS= read -r line; do | ||
echo "::set-output name=${line%=*}::${line#*=}" | ||
done < export_test_counts_${{ matrix.environment }}.txt | ||
- name: Archive test results | ||
id: artifact-upload-step | ||
if: ${{ success() || failure() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-result-exports-${{ matrix.environment }}-${{ github.run_id }} | ||
path: /home/runner/work/dimagi-qa/dimagi-qa/report_exports_${{ matrix.environment }}.html | ||
retention-days: 2 | ||
|
||
- name: Fetch artifact ID | ||
run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-id }}' | ||
|
||
|
||
- name: Set email vars | ||
if: ${{ failure() }} | ||
id: configure_email | ||
uses: actions/github-script@v6 | ||
env: | ||
JOB_STATUS: ${{ job.status }} | ||
CC_ENV: ${{ matrix.environment }} | ||
with: | ||
script: | | ||
const { promises: fs } = require('fs') | ||
const {JOB_STATUS, NOW, CC_ENV, GITHUB_HEAD_REF} = process.env | ||
const prefix = `[${CC_ENV}] Export Tests - ${JOB_STATUS.toUpperCase()} - Run #${context.runNumber}` | ||
const suffix = `at ${NOW}` | ||
let subject = `${prefix} on "deploy_success" ${suffix}` | ||
if (context.eventName !== "repository_dispatch") { | ||
subject = `${prefix} on branch "${GITHUB_HEAD_REF}" ${suffix}` | ||
} | ||
let bodyFile = './common_utilities/mail_templates/email_pass.md' | ||
if (JOB_STATUS !== 'success') { | ||
bodyFile = './common_utilities/mail_templates/email_fail.md' | ||
} | ||
let actionRunLink = context.payload.repository.html_url + `/actions/runs/${context.runId}` | ||
let testSuite = 'CommCare Export Tests' | ||
let bodyContent = await fs.readFile(bodyFile, 'utf8') | ||
bodyContent = bodyContent.replace(/{{actionRunLink}}/g, actionRunLink) | ||
.replace(/{{runNumber}}/g, context.runNumber) | ||
.replace(/{{environment}}/g, CC_ENV) | ||
.replace(/{{testSuite}}/g, testSuite) | ||
let receivers = '[email protected]' | ||
if (context.eventName !== "pull_request" || context.eventName !== "push") { | ||
receivers = '[email protected], [email protected], [email protected]' | ||
} | ||
return { | ||
"subject": subject, | ||
"body": bodyContent, | ||
"reference": Math.random().toString(36).substr(2), // used to prevent threading of similar emails | ||
"receivers": receivers | ||
} | ||
- name: Send Result Email | ||
if: ${{ failure() }} | ||
uses: dawidd6/action-send-mail@v3 | ||
with: | ||
server_address: smtp.gmail.com | ||
server_port: 465 | ||
username: ${{secrets.DIMAGIQA_MAIL_USERNAME}} | ||
password: ${{secrets.DIMAGIQA_MAIL_PASSWORD}} | ||
subject: ${{ fromJSON(steps.configure_email.outputs.result).subject }} | ||
to: ${{ fromJSON(steps.configure_email.outputs.result).receivers }} | ||
from: <${{secrets.DIMAGIQA_MAIL_USERNAME}}> | ||
html_body: ${{ fromJSON(steps.configure_email.outputs.result).body }} | ||
convert_markdown: true | ||
attachments: ${{ github.workspace }}/report_exports_${{ matrix.environment }}.html | ||
in_reply_to: ${{ fromJSON(steps.configure_email.outputs.result).reference }} | ||
|
||
- name: Post to Slack channel on Failure | ||
id: slack_fail | ||
uses: slackapi/[email protected] | ||
if: ${{ steps.configure_slack.outputs.result != ' ' && failure() }} | ||
with: | ||
payload: | | ||
{ | ||
"attachments": [ | ||
{ | ||
"color": "#FF0000", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": " Bonjour :alphabet-yellow-q::alphabet-yellow-a: 👋 \n*${{ github.workflow }}* were just triggered!\n" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "*Passed:* ${{ steps.parse_counts.outputs.PASSED }} *Failed:* ${{ steps.parse_counts.outputs.FAILED }} *Error:* ${{ steps.parse_counts.outputs.ERROR }} *Skipped:* ${{ steps.parse_counts.outputs.SKIPPED }} *XFail:* ${{ steps.parse_counts.outputs.XFAIL }}\n" | ||
} | ||
}, | ||
{ | ||
"type": "context", | ||
"elements": [ | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Environment: *\n ${{ matrix.environment }} \n" | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": " " | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Status: *\n ${{ job.status }} :x:" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "Here's the corresponding report :arrow_right::arrow_right:" | ||
}, | ||
"accessory": { | ||
"type": "button", | ||
"text": { | ||
"type": "plain_text", | ||
"text": "Click to Downlaod", | ||
"emoji": true | ||
}, | ||
"value": "click_me_123", | ||
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}", | ||
"action_id": "button-action", | ||
"style": "danger" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FEATURES }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
|
||
- name: Post to Slack channel on Success | ||
id: slack_pass | ||
uses: slackapi/[email protected] | ||
if: ${{ steps.configure_slack.outputs.result != ' ' && success() }} | ||
with: | ||
payload: | | ||
{ | ||
"attachments": [ | ||
{ | ||
"color": "#36a64f", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": " Bonjour :alphabet-yellow-q::alphabet-yellow-a: 👋 \n*${{ github.workflow }}* were just triggered!\n" | ||
} | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "*Passed:* ${{ steps.parse_counts.outputs.PASSED }} *Failed:* ${{ steps.parse_counts.outputs.FAILED }} *Error:* ${{ steps.parse_counts.outputs.ERROR }} *Skipped:* ${{ steps.parse_counts.outputs.SKIPPED }} *XFail:* ${{ steps.parse_counts.outputs.XFAIL }}\n" | ||
} | ||
}, | ||
{ | ||
"type": "context", | ||
"elements": [ | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Environment: *\n ${{ matrix.environment }} \n" | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": " " | ||
}, | ||
{ | ||
"type": "mrkdwn", | ||
"text": "*Status: *\n ${{ job.status }} :white_check_mark:" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "Here's the corresponding report :arrow_right::arrow_right:" | ||
}, | ||
"accessory": { | ||
"type": "button", | ||
"text": { | ||
"type": "plain_text", | ||
"text": "Click to Download", | ||
"emoji": true | ||
}, | ||
"value": "click_me_123", | ||
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}", | ||
"action_id": "button-action", | ||
"style": "primary" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FEATURES }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |
Oops, something went wrong.