playwright/tests/playwright-test/ui-mode-test-tree.spec.ts

224 lines
6.0 KiB
TypeScript
Raw Normal View History

/**
* 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 { test, expect, dumpTestTree } from './ui-mode-fixtures';
test.describe.configure({ mode: 'parallel' });
const basicTestTree = {
'a.test.ts': `
import { test, expect } from '@playwright/test';
test('passes', () => {});
test('fails', () => {});
test.describe('suite', () => {
test('inner passes', () => {});
test('inner fails', () => {});
});
`,
'b.test.ts': `
import { test, expect } from '@playwright/test';
test('passes', () => {});
test('fails', () => {});
`,
};
test('should list tests', async ({ runUITest }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest(basicTestTree);
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toBe(`
a.test.ts
passes
fails
suite
b.test.ts
passes
fails
`);
});
test('should traverse up/down', async ({ runUITest }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest(basicTestTree);
await page.getByText('a.test.ts').click();
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts <=
passes
fails
suite
`);
await page.keyboard.press('ArrowDown');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts
passes <=
fails
suite
`);
await page.keyboard.press('ArrowDown');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts
passes
fails <=
suite
`);
await page.keyboard.press('ArrowUp');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts
passes <=
fails
suite
`);
});
test('should expand / collapse groups', async ({ runUITest }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest(basicTestTree);
2023-03-19 22:04:19 +03:00
await page.getByTestId('test-tree').getByText('suite').click();
await page.keyboard.press('ArrowRight');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts
passes
fails
suite <=
inner passes
inner fails
`);
await page.keyboard.press('ArrowLeft');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts
passes
fails
suite <=
`);
2023-03-19 22:04:19 +03:00
await page.getByTestId('test-tree').getByText('passes').first().click();
await page.keyboard.press('ArrowLeft');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts <=
passes
fails
`);
await page.keyboard.press('ArrowLeft');
2023-03-14 08:19:31 +03:00
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
a.test.ts <=
`);
});
test('should merge folder trees', async ({ runUITest }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest({
'a/b/c/inC.test.ts': `
import { test, expect } from '@playwright/test';
test('passes', () => {});
`,
'a/b/in-b.test.ts': `
import { test, expect } from '@playwright/test';
test('passes', () => {});
`,
'a/in-a.test.ts': `
import { test, expect } from '@playwright/test';
test('passes', () => {});
`,
});
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
b
c
in-b.test.ts
in-a.test.ts
passes
`);
});
test('should list parametrized tests', async ({ runUITest }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest({
'a.test.ts': `
import { test } from '@playwright/test';
test.describe('cookies', () => {
for (const country of ['FR', 'DE', 'LT']) {
test.describe(() => {
test('test ' + country, async ({}) => {});
});
}
})
`
});
await page.getByText('cookies').click();
await page.keyboard.press('ArrowRight');
await page.getByText('<anonymous>').click();
await page.keyboard.press('ArrowRight');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toBe(`
a.test.ts
cookies
<anonymous> <=
test FR
test DE
test LT
`);
});
test('should update parametrized tests', async ({ runUITest, writeFiles }) => {
2023-03-29 23:57:19 +03:00
const { page } = await runUITest({
'a.test.ts': `
import { test } from '@playwright/test';
test.describe('cookies', () => {
for (const country of ['FR', 'DE', 'LT']) {
test.describe(() => {
test('test ' + country, async ({}) => {});
});
}
})
`
});
await page.getByText('cookies').click();
await page.keyboard.press('ArrowRight');
await page.getByText('<anonymous>').click();
await page.keyboard.press('ArrowRight');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toBe(`
a.test.ts
cookies
<anonymous> <=
test FR
test DE
test LT
`);
writeFiles({
'a.test.ts': `
import { test } from '@playwright/test';
test.describe('cookies', () => {
for (const country of ['FR', 'LT']) {
test.describe(() => {
test('test ' + country, async ({}) => {});
});
}
})
`
});
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toBe(`
a.test.ts
cookies
<anonymous> <=
test FR
test LT
`);
});