2021-09-01 22:20:28 +03:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-09-15 02:26:31 +03:00
|
|
|
import fs from 'fs';
|
2021-10-15 01:48:05 +03:00
|
|
|
import { test as baseTest, expect } from './playwright-test-fixtures';
|
2021-10-22 22:59:52 +03:00
|
|
|
import { HttpServer } from 'playwright-core/lib/utils/httpServer';
|
2021-10-23 21:23:39 +03:00
|
|
|
import { startHtmlReportServer } from '../../packages/playwright-test/lib/reporters/html';
|
2021-09-01 22:20:28 +03:00
|
|
|
|
2021-10-15 01:48:05 +03:00
|
|
|
const test = baseTest.extend<{ showReport: () => Promise<void> }>({
|
|
|
|
showReport: async ({ page }, use, testInfo) => {
|
2021-10-23 21:23:39 +03:00
|
|
|
let server: HttpServer;
|
2021-10-15 01:48:05 +03:00
|
|
|
await use(async () => {
|
|
|
|
const reportFolder = testInfo.outputPath('playwright-report');
|
2021-10-23 21:23:39 +03:00
|
|
|
server = startHtmlReportServer(reportFolder);
|
2021-10-15 01:48:05 +03:00
|
|
|
const location = await server.start();
|
|
|
|
await page.goto(location);
|
|
|
|
});
|
|
|
|
await server.stop();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
test.use({ channel: 'chrome' });
|
2021-09-01 22:20:28 +03:00
|
|
|
|
2021-09-15 02:26:31 +03:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
`,
|
2021-10-15 01:48:05 +03:00
|
|
|
}, { reporter: 'dot,html', retries: 1 });
|
2021-10-18 06:58:06 +03:00
|
|
|
const report = testInfo.outputPath('playwright-report', 'data', 'report.json');
|
2021-09-15 02:26:31 +03:00
|
|
|
const reportObject = JSON.parse(fs.readFileSync(report, 'utf-8'));
|
2021-10-18 06:58:06 +03:00
|
|
|
delete reportObject.testIdToFileId;
|
|
|
|
delete reportObject.files[0].fileId;
|
|
|
|
delete reportObject.files[0].stats.duration;
|
2021-10-18 18:03:04 +03:00
|
|
|
delete reportObject.stats.duration;
|
2021-09-15 02:26:31 +03:00
|
|
|
|
|
|
|
const fileNames = new Set<string>();
|
2021-10-18 06:58:06 +03:00
|
|
|
for (const test of reportObject.files[0].tests) {
|
2021-09-15 02:26:31 +03:00
|
|
|
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;
|
2021-10-18 06:58:06 +03:00
|
|
|
delete test.path;
|
2021-09-15 02:26:31 +03:00
|
|
|
}
|
2021-10-18 06:58:06 +03:00
|
|
|
expect(reportObject).toEqual({
|
|
|
|
files: [
|
2021-09-15 02:26:31 +03:00
|
|
|
{
|
2021-10-18 06:58:06 +03:00
|
|
|
fileName: 'a.test.js',
|
2021-09-15 02:26:31 +03:00
|
|
|
tests: [
|
|
|
|
{
|
2021-10-18 06:58:06 +03:00
|
|
|
title: 'fails',
|
|
|
|
projectName: 'project-name',
|
2021-09-15 02:26:31 +03:00
|
|
|
location: {
|
|
|
|
file: 'a.test.js'
|
|
|
|
},
|
2021-10-18 06:58:06 +03:00
|
|
|
outcome: 'unexpected',
|
|
|
|
ok: false
|
2021-09-15 02:26:31 +03:00
|
|
|
},
|
|
|
|
{
|
2021-10-18 06:58:06 +03:00
|
|
|
title: 'flaky',
|
|
|
|
projectName: 'project-name',
|
2021-09-15 02:26:31 +03:00
|
|
|
location: {
|
|
|
|
file: 'a.test.js'
|
|
|
|
},
|
2021-10-18 06:58:06 +03:00
|
|
|
outcome: 'flaky',
|
|
|
|
ok: true
|
2021-09-15 02:26:31 +03:00
|
|
|
},
|
|
|
|
{
|
2021-10-18 06:58:06 +03:00
|
|
|
title: 'passes',
|
|
|
|
projectName: 'project-name',
|
2021-09-15 02:26:31 +03:00
|
|
|
location: {
|
|
|
|
file: 'a.test.js'
|
|
|
|
},
|
2021-10-18 06:58:06 +03:00
|
|
|
outcome: 'expected',
|
2021-09-15 02:26:31 +03:00
|
|
|
ok: true
|
|
|
|
},
|
|
|
|
{
|
2021-10-18 06:58:06 +03:00
|
|
|
title: 'skip',
|
|
|
|
projectName: 'project-name',
|
2021-09-15 02:26:31 +03:00
|
|
|
location: {
|
|
|
|
file: 'a.test.js'
|
|
|
|
},
|
2021-10-18 06:58:06 +03:00
|
|
|
outcome: 'skipped',
|
|
|
|
ok: false
|
2021-09-15 02:26:31 +03:00
|
|
|
}
|
2021-10-18 06:58:06 +03:00
|
|
|
],
|
|
|
|
stats: {
|
|
|
|
total: 4,
|
|
|
|
expected: 1,
|
|
|
|
unexpected: 1,
|
|
|
|
flaky: 1,
|
|
|
|
skipped: 1,
|
|
|
|
ok: false,
|
|
|
|
}
|
2021-09-15 02:26:31 +03:00
|
|
|
}
|
|
|
|
],
|
2021-10-18 06:58:06 +03:00
|
|
|
projectNames: [
|
|
|
|
'project-name'
|
2021-10-18 18:03:04 +03:00
|
|
|
],
|
|
|
|
stats: {
|
|
|
|
expected: 1,
|
|
|
|
flaky: 1,
|
|
|
|
ok: false,
|
|
|
|
skipped: 1,
|
|
|
|
total: 4,
|
|
|
|
unexpected: 1,
|
|
|
|
}
|
2021-09-15 02:26:31 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-09-01 22:20:28 +03:00
|
|
|
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' });
|
|
|
|
});
|
|
|
|
`,
|
2021-10-15 01:48:05 +03:00
|
|
|
}, { reporter: 'dot,html' });
|
2021-09-01 22:20:28 +03:00
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
expect(result.passed).toBe(1);
|
|
|
|
});
|
2021-10-15 01:48:05 +03:00
|
|
|
|
|
|
|
test('should include image diff', async ({ runInlineTest, page, showReport }) => {
|
|
|
|
const expected = Buffer.from('iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAAAXNSR0IArs4c6QAAAhVJREFUeJzt07ERwCAQwLCQ/Xd+FuDcQiFN4MZrZuYDjv7bAfAyg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAiEDVPZBYx6ffy+AAAAAElFTkSuQmCC', 'base64');
|
|
|
|
const result = await runInlineTest({
|
|
|
|
'playwright.config.ts': `
|
|
|
|
module.exports = { use: { viewport: { width: 200, height: 200 }} };
|
|
|
|
`,
|
|
|
|
'a.test.js-snapshots/expected-linux.png': expected,
|
|
|
|
'a.test.js-snapshots/expected-darwin.png': expected,
|
|
|
|
'a.test.js-snapshots/expected-win32.png': expected,
|
|
|
|
'a.test.js': `
|
|
|
|
const { test } = pwt;
|
|
|
|
test('fails', async ({ page }, testInfo) => {
|
|
|
|
await page.setContent('<html>Hello World</html>');
|
|
|
|
const screenshot = await page.screenshot();
|
|
|
|
await expect(screenshot).toMatchSnapshot('expected.png');
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}, { reporter: 'dot,html' });
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
expect(result.failed).toBe(1);
|
|
|
|
|
|
|
|
await showReport();
|
|
|
|
await page.click('text=fails');
|
|
|
|
const imageDiff = page.locator('.test-image-mismatch');
|
|
|
|
const image = imageDiff.locator('img');
|
|
|
|
await expect(image).toHaveAttribute('src', /.*png/);
|
|
|
|
const actualSrc = await image.getAttribute('src');
|
|
|
|
await imageDiff.locator('text=Expected').click();
|
|
|
|
const expectedSrc = await image.getAttribute('src');
|
|
|
|
await imageDiff.locator('text=Diff').click();
|
|
|
|
const diffSrc = await image.getAttribute('src');
|
|
|
|
const set = new Set([expectedSrc, actualSrc, diffSrc]);
|
|
|
|
expect(set.size).toBe(3);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should include screenshot on failure', async ({ runInlineTest, page, showReport }) => {
|
|
|
|
const result = await runInlineTest({
|
|
|
|
'playwright.config.ts': `
|
|
|
|
module.exports = {
|
|
|
|
use: {
|
|
|
|
viewport: { width: 200, height: 200 },
|
|
|
|
screenshot: 'only-on-failure',
|
|
|
|
}
|
|
|
|
};
|
|
|
|
`,
|
|
|
|
'a.test.js': `
|
|
|
|
const { test } = pwt;
|
|
|
|
test('fails', async ({ page }) => {
|
|
|
|
await page.setContent('<html>Failed state</html>');
|
|
|
|
await expect(true).toBeFalsy();
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}, { reporter: 'dot,html' });
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
expect(result.failed).toBe(1);
|
|
|
|
|
|
|
|
await showReport();
|
|
|
|
await page.click('text=fails');
|
|
|
|
await expect(page.locator('text=Screenshots')).toBeVisible();
|
|
|
|
await expect(page.locator('img')).toBeVisible();
|
|
|
|
const src = await page.locator('img').getAttribute('src');
|
|
|
|
expect(src).toBeTruthy();
|
|
|
|
});
|
2021-10-16 02:15:06 +03:00
|
|
|
|
|
|
|
test('should include stdio', async ({ runInlineTest, page, showReport }) => {
|
|
|
|
const result = await runInlineTest({
|
|
|
|
'a.test.js': `
|
|
|
|
const { test } = pwt;
|
|
|
|
test('fails', async ({ page }) => {
|
|
|
|
console.log('First line');
|
|
|
|
console.log('Second line');
|
|
|
|
console.error('Third line');
|
|
|
|
await expect(true).toBeFalsy();
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}, { reporter: 'dot,html' });
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
expect(result.failed).toBe(1);
|
|
|
|
|
|
|
|
await showReport();
|
|
|
|
await page.click('text=fails');
|
|
|
|
await page.locator('text=stdout').click();
|
|
|
|
await expect(page.locator('.attachment-body')).toHaveText('First line\nSecond line');
|
|
|
|
await page.locator('text=stderr').click();
|
|
|
|
await expect(page.locator('.attachment-body').nth(1)).toHaveText('Third line');
|
|
|
|
});
|
2021-10-19 07:37:19 +03:00
|
|
|
|
|
|
|
test('should highlight error', async ({ runInlineTest, page, showReport }) => {
|
|
|
|
const result = await runInlineTest({
|
|
|
|
'a.test.js': `
|
|
|
|
const { test } = pwt;
|
|
|
|
test('fails', async ({ page }) => {
|
|
|
|
await expect(true).toBeFalsy();
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}, { reporter: 'dot,html' });
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
expect(result.failed).toBe(1);
|
|
|
|
|
|
|
|
await showReport();
|
|
|
|
await page.click('text=fails');
|
|
|
|
await expect(page.locator('.error-message span:has-text("received")').nth(1)).toHaveCSS('color', 'rgb(204, 0, 0)');
|
|
|
|
});
|
2021-10-23 21:23:39 +03:00
|
|
|
|
|
|
|
test('should show trace source', async ({ runInlineTest, page, showReport }) => {
|
|
|
|
const result = await runInlineTest({
|
|
|
|
'playwright.config.js': `
|
|
|
|
module.exports = { use: { trace: 'on' } };
|
|
|
|
`,
|
|
|
|
'a.test.js': `
|
|
|
|
const { test } = pwt;
|
|
|
|
test('passes', async ({ page }) => {
|
|
|
|
await page.evaluate('2 + 2');
|
|
|
|
});
|
|
|
|
`,
|
|
|
|
}, { reporter: 'dot,html' });
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
expect(result.passed).toBe(1);
|
|
|
|
|
|
|
|
await showReport();
|
|
|
|
await page.click('text=passes');
|
|
|
|
await page.click('img');
|
|
|
|
await page.click('.action-title >> text=page.evaluate');
|
|
|
|
await page.click('text=Source');
|
|
|
|
|
|
|
|
await expect(page.locator('.source-line')).toContainText([
|
|
|
|
/const.*pwt;/,
|
|
|
|
/page\.evaluate/
|
|
|
|
]);
|
|
|
|
await expect(page.locator('.source-line-running')).toContainText('page.evaluate');
|
|
|
|
|
|
|
|
await expect(page.locator('.stack-trace-frame')).toContainText([
|
|
|
|
/a.test.js:[\d]+/,
|
|
|
|
/fixtures.[tj]s:[\d]+/,
|
|
|
|
]);
|
|
|
|
await expect(page.locator('.stack-trace-frame.selected')).toContainText('a.test.js');
|
|
|
|
});
|