playwright/tests/playwright-test/ui-mode-test-tree.spec.ts
2023-03-19 18:51:09 -07:00

145 lines
4.0 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 { 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 }) => {
const page = await runUITest(basicTestTree);
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 }) => {
const page = await runUITest(basicTestTree);
await page.getByText('a.test.ts').click();
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts <=
◯ passes
◯ fails
► ◯ suite
`);
await page.keyboard.press('ArrowDown');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts
◯ passes <=
◯ fails
► ◯ suite
`);
await page.keyboard.press('ArrowDown');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts
◯ passes
◯ fails <=
► ◯ suite
`);
await page.keyboard.press('ArrowUp');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts
◯ passes <=
◯ fails
► ◯ suite
`);
});
test('should expand / collapse groups', async ({ runUITest }) => {
const page = await runUITest(basicTestTree);
await page.getByTestId('test-tree').getByText('suite').click();
await page.keyboard.press('ArrowRight');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts
◯ passes
◯ fails
▼ ◯ suite <=
◯ inner passes
◯ inner fails
`);
await page.keyboard.press('ArrowLeft');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts
◯ passes
◯ fails
► ◯ suite <=
`);
await page.getByTestId('test-tree').getByText('passes').first().click();
await page.keyboard.press('ArrowLeft');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
▼ ◯ a.test.ts <=
◯ passes
◯ fails
`);
await page.keyboard.press('ArrowLeft');
await expect.poll(dumpTestTree(page), { timeout: 15000 }).toContain(`
► ◯ a.test.ts <=
`);
});
test('should merge folder trees', async ({ runUITest }) => {
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
`);
});