2022-08-23 20:34:20 +02:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 } from '@playwright/experimental-ct-svelte';
|
|
|
|
import Button from './components/Button.svelte';
|
2022-09-27 22:26:48 +02:00
|
|
|
import Component from './components/Component.svelte';
|
2022-08-29 18:11:51 +02:00
|
|
|
import DefaultSlot from './components/DefaultSlot.svelte';
|
2022-08-23 20:34:20 +02:00
|
|
|
import MultiRoot from './components/MultiRoot.svelte';
|
2022-09-21 15:12:18 -07:00
|
|
|
import Empty from './components/Empty.svelte';
|
2022-08-23 20:34:20 +02:00
|
|
|
|
|
|
|
test.use({ viewport: { width: 500, height: 500 } });
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render props', async ({ mount }) => {
|
2022-08-23 20:34:20 +02:00
|
|
|
const component = await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Submit')
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('emit an submit event when the button is clicked', async ({ mount }) => {
|
2022-08-23 20:34:20 +02:00
|
|
|
const messages = []
|
|
|
|
const component = await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
},
|
|
|
|
on: {
|
|
|
|
submit: data => messages.push(data)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await component.click()
|
|
|
|
expect(messages).toEqual(['hello'])
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('render a default slot', async ({ mount }) => {
|
2022-08-29 18:11:51 +02:00
|
|
|
const component = await mount(DefaultSlot, {
|
|
|
|
slots: {
|
|
|
|
default: 'Main Content'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await expect(component).toContainText('Main Content')
|
|
|
|
})
|
|
|
|
|
2022-09-27 22:26:48 +02:00
|
|
|
test('render a component without options', async ({ mount }) => {
|
|
|
|
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-08-23 20:34:20 +02: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\"}', 'After mount']);
|
|
|
|
})
|
|
|
|
|
2022-09-12 18:27:53 +02:00
|
|
|
test('unmount', async ({ page, mount }) => {
|
2022-08-23 20:34:20 +02:00
|
|
|
const component = await mount(Button, {
|
|
|
|
props: {
|
|
|
|
title: 'Submit'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
await expect(page.locator('#root')).toContainText('Submit')
|
|
|
|
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-08-23 20:34:20 +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 component', async ({ mount }) => {
|
|
|
|
const component = await mount(Empty);
|
|
|
|
expect(await component.allTextContents()).toEqual(['']);
|
|
|
|
expect(await component.textContent()).toBe('');
|
|
|
|
await expect(component).toHaveText('');
|
|
|
|
});
|