2022-09-22 06:16:30 +02:00
|
|
|
import { test, expect } from '@playwright/experimental-ct-solid';
|
2022-08-23 23:08:53 +02:00
|
|
|
import Button from './components/Button';
|
2022-08-27 00:48:05 +02:00
|
|
|
import DefaultChildren from './components/DefaultChildren';
|
2022-09-22 06:16:30 +02:00
|
|
|
import MultipleChildren from './components/MultipleChildren';
|
2022-08-26 20:51:36 +02:00
|
|
|
import MultiRoot from './components/MultiRoot';
|
2022-09-21 15:12:18 -07:00
|
|
|
import EmptyFragment from './components/EmptyFragment';
|
2022-08-23 23:08:53 +02:00
|
|
|
|
|
|
|
test.use({ viewport: { width: 500, height: 500 } });
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render props', async ({ mount }) => {
|
2022-08-25 17:40:14 +02:00
|
|
|
const component = await mount(<Button title="Submit" />);
|
2022-08-23 23:08:53 +02:00
|
|
|
await expect(component).toContainText('Submit');
|
|
|
|
});
|
2022-08-25 22:02:55 +02:00
|
|
|
|
2022-10-18 22:02:53 +02:00
|
|
|
test('render attributes', async ({ mount }) => {
|
|
|
|
const component = await mount(<Button className="primary" title="Submit" />)
|
|
|
|
await expect(component).toHaveClass('primary');
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('execute callback when the button is clicked', async ({ mount }) => {
|
2022-09-22 06:16:30 +02:00
|
|
|
const messages: string[] = [];
|
|
|
|
const component = await mount(
|
|
|
|
<Button
|
|
|
|
title="Submit"
|
|
|
|
onClick={(data) => {
|
|
|
|
messages.push(data);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
await component.click();
|
|
|
|
expect(messages).toEqual(['hello']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('render a default child', async ({ mount }) => {
|
|
|
|
const component = await mount(
|
|
|
|
<DefaultChildren>Main Content</DefaultChildren>
|
|
|
|
);
|
|
|
|
await expect(component).toContainText('Main Content');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('render multiple children', async ({ mount }) => {
|
|
|
|
const component = await mount(
|
|
|
|
<DefaultChildren>
|
|
|
|
<div id="one">One</div>
|
|
|
|
<div id="two">Two</div>
|
|
|
|
</DefaultChildren>
|
|
|
|
);
|
|
|
|
await expect(component.locator('#one')).toContainText('One');
|
|
|
|
await expect(component.locator('#two')).toContainText('Two');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('render named children', async ({ mount }) => {
|
|
|
|
const component = await mount(
|
|
|
|
<MultipleChildren>
|
|
|
|
<div>Header</div>
|
|
|
|
<div>Main Content</div>
|
|
|
|
<div>Footer</div>
|
|
|
|
</MultipleChildren>
|
|
|
|
);
|
|
|
|
await expect(component).toContainText('Header');
|
|
|
|
await expect(component).toContainText('Main Content');
|
|
|
|
await expect(component).toContainText('Footer');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('execute callback when a child node is clicked', async ({ mount }) => {
|
|
|
|
let clickFired = false;
|
|
|
|
const component = await mount(
|
|
|
|
<DefaultChildren>
|
|
|
|
<span onClick={() => (clickFired = true)}>Main Content</span>
|
|
|
|
</DefaultChildren>
|
|
|
|
);
|
|
|
|
await component.locator('text=Main Content').click();
|
|
|
|
expect(clickFired).toBeTruthy();
|
|
|
|
});
|
2022-08-26 20:51:36 +02:00
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('run hooks', async ({ page, mount }) => {
|
2022-08-27 00:48:41 +02:00
|
|
|
const messages: string[] = [];
|
2022-09-22 06:16:30 +02:00
|
|
|
page.on('console', (m) => messages.push(m.text()));
|
2022-08-27 00:48:41 +02:00
|
|
|
await mount(<Button title="Submit" />, {
|
|
|
|
hooksConfig: {
|
2022-09-22 06:16:30 +02:00
|
|
|
route: 'A',
|
|
|
|
},
|
2022-08-27 00:48:41 +02:00
|
|
|
});
|
2022-09-22 06:16:30 +02:00
|
|
|
expect(messages).toEqual(['Before mount: {"route":"A"}', 'After mount']);
|
2022-08-27 00:48:41 +02:00
|
|
|
});
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('unmount', async ({ page, mount }) => {
|
2022-09-22 06:16:30 +02:00
|
|
|
const component = await mount(<Button title="Submit" />);
|
|
|
|
await expect(page.locator('#root')).toContainText('Submit');
|
2022-08-26 20:51:36 +02:00
|
|
|
await component.unmount();
|
|
|
|
await expect(page.locator('#root')).not.toContainText('Submit');
|
|
|
|
});
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('unmount a multi root component', async ({ mount, page }) => {
|
2022-09-22 06:16:30 +02:00
|
|
|
const component = await mount(<MultiRoot />);
|
|
|
|
await expect(page.locator('#root')).toContainText('root 1');
|
|
|
|
await expect(page.locator('#root')).toContainText('root 2');
|
|
|
|
await component.unmount();
|
|
|
|
await expect(page.locator('#root')).not.toContainText('root 1');
|
|
|
|
await expect(page.locator('#root')).not.toContainText('root 2');
|
2022-08-26 20:51:36 +02:00
|
|
|
});
|
2022-09-21 15:12:18 -07:00
|
|
|
|
|
|
|
test('get textContent of the empty fragment', async ({ mount }) => {
|
|
|
|
const component = await mount(<EmptyFragment />);
|
|
|
|
expect(await component.allTextContents()).toEqual(['']);
|
|
|
|
expect(await component.textContent()).toBe('');
|
|
|
|
await expect(component).toHaveText('');
|
|
|
|
});
|