2022-06-02 17:37:43 -07:00
|
|
|
import { test, expect } from '@playwright/experimental-ct-vue2'
|
|
|
|
import Button from './components/Button.vue'
|
2022-08-23 20:37:55 +02:00
|
|
|
import Counter from './components/Counter.vue'
|
2022-06-02 17:37:43 -07:00
|
|
|
import DefaultSlot from './components/DefaultSlot.vue'
|
|
|
|
import NamedSlots from './components/NamedSlots.vue'
|
2022-09-21 15:12:18 -07:00
|
|
|
import EmptyTemplate from './components/EmptyTemplate.vue'
|
2022-10-18 22:04:54 +02:00
|
|
|
import type { hooksConfig } from '../playwright'
|
2022-06-02 17:37:43 -07:00
|
|
|
|
|
|
|
test.use({ viewport: { width: 500, height: 500 } })
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render props', async ({ mount }) => {
|
2022-08-27 00:47:28 +02:00
|
|
|
const component = await mount(<Button title="Submit" />)
|
2022-06-02 17:37:43 -07:00
|
|
|
await expect(component).toContainText('Submit')
|
|
|
|
})
|
|
|
|
|
2022-10-18 22:02:53 +02:00
|
|
|
test('render attributes', async ({ mount }) => {
|
|
|
|
const component = await mount(<Button class="primary" title="Submit" />)
|
|
|
|
await expect(component).toHaveClass('primary');
|
|
|
|
});
|
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update props without remounting', async ({ mount }) => {
|
2022-08-23 20:37:55 +02:00
|
|
|
const component = await mount(<Counter count={9001} />)
|
2022-10-10 21:49:52 +02:00
|
|
|
await expect(component.locator('#props')).toContainText('9001')
|
|
|
|
|
2022-10-11 04:56:33 +02:00
|
|
|
await component.update(<Counter count={1337} />)
|
2022-10-10 21:49:52 +02:00
|
|
|
await expect(component).not.toContainText('9001')
|
|
|
|
await expect(component.locator('#props')).toContainText('1337')
|
|
|
|
|
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
|
|
|
})
|
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update event listeners without remounting', async ({ mount }) => {
|
2022-10-20 22:33:25 +02:00
|
|
|
const messages: string[] = []
|
2022-10-10 21:49:52 +02:00
|
|
|
const component = await mount(<Counter />)
|
|
|
|
|
2022-10-20 22:33:25 +02:00
|
|
|
await component.update(<Counter
|
|
|
|
v-on:submit={(count: string) => {
|
|
|
|
messages.push(count)
|
|
|
|
}}
|
|
|
|
/>)
|
2022-10-10 21:49:52 +02:00
|
|
|
await component.click();
|
|
|
|
expect(messages).toEqual(['hello'])
|
2022-10-07 00:07:32 +02:00
|
|
|
|
2022-10-10 21:49:52 +02:00
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
|
|
|
})
|
|
|
|
|
2022-10-31 16:55:29 +01:00
|
|
|
test('update slots without remounting', async ({ mount }) => {
|
2022-10-10 21:49:52 +02:00
|
|
|
const component = await mount(<Counter>Default Slot</Counter>)
|
|
|
|
await expect(component).toContainText('Default Slot')
|
|
|
|
|
2022-10-11 04:56:33 +02:00
|
|
|
await component.update(<Counter>
|
2022-10-10 21:49:52 +02:00
|
|
|
<template v-slot:main>Test Slot</template>
|
|
|
|
</Counter>)
|
|
|
|
await expect(component).not.toContainText('Default Slot')
|
|
|
|
await expect(component).toContainText('Test Slot')
|
2022-08-23 20:37:55 +02:00
|
|
|
|
|
|
|
await expect(component.locator('#remount-count')).toContainText('1')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('emit an submit event when the button is clicked', async ({ mount }) => {
|
2022-10-20 22:33:25 +02:00
|
|
|
const messages: string[] = []
|
|
|
|
const component = await mount(<Button
|
|
|
|
title="Submit"
|
|
|
|
v-on:submit={(data: string) => {
|
|
|
|
messages.push(data)
|
|
|
|
}}
|
|
|
|
/>)
|
2022-06-02 17:37:43 -07:00
|
|
|
await component.click()
|
|
|
|
expect(messages).toEqual(['hello'])
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a default slot', async ({ mount }) => {
|
2022-06-02 17:37:43 -07:00
|
|
|
const component = await mount(<DefaultSlot>
|
|
|
|
Main Content
|
|
|
|
</DefaultSlot>)
|
|
|
|
await expect(component).toContainText('Main Content')
|
|
|
|
})
|
|
|
|
|
2022-10-24 21:31:35 +02:00
|
|
|
test('render a component as slot', async ({ mount }) => {
|
|
|
|
const component = await mount(<DefaultSlot>
|
|
|
|
<Button title="Submit" />
|
|
|
|
</DefaultSlot>)
|
|
|
|
await expect(component).toContainText('Submit')
|
|
|
|
});
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a component with multiple slots', async ({ mount }) => {
|
2022-06-02 17:37:43 -07:00
|
|
|
const component = await mount(<DefaultSlot>
|
|
|
|
<div id="one">One</div>
|
|
|
|
<div id="two">Two</div>
|
|
|
|
</DefaultSlot>)
|
|
|
|
await expect(component.locator('#one')).toContainText('One')
|
|
|
|
await expect(component.locator('#two')).toContainText('Two')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a component with a named slot', async ({ mount }) => {
|
2022-06-02 17:37:43 -07:00
|
|
|
const component = await mount(<NamedSlots>
|
|
|
|
<template v-slot:header>
|
|
|
|
Header
|
|
|
|
</template>
|
|
|
|
<template v-slot:main>
|
|
|
|
Main Content
|
|
|
|
</template>
|
|
|
|
<template v-slot:footer>
|
|
|
|
Footer
|
|
|
|
</template>
|
|
|
|
</NamedSlots>);
|
|
|
|
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('emit a event when a slot is clicked', async ({ mount }) => {
|
2022-06-02 17:37:43 -07:00
|
|
|
let clickFired = false;
|
|
|
|
const component = await mount(<DefaultSlot>
|
|
|
|
<span v-on:click={() => clickFired = true}>Main Content</span>
|
|
|
|
</DefaultSlot>);
|
|
|
|
await component.locator('text=Main Content').click();
|
|
|
|
expect(clickFired).toBeTruthy();
|
|
|
|
})
|
2022-07-12 08:37:33 -08:00
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('run hooks', async ({ page, mount }) => {
|
2022-10-20 22:33:25 +02:00
|
|
|
const messages: string[] = []
|
2022-07-12 08:37:33 -08:00
|
|
|
page.on('console', m => messages.push(m.text()))
|
2022-10-18 22:04:54 +02:00
|
|
|
await mount<hooksConfig>(<Button title="Submit" />, {
|
2022-07-12 08:37:33 -08:00
|
|
|
hooksConfig: { route: 'A' }
|
|
|
|
})
|
|
|
|
expect(messages).toEqual(['Before mount: {\"route\":\"A\"}', 'After mount el: HTMLButtonElement'])
|
|
|
|
})
|
2022-09-21 15:12:18 -07:00
|
|
|
|
2022-09-27 22:31:26 +02:00
|
|
|
test('unmount', async ({ page, mount }) => {
|
|
|
|
const component = await mount(<Button title="Submit" />)
|
|
|
|
await expect(page.locator('#root')).toContainText('Submit')
|
|
|
|
await component.unmount();
|
|
|
|
await expect(page.locator('#root')).not.toContainText('Submit');
|
|
|
|
})
|
|
|
|
|
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('');
|
|
|
|
});
|