v2 WebRTC Calling Tests #6895
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
name: v2 WebRTC Calling Tests | |
on: | |
workflow_call: | |
workflow_dispatch: | |
inputs: | |
region: | |
description: 'Region to test (leave empty to run all)' | |
type: choice | |
required: false | |
options: | |
- '' | |
- 'us' | |
- 'ch' | |
- 'eu' | |
- 'spr-preprod' | |
- 'euswcom' | |
- 'staging' | |
schedule: | |
- cron: '0/30 * * * *' | |
concurrency: | |
group: ${{ github.workflow }}-e2e-webrtc-calling-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
determine_regions: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-regions.outputs.matrix }} | |
steps: | |
- name: Set regions | |
id: set-regions | |
run: | | |
REGIONS='[ | |
{"name": "us", "environment": "production", "config": "PRODUCTION_E2E_JS_SW_TEST_CONFIG", "cxml_conference_region": ""}, | |
{"name": "ch", "environment": "production-ch", "config": "PRODUCTION_E2E_JS_CHREGION_SW_TEST_CONFIG", "cxml_conference_region": "region=\"eu\""}, | |
{"name": "eu", "environment": "production-eu", "config": "PRODUCTION_E2E_JS_EUREGION_SW_TEST_CONFIG", "cxml_conference_region": "region=\"eu\""}, | |
{"name": "spr-preprod", "environment": "production-spr-preprod", "config": "PRODUCTION_E2E_JS_SPRPREPRODREGION_SW_TEST_CONFIG", "cxml_conference_region": "region=\"eu\""}, | |
{"name": "euswcom", "environment": "production-euswcom", "config": "PRODUCTION_EUSWCOM_E2E_JS_SW_TEST_CONFIG", "cxml_conference_region": ""}, | |
{"name": "staging", "environment": "staging", "config": "STAGING_E2E_JS_SW_TEST_CONFIG", "cxml_conference_region": ""} | |
]' | |
if [ "${{ github.event_name }}" = "workflow_dispatch" ] && [ -n "${{ github.event.inputs.region }}" ]; then | |
SELECTED_REGION='${{ github.event.inputs.region }}' | |
FILTERED_REGIONS=$(echo $REGIONS | jq -c "[.[] | select(.name == \"$SELECTED_REGION\")]") | |
else | |
FILTERED_REGIONS=$REGIONS | |
fi | |
echo "$FILTERED_REGIONS" | |
echo "matrix=$(echo $FILTERED_REGIONS | jq -c '{region: .}')" >> $GITHUB_OUTPUT | |
e2e-tests: | |
name: Run E2E tests | |
needs: determine_regions | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: ${{ fromJson(needs.determine_regions.outputs.matrix) }} | |
steps: | |
- run: | | |
echo ${{matrix.region.name}} | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
uses: ./.github/actions/install | |
with: | |
NODE_VERSION: 18.x | |
- name: Build SDKs | |
uses: ./.github/actions/build | |
with: | |
NODE_VERSION: 18.x | |
- name: Install Playwright | |
uses: ./.github/actions/playwright | |
with: | |
PLAYWRIGHT_VERSION: '1.35.1' # TODO: Read from deps ? | |
- name: Run test for ${{ matrix.region.name }} | |
id: run-tests | |
run: npm run -w=@sw-internal/e2e-js dev -- v2WebrtcFromRest.spec.ts webrtcCalling.spec.ts | |
env: | |
SW_TEST_CONFIG: ${{ secrets[matrix.region.config] }} | |
LAML_CONFERENCE_REGION: ${{ matrix.region.cxml_conference_region }} | |
- name: Report Result | |
if: success() || failure() | |
uses: ./.github/actions/report-test-result | |
with: | |
result: ${{ steps.run-tests.conclusion }} | |
test-suite: v2-sdk-tests | |
environment: ${{ matrix.region.environment }} | |
influxdb-bucket: ${{ secrets.INFLUXDB_BUCKET }} | |
influxdb-org: ${{ secrets.INFLUXDB_ORG }} | |
influxdb-token: ${{ secrets.INFLUXDB_TOKEN }} | |
influxdb-url: ${{ secrets.INFLUXDB_URL }} |