2022-07-13 15:11:38 -08:00
|
|
|
import { test, expect } from '@playwright/experimental-ct-vue'
|
|
|
|
import Button from './components/Button.vue'
|
2022-08-04 03:14:00 +02:00
|
|
|
import Counter from './components/Counter.vue'
|
2022-07-13 15:11:38 -08:00
|
|
|
import DefaultSlot from './components/DefaultSlot.vue'
|
2022-08-04 19:43:43 +02:00
|
|
|
import MultiRoot from './components/MultiRoot.vue'
|
2022-07-13 15:11:38 -08:00
|
|
|
import NamedSlots from './components/NamedSlots.vue'
|
|
|
|
import Component from './components/Component.vue'
|
2022-09-21 15:12:18 -07:00
|
|
|
import EmptyTemplate from './components/EmptyTemplate.vue'
|
2022-07-13 15:11:38 -08:00
|
|
|
|
|
|
|
test.use({ viewport: { width: 500, height: 500 } })
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render props', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const component = await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Submit')
|
|
|
|
})
|
|
|
|
|
2022-10-07 00:07:32 +02:00
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update props without remounting', async ({ mount }) => {
|
2022-08-04 03:14:00 +02:00
|
|
|
const component = await mount(Counter, {
|
2022-10-07 00:07:32 +02:00
|
|
|
props: { count: 9001 }
|
|
|
|
})
|
|
|
|
await expect(component.locator('#props')).toContainText('9001')
|
|
|
|
|
2022-10-11 04:56:33 +02:00
|
|
|
await component.update({
|
2022-10-07 00:07:32 +02:00
|
|
|
props: { count: 1337 }
|
|
|
|
})
|
|
|
|
await expect(component).not.toContainText('9001')
|
|
|
|
await expect(component.locator('#props')).toContainText('1337')
|
2022-09-21 15:12:18 -07:00
|
|
|
|
2022-10-07 00:07:32 +02:00
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
|
|
|
})
|
2022-09-21 15:12:18 -07:00
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update event listeners without remounting', async ({ mount }) => {
|
2022-10-07 00:07:32 +02:00
|
|
|
const component = await mount(Counter)
|
2022-08-04 03:14:00 +02:00
|
|
|
|
2022-10-07 00:07:32 +02:00
|
|
|
const messages = []
|
2022-10-11 04:56:33 +02:00
|
|
|
await component.update({
|
2022-10-07 00:07:32 +02:00
|
|
|
on: {
|
2022-10-20 22:33:25 +02:00
|
|
|
submit: (count) => messages.push(count)
|
2022-10-07 00:07:32 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
await component.click();
|
|
|
|
expect(messages).toEqual(['hello'])
|
|
|
|
|
2022-08-04 03:14:00 +02:00
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
2022-07-29 20:45:06 +02:00
|
|
|
})
|
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update slots without remounting', async ({ mount }) => {
|
2022-10-07 00:07:32 +02:00
|
|
|
const component = await mount(Counter, {
|
|
|
|
slots: { default: 'Default Slot' }
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Default Slot')
|
|
|
|
|
2022-10-11 04:56:33 +02:00
|
|
|
await component.update({
|
2022-10-07 00:07:32 +02:00
|
|
|
slots: { main: 'Test Slot' }
|
|
|
|
})
|
|
|
|
await expect(component).not.toContainText('Default Slot')
|
|
|
|
await expect(component).toContainText('Test Slot')
|
|
|
|
|
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
|
|
|
})
|
2022-08-04 03:14:00 +02:00
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('emit an submit event when the button is clicked', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const messages = []
|
|
|
|
const component = await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
},
|
|
|
|
on: {
|
2022-10-20 22:33:25 +02:00
|
|
|
submit: (data) => messages.push(data)
|
2022-07-13 15:11:38 -08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
await component.click()
|
|
|
|
expect(messages).toEqual(['hello'])
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a default slot', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const component = await mount(DefaultSlot, {
|
|
|
|
slots: {
|
2022-10-18 22:06:36 +02:00
|
|
|
default: '<strong>Main Content</strong>'
|
2022-07-13 15:11:38 -08:00
|
|
|
}
|
|
|
|
})
|
2022-10-18 22:06:36 +02:00
|
|
|
await expect(component.getByRole('strong')).toContainText('Main Content')
|
2022-07-13 15:11:38 -08:00
|
|
|
})
|
|
|
|
|
2022-10-31 16:57:21 +01:00
|
|
|
test('render a component as slot', async ({ mount, page }) => {
|
|
|
|
const component = await mount(DefaultSlot, {
|
|
|
|
slots: {
|
|
|
|
default: '<Button title="Submit" />',
|
|
|
|
},
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Submit')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a component with multiple slots', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const component = await mount(DefaultSlot, {
|
|
|
|
slots: {
|
2022-10-18 22:06:36 +02:00
|
|
|
default: [
|
|
|
|
'<div data-testid="one">One</div>',
|
|
|
|
'<div data-testid="two">Two</div>'
|
|
|
|
]
|
2022-07-13 15:11:38 -08:00
|
|
|
}
|
|
|
|
})
|
2022-10-18 22:06:36 +02:00
|
|
|
await expect(component.getByTestId('one')).toContainText('One')
|
|
|
|
await expect(component.getByTestId('two')).toContainText('Two')
|
2022-07-13 15:11:38 -08:00
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a component with a named slot', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const component = await mount(NamedSlots, {
|
|
|
|
slots: {
|
|
|
|
header: 'Header',
|
|
|
|
main: 'Main Content',
|
|
|
|
footer: 'Footer'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Header')
|
|
|
|
await expect(component).toContainText('Main Content')
|
|
|
|
await expect(component).toContainText('Footer')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a component without options', async ({ mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const component = await mount(Component)
|
|
|
|
await expect(component).toContainText('test')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('run hooks', async ({ page, mount }) => {
|
2022-07-13 15:11:38 -08:00
|
|
|
const messages = []
|
|
|
|
page.on('console', m => messages.push(m.text()))
|
|
|
|
await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
},
|
|
|
|
hooksConfig: { route: 'A' }
|
|
|
|
})
|
|
|
|
expect(messages).toEqual(['Before mount: {\"route\":\"A\"}, app: true', 'After mount el: HTMLButtonElement'])
|
|
|
|
})
|
2022-08-04 19:43:43 +02:00
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('unmount a multi root component', async ({ mount, page }) => {
|
2022-08-04 19:43:43 +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-09-21 15:12:18 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
test('get textContent of the empty template', async ({ mount }) => {
|
|
|
|
const component = await mount(EmptyTemplate);
|
|
|
|
expect(await component.allTextContents()).toEqual(['']);
|
|
|
|
expect(await component.textContent()).toBe('');
|
|
|
|
await expect(component).toHaveText('');
|
|
|
|
});
|