Skip to content

Commit 0fe906c

Browse files
authored
ci: Add viewable Matrix test Playwright reports (#1169)
1 parent f20e3eb commit 0fe906c

File tree

42 files changed

+110
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+110
-83
lines changed

.github/workflows/ci.yaml

+82-40
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,14 @@ jobs:
176176
with:
177177
junit_files: junit/host.xml
178178

179-
matrix-client-test-1:
180-
name: Matrix Client Tests - Group 1
179+
matrix-client-test:
180+
name: Matrix Client Tests
181181
runs-on: ubuntu-latest
182-
concurrency:
183-
group: matrix-client-test-1-${{ github.head_ref || github.run_id }}
184-
cancel-in-progress: true
182+
strategy:
183+
fail-fast: false
184+
matrix:
185+
shardIndex: [1, 2, 3, 4, 5, 6]
186+
shardTotal: [6]
185187
steps:
186188
- uses: actions/checkout@v3
187189
- uses: ./.github/actions/init
@@ -203,50 +205,90 @@ jobs:
203205
run: pnpm start:without-matrix &
204206
working-directory: packages/realm-server
205207
- name: Run Playwright tests
206-
run: pnpm test:group group1
208+
run: pnpm test:group ${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
207209
working-directory: packages/matrix
208-
- uses: actions/upload-artifact@v3
209-
if: always()
210+
211+
- name: Upload blob report to GitHub Actions Artifacts
212+
if: ${{ !cancelled() }}
213+
uses: actions/upload-artifact@v4
210214
with:
211-
name: playwright-report
212-
path: packages/matrix/playwright-report/
213-
retention-days: 30
215+
name: blob-report-${{ matrix.shardIndex }}
216+
path: packages/matrix/blob-report
217+
retention-days: 1
214218

215-
matrix-client-test-2:
216-
name: Matrix Client Tests - Group 2
219+
matrix-client-merge-reports-and-publish:
220+
name: Merge Matrix reports and publish
221+
if: always()
222+
needs: matrix-client-test
217223
runs-on: ubuntu-latest
218-
concurrency:
219-
group: matrix-client-test-2-${{ github.head_ref || github.run_id }}
220-
cancel-in-progress: true
224+
225+
permissions:
226+
id-token: write
227+
contents: write
228+
checks: write
229+
statuses: write
230+
231+
outputs:
232+
timestamp: ${{ steps.timestampid.outputs.timestamp }}
233+
221234
steps:
235+
- name: Create a timestamp as a directory to store reports in
236+
id: timestampid
237+
run: echo "timestamp=$(date --utc +%Y%m%d_%H%M%SZ)" >> "$GITHUB_OUTPUT"
222238
- uses: actions/checkout@v3
223239
- uses: ./.github/actions/init
224-
- name: Install Playwright Browsers
225-
run: pnpm exec playwright install --with-deps
226-
working-directory: packages/matrix
227-
- name: Build boxel-ui
228-
run: pnpm build
229-
working-directory: packages/boxel-ui/addon
230-
- name: Build boxel-motion
231-
run: pnpm build
232-
working-directory: packages/boxel-motion/addon
233-
- name: Build host dist/ for fastboot
234-
run: pnpm build
240+
241+
- name: Download blob reports from GitHub Actions Artifacts
242+
uses: actions/download-artifact@v4
243+
with:
244+
path: all-blob-reports
245+
pattern: blob-report-*
246+
merge-multiple: true
247+
248+
- name: Merge blobs into one single report
249+
run: pnpm exec playwright merge-reports --reporter html ./all-blob-reports
250+
251+
- name: Upload HTML report
252+
uses: actions/upload-artifact@v4
253+
with:
254+
name: html-report--attempt-${{ github.run_attempt }}
255+
path: playwright-report
256+
retention-days: 14
257+
258+
- name: Set up env
235259
env:
236-
NODE_OPTIONS: --max_old_space_size=4096
237-
working-directory: packages/host
238-
- name: Start realm servers
239-
run: pnpm start:without-matrix &
240-
working-directory: packages/realm-server
241-
- name: Run Playwright tests
242-
run: pnpm test:group group2
243-
working-directory: packages/matrix
244-
- uses: actions/upload-artifact@v3
245-
if: always()
260+
INPUT_ENVIRONMENT: ${{ inputs.environment }}
261+
run: |
262+
echo "AWS_REGION=us-east-1" >> $GITHUB_ENV
263+
echo "AWS_ROLE_ARN=arn:aws:iam::680542703984:role/boxel-matrix-playwright-reports" >> $GITHUB_ENV
264+
echo "AWS_S3_BUCKET=cardstack-boxel-matrix-playwright-reports-staging" >> $GITHUB_ENV
265+
266+
- name: Configure AWS credentials
267+
uses: aws-actions/configure-aws-credentials@v3
246268
with:
247-
name: playwright-report
248-
path: packages/matrix/playwright-report/
249-
retention-days: 30
269+
role-to-assume: ${{ env.AWS_ROLE_ARN }}
270+
aws-region: us-east-1
271+
272+
- name: Publish consolidated report to S3
273+
run: aws s3 sync ./playwright-report s3://cardstack-boxel-matrix-playwright-reports-staging/${{ github.head_ref || github.ref_name }}/${{ steps.timestampid.outputs.timestamp }}
274+
275+
- name: Store Playwright report URL
276+
shell: bash
277+
run: echo "PLAYWRIGHT_REPORT_URL=https://boxel-matrix-playwright-reports.stack.cards/${{ github.head_ref || github.ref_name }}/${{ steps.timestampid.outputs.timestamp }}/index.html" >> $GITHUB_ENV
278+
279+
- name: Add status with link to Playwright report
280+
shell: bash
281+
env:
282+
GITHUB_TOKEN: ${{ github.token }}
283+
REPOSITORY: ${{ github.repository }}
284+
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
285+
run: |
286+
curl \
287+
-X POST \
288+
-H "Authorization: token $GITHUB_TOKEN" \
289+
-H "Accept: application/vnd.github.v3+json" \
290+
https://api.github.com/repos/$REPOSITORY/statuses/$HEAD_SHA \
291+
-d '{"context":"Matrix Playwright tests report","description":"","target_url":"'"$PLAYWRIGHT_REPORT_URL"'","state":"success"}'
250292
251293
realm-server-test:
252294
name: Realm Server Tests

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"@glint/core": "1.3.0",
5151
"@glint/environment-ember-loose": "1.3.0",
5252
"@glint/environment-ember-template-imports": "1.3.0",
53+
"@playwright/test": "^1.43.1",
5354
"@typescript-eslint/eslint-plugin": "^5.17.0",
5455
"@typescript-eslint/parser": "^5.17.0",
5556
"ember-cli-htmlbars": "^6.3.0",

packages/matrix/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"license": "MIT",
55
"devDependencies": {
6-
"@playwright/test": "^1.35.0",
6+
"@playwright/test": "^1.43.1",
77
"@types/fs-extra": "^9.0.13",
88
"@types/jsonwebtoken": "^9.0.5",
99
"@types/node": "^18.18.5",
@@ -29,11 +29,11 @@
2929
"register-test-admin": "MATRIX_IS_ADMIN=TRUE MATRIX_USERNAME=admin MATRIX_PASSWORD=password ts-node --transpileOnly ./scripts/register-test-user.ts",
3030
"register-test-admin-and-token": "pnpm register-test-admin && ts-node --transpileOnly ./scripts/register-test-token.ts",
3131
"register-all": "pnpm register-test-admin-and-token && pnpm register-realm-users && pnpm register-bot-user",
32-
"test": "./scripts/test.sh all",
32+
"test": "./scripts/test.sh",
3333
"test:group": "./scripts/test.sh",
3434
"wait": "sleep 10000000",
3535
"lint": "glint",
36-
"clean": "rm -rf ./synapse-data"
36+
"clean": "rm -rf ./synapse-data"
3737
},
3838
"volta": {
3939
"extends": "../../package.json"

packages/matrix/playwright.config.ts

+2-29
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import { defineConfig, devices } from '@playwright/test';
2-
import { readdirSync } from 'fs';
3-
4-
let tests = readdirSync('./tests');
5-
let middle = Math.floor(tests.length / 2);
6-
let group1 = tests.slice(0, middle);
7-
let group2 = tests.slice(middle);
1+
import { defineConfig } from '@playwright/test';
82

93
/**
104
* See https://playwright.dev/docs/test-configuration.
@@ -15,35 +9,14 @@ export default defineConfig({
159
forbidOnly: !!process.env.CI,
1610
retries: process.env.CI ? 2 : 0,
1711
workers: 1,
18-
reporter: 'html',
12+
reporter: process.env.CI ? 'blob' : 'html',
1913
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2014
use: {
2115
baseURL: 'http://localhost:4202/test',
2216

2317
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
2418
trace: 'on-first-retry',
2519
},
26-
27-
projects: [
28-
{
29-
name: 'all',
30-
use: { ...devices['Desktop Chrome'] },
31-
},
32-
{
33-
name: 'group1',
34-
testMatch: new RegExp(
35-
`.*(${group1.map((i) => i.replace(/\./g, '\\.')).join('|')})`,
36-
),
37-
use: { ...devices['Desktop Chrome'] },
38-
},
39-
{
40-
name: 'group2',
41-
testMatch: new RegExp(
42-
`.*(${group2.map((i) => i.replace(/\./g, '\\.')).join('|')})`,
43-
),
44-
use: { ...devices['Desktop Chrome'] },
45-
},
46-
],
4720
// General timeout per test
4821
timeout: 30000,
4922

packages/matrix/scripts/test.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#! /bin/sh
2+
shard_flag=${1:+--shard}
23
echo "running tests: ${1}"
34
start-server-and-test \
45
'pnpm run wait' \
56
'http-get://localhost:4201/base/fields/boolean-field?acceptHeader=application%2Fvnd.card%2Bjson|http-get://localhost:4202/test/hassan?acceptHeader=application%2Fvnd.card%2Bjson' \
67
'pnpm run start:host-pre-built' \
78
'http://127.0.0.1:4200' \
8-
"pnpm playwright test --project=${1}"
9+
"pnpm playwright test ${shard_flag} ${1}"

pnpm-lock.yaml

+20-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)