2021-06-06 17:09:53 -07: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-02-07 15:11:44 -08:00
|
|
|
|
import { test, expect } from './playwright-test-fixtures';
|
2021-06-06 17:09:53 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
for (const useIntermediateMergeReport of [false, true] as const) {
|
|
|
|
|
test.describe(`${useIntermediateMergeReport ? 'merged' : 'created'}`, () => {
|
|
|
|
|
test.use({ useIntermediateMergeReport });
|
2021-06-06 17:09:53 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('render unexpected after retry', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const { test, expect } = require('@playwright/test');
|
|
|
|
|
test('one', async ({}) => {
|
|
|
|
|
expect(1).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { retries: 3, reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('[1/1] a.test.js:3:11 › one');
|
|
|
|
|
expect(text).toContain('[2/1] (retries) a.test.js:3:11 › one (retry #1)');
|
|
|
|
|
expect(text).toContain('[3/1] (retries) a.test.js:3:11 › one (retry #2)');
|
|
|
|
|
expect(text).toContain('[4/1] (retries) a.test.js:3:11 › one (retry #3)');
|
|
|
|
|
expect(text).toContain('1 failed');
|
|
|
|
|
expect(text).toContain('1) a.test');
|
|
|
|
|
expect(text).not.toContain('2) a.test');
|
|
|
|
|
expect(text).toContain('Retry #1 ────');
|
|
|
|
|
expect(text).toContain('Retry #2 ────');
|
|
|
|
|
expect(text).toContain('Retry #3 ────');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
2022-07-07 09:55:12 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('render flaky', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('one', async ({}, testInfo) => {
|
|
|
|
|
expect(testInfo.retry).toBe(3);
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { retries: 3, reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('1 flaky');
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
});
|
2022-02-11 08:33:56 -08:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('should print flaky failures', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.spec.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('foobar', async ({}, testInfo) => {
|
|
|
|
|
expect(testInfo.retry).toBe(1);
|
|
|
|
|
});
|
|
|
|
|
`
|
|
|
|
|
}, { retries: '1', reporter: 'line' });
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
expect(result.flaky).toBe(1);
|
|
|
|
|
expect(result.output).toContain('expect(testInfo.retry).toBe(1)');
|
|
|
|
|
});
|
2022-06-27 11:25:42 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('should work on CI', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.js': `
|
|
|
|
|
const { test, expect } = require('@playwright/test');
|
|
|
|
|
test('one', async ({}) => {
|
|
|
|
|
expect(1).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'line' }, { CI: '1' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('[1/1] a.test.js:3:11 › one');
|
|
|
|
|
expect(text).toContain('1 failed');
|
|
|
|
|
expect(text).toContain('1) a.test');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('should print output', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.spec.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('foobar', async ({}, testInfo) => {
|
|
|
|
|
process.stdout.write('one');
|
|
|
|
|
process.stdout.write('two');
|
|
|
|
|
console.log('full-line');
|
2023-04-05 13:03:42 -07:00
|
|
|
|
});
|
2023-06-16 21:30:55 -07:00
|
|
|
|
`
|
|
|
|
|
}, { reporter: 'line' });
|
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
expect(result.output).toContain([
|
|
|
|
|
'a.spec.ts:3:15 › foobar',
|
|
|
|
|
'one',
|
|
|
|
|
'',
|
|
|
|
|
'two',
|
|
|
|
|
'',
|
|
|
|
|
'full-line',
|
|
|
|
|
].join('\n'));
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
|
2024-06-12 08:24:12 -07:00
|
|
|
|
test('should trim multiline step titles to first line', {
|
|
|
|
|
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/31266' }
|
|
|
|
|
}, async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
await test.step(\`outer
|
|
|
|
|
1.0\`, async () => {
|
|
|
|
|
await test.step(\`inner
|
|
|
|
|
1.1\`, async () => {
|
|
|
|
|
expect(1).toBe(1);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
2024-12-16 10:15:52 +00:00
|
|
|
|
expect(text).toContain('[1/1] a.test.ts:3:15 › passes › outer › inner');
|
2024-06-12 08:24:12 -07:00
|
|
|
|
expect(result.exitCode).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('should render failed test steps', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
await test.step('outer 1.0', async () => {
|
|
|
|
|
await test.step('inner 1.1', async () => {
|
|
|
|
|
expect(1).toBe(2);
|
|
|
|
|
});
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
});
|
2023-06-16 21:30:55 -07:00
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('1) a.test.ts:3:15 › passes › outer 1.0 › inner 1.1 ──');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('should not render more than one failed test steps in header', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
await test.step('outer 1.0', async () => {
|
|
|
|
|
await test.step('inner 1.1', async () => {
|
|
|
|
|
expect.soft(1).toBe(2);
|
|
|
|
|
});
|
|
|
|
|
await test.step('inner 1.2', async () => {
|
|
|
|
|
expect.soft(1).toBe(2);
|
|
|
|
|
});
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
});
|
2023-06-16 21:30:55 -07:00
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('1) a.test.ts:3:15 › passes › outer 1.0 ──');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
|
2023-06-16 21:30:55 -07:00
|
|
|
|
test('should not render more than one failed test steps in header (2)', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.ts': `
|
|
|
|
|
import { test, expect } from '@playwright/test';
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
await test.step('outer 1.0', async () => {
|
|
|
|
|
await test.step('inner 1.1', async () => {
|
|
|
|
|
expect.soft(1).toBe(2);
|
|
|
|
|
});
|
|
|
|
|
});
|
2023-04-05 13:03:42 -07:00
|
|
|
|
expect.soft(1).toBe(2);
|
|
|
|
|
});
|
2023-06-16 21:30:55 -07:00
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'line' });
|
|
|
|
|
const text = result.output;
|
|
|
|
|
expect(text).toContain('1) a.test.ts:3:15 › passes ──');
|
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
|
|
|
|
});
|
2024-12-20 09:17:09 -08:00
|
|
|
|
}
|