2021-10-04 11:32:56 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-02-01 04:14:59 +03:00
|
|
|
|
import { test, expect, stripAnsi } from './playwright-test-fixtures';
|
2021-10-11 17:52:17 +03:00
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
|
|
function relativeFilePath(file: string): string {
|
|
|
|
|
if (!path.isAbsolute(file))
|
|
|
|
|
return file;
|
|
|
|
|
return path.relative(process.cwd(), file);
|
|
|
|
|
}
|
2021-10-04 11:32:56 +03:00
|
|
|
|
|
|
|
|
|
test('print GitHub annotations for success', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const { test } = pwt;
|
|
|
|
|
test('example1', async ({}) => {
|
|
|
|
|
expect(1 + 1).toBe(2);
|
|
|
|
|
});
|
|
|
|
|
`
|
2021-10-16 05:18:56 +03:00
|
|
|
|
}, { reporter: 'github' });
|
2022-02-01 04:14:59 +03:00
|
|
|
|
const text = stripAnsi(result.output);
|
2021-10-04 11:32:56 +03:00
|
|
|
|
expect(text).not.toContain('::error');
|
2021-10-16 05:18:56 +03:00
|
|
|
|
expect(text).toContain('::notice title=🎭 Playwright Run Summary:: 1 passed');
|
2021-10-04 11:32:56 +03:00
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('print GitHub annotations for failed tests', async ({ runInlineTest }, testInfo) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const { test } = pwt;
|
|
|
|
|
test('example', async ({}) => {
|
|
|
|
|
expect(1 + 1).toBe(3);
|
|
|
|
|
});
|
|
|
|
|
`
|
2021-10-16 05:18:56 +03:00
|
|
|
|
}, { retries: 3, reporter: 'github' }, { GITHUB_WORKSPACE: process.cwd() });
|
2022-02-01 04:14:59 +03:00
|
|
|
|
const text = stripAnsi(result.output);
|
2021-10-11 17:52:17 +03:00
|
|
|
|
const testPath = relativeFilePath(testInfo.outputPath('a.test.js'));
|
2021-10-04 11:32:56 +03:00
|
|
|
|
expect(text).toContain(`::error file=${testPath},title=a.test.js:6:7 › example,line=7,col=23:: 1) a.test.js:6:7 › example =======================================================================%0A%0A Retry #1`);
|
|
|
|
|
expect(text).toContain(`::error file=${testPath},title=a.test.js:6:7 › example,line=7,col=23:: 1) a.test.js:6:7 › example =======================================================================%0A%0A Retry #2`);
|
|
|
|
|
expect(text).toContain(`::error file=${testPath},title=a.test.js:6:7 › example,line=7,col=23:: 1) a.test.js:6:7 › example =======================================================================%0A%0A Retry #3`);
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('print GitHub annotations for slow tests', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'playwright.config.ts': `
|
|
|
|
|
module.exports = {
|
|
|
|
|
reportSlowTests: { max: 0, threshold: 100 }
|
|
|
|
|
};
|
|
|
|
|
`,
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const { test } = pwt;
|
|
|
|
|
test('slow test', async ({}) => {
|
|
|
|
|
await new Promise(f => setTimeout(f, 200));
|
|
|
|
|
});
|
|
|
|
|
`
|
2021-10-16 05:18:56 +03:00
|
|
|
|
}, { retries: 3, reporter: 'github' }, { GITHUB_WORKSPACE: '' });
|
2022-02-01 04:14:59 +03:00
|
|
|
|
const text = stripAnsi(result.output);
|
2021-10-04 16:53:26 +03:00
|
|
|
|
expect(text).toContain('::warning title=Slow Test,file=a.test.js::a.test.js took');
|
2021-10-16 05:18:56 +03:00
|
|
|
|
expect(text).toContain('::notice title=🎭 Playwright Run Summary:: 1 passed');
|
2021-10-04 11:32:56 +03:00
|
|
|
|
expect(result.exitCode).toBe(0);
|
2021-11-12 00:25:38 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('print GitHub annotations for global error', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const test = pwt.test.extend({
|
|
|
|
|
w: [async ({}, use) => {
|
|
|
|
|
await use();
|
|
|
|
|
throw new Error('Oh my!');
|
|
|
|
|
}, { scope: 'worker' }],
|
|
|
|
|
});
|
|
|
|
|
test('passes but...', ({w}) => {
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'github' });
|
2022-02-01 04:14:59 +03:00
|
|
|
|
const text = stripAnsi(result.output);
|
2022-02-03 05:33:51 +03:00
|
|
|
|
expect(text).toContain('::error ::Error: Oh my!%0A%0A');
|
2021-11-12 00:25:38 +03:00
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|