mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
145 lines
4.2 KiB
TypeScript
145 lines
4.2 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import { test, expect } from './playwright-test-fixtures';
|
|
|
|
const kHTMLReporterPath = path.join(__dirname, '..', '..', 'lib', 'test', 'reporters', 'html.js');
|
|
|
|
test('should generate report', async ({ runInlineTest }, testInfo) => {
|
|
await runInlineTest({
|
|
'playwright.config.ts': `
|
|
module.exports = { name: 'project-name' };
|
|
`,
|
|
'a.test.js': `
|
|
const { test } = pwt;
|
|
test('passes', async ({}) => {});
|
|
test('fails', async ({}) => {
|
|
expect(1).toBe(2);
|
|
});
|
|
test('skip', async ({}) => {
|
|
test.skip('Does not work')
|
|
});
|
|
test('flaky', async ({}, testInfo) => {
|
|
expect(testInfo.retry).toBe(1);
|
|
});
|
|
`,
|
|
}, { reporter: 'dot,' + kHTMLReporterPath, retries: 1 });
|
|
const report = testInfo.outputPath('playwright-report', 'data', 'projects.json');
|
|
const reportObject = JSON.parse(fs.readFileSync(report, 'utf-8'));
|
|
delete reportObject[0].suites[0].duration;
|
|
delete reportObject[0].suites[0].location.line;
|
|
delete reportObject[0].suites[0].location.column;
|
|
|
|
const fileNames = new Set<string>();
|
|
for (const test of reportObject[0].suites[0].tests) {
|
|
fileNames.add(testInfo.outputPath('playwright-report', 'data', test.fileId + '.json'));
|
|
delete test.testId;
|
|
delete test.fileId;
|
|
delete test.location.line;
|
|
delete test.location.column;
|
|
delete test.duration;
|
|
}
|
|
expect(reportObject[0]).toEqual({
|
|
name: 'project-name',
|
|
suites: [
|
|
{
|
|
title: 'a.test.js',
|
|
location: {
|
|
file: 'a.test.js'
|
|
},
|
|
stats: {
|
|
total: 4,
|
|
expected: 1,
|
|
unexpected: 1,
|
|
flaky: 1,
|
|
skipped: 1,
|
|
ok: false
|
|
},
|
|
suites: [],
|
|
tests: [
|
|
{
|
|
location: {
|
|
file: 'a.test.js'
|
|
},
|
|
title: 'passes',
|
|
outcome: 'expected',
|
|
ok: true
|
|
},
|
|
{
|
|
location: {
|
|
file: 'a.test.js'
|
|
},
|
|
title: 'fails',
|
|
outcome: 'unexpected',
|
|
ok: false
|
|
},
|
|
{
|
|
location: {
|
|
file: 'a.test.js'
|
|
},
|
|
title: 'skip',
|
|
outcome: 'skipped',
|
|
ok: true
|
|
},
|
|
{
|
|
location: {
|
|
file: 'a.test.js'
|
|
},
|
|
title: 'flaky',
|
|
outcome: 'flaky',
|
|
ok: true
|
|
}
|
|
]
|
|
}
|
|
],
|
|
stats: {
|
|
total: 4,
|
|
expected: 1,
|
|
unexpected: 1,
|
|
flaky: 1,
|
|
skipped: 1,
|
|
ok: false
|
|
}
|
|
});
|
|
|
|
expect(fileNames.size).toBe(1);
|
|
const fileName = fileNames.values().next().value;
|
|
const testCase = JSON.parse(fs.readFileSync(fileName, 'utf-8'));
|
|
expect(testCase.tests).toHaveLength(4);
|
|
expect(testCase.tests.map(t => t.title)).toEqual(['passes', 'fails', 'skip', 'flaky']);
|
|
expect(testCase).toBeTruthy();
|
|
});
|
|
|
|
test('should not throw when attachment is missing', async ({ runInlineTest }) => {
|
|
const result = await runInlineTest({
|
|
'playwright.config.ts': `
|
|
module.exports = { preserveOutput: 'failures-only' };
|
|
`,
|
|
'a.test.js': `
|
|
const { test } = pwt;
|
|
test('passes', async ({ page }, testInfo) => {
|
|
const screenshot = testInfo.outputPath('screenshot.png');
|
|
await page.screenshot({ path: screenshot });
|
|
testInfo.attachments.push({ name: 'screenshot', path: screenshot, contentType: 'image/png' });
|
|
});
|
|
`,
|
|
}, { reporter: 'dot,' + kHTMLReporterPath });
|
|
expect(result.exitCode).toBe(0);
|
|
expect(result.passed).toBe(1);
|
|
});
|