Remove E2E summary test fixtures

This commit is contained in:
Samuel Newman
2026-07-17 13:09:33 +03:00
parent 90267eb655
commit 6acc18f40c
5 changed files with 0 additions and 91 deletions
@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="Maestro Android" tests="2" failures="1" errors="0">
<testcase name="login.yml" classname="Maestro" time="11.8" />
<testcase name="create-account.yml" classname="Maestro" time="8.1">
<failure message="Element not found: Create account">The expected button was not visible.</failure>
</testcase>
</testsuite>
@@ -1 +0,0 @@
Building and installing the development client
@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="Maestro Android" tests="1" failures="0" errors="0">
<testcase name="login.yml" classname="Maestro" time="11.8" />
</testsuite>
@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="Maestro iOS" tests="1" failures="0" errors="0">
<testcase name="login.yml" classname="Maestro" time="12.4" />
</testsuite>
@@ -1,75 +0,0 @@
import assert from 'node:assert/strict'
import path from 'node:path'
import test from 'node:test'
import {fileURLToPath} from 'node:url'
import {buildSummary, parseJUnit} from './summarize-maestro.mjs'
const here = path.dirname(fileURLToPath(import.meta.url))
const fixtures = path.join(here, 'fixtures')
const common = {
artifactUrls: {
ios: 'https://github.test/run/artifacts/1',
android: 'https://github.test/run/artifacts/2',
},
sha: '0123456789abcdef',
runUrl: 'https://github.test/run',
commitUrl: 'https://github.test/commit/0123456789abcdef',
}
test('does not notify for successful jobs and successful JUnit', () => {
const root = path.join(fixtures, 'success')
const summary = buildSummary({
...common,
iosStatus: 'success',
androidStatus: 'success',
iosRoot: path.join(root, 'ios'),
androidRoot: path.join(root, 'android'),
})
assert.equal(summary.notify, false)
assert.deepEqual(
summary.platforms.map(platform => platform.failures),
[[], []],
)
})
test('reports failed flow names and concise failure messages', () => {
const root = path.join(fixtures, 'failed-flow')
const summary = buildSummary({
...common,
iosStatus: 'success',
androidStatus: 'failure',
iosRoot: path.join(fixtures, 'success', 'ios'),
androidRoot: path.join(root, 'android'),
})
assert.equal(summary.notify, true)
assert.match(summary.payload.text, /create-account\.yml/)
assert.match(summary.payload.text, /Element not found: Create account/)
assert.match(summary.payload.text, /Android logs and artifacts/)
})
test('reports the latest setup phase when infrastructure fails before JUnit', () => {
const root = path.join(fixtures, 'infrastructure-failure')
const summary = buildSummary({
...common,
iosStatus: 'failure',
androidStatus: 'success',
iosRoot: path.join(root, 'ios'),
androidRoot: path.join(fixtures, 'success', 'android'),
})
assert.equal(summary.notify, true)
assert.match(
summary.payload.text,
/Setup phase: Building and installing the development client/,
)
})
test('parses self-closing JUnit failures', () => {
const failures = parseJUnit(
'<testsuite failures="1"><testcase name="flow.yml"><failure message="boom"/></testcase></testsuite>',
)
assert.deepEqual(failures, [{name: 'flow.yml', message: 'boom'}])
})