2022-03-11 08:00:46 -08:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-05-31 15:59:36 -07:00
|
|
|
import type { Fixtures, Locator, Page, BrowserContextOptions, PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions, BrowserContext } from './types';
|
2022-08-04 03:14:00 +02:00
|
|
|
import type { Component, JsxComponent, MountOptions } from '../types/component';
|
2022-05-09 06:44:20 -08:00
|
|
|
|
|
|
|
let boundCallbacksForMount: Function[] = [];
|
2022-03-11 08:00:46 -08:00
|
|
|
|
2022-07-30 05:07:23 +02:00
|
|
|
interface MountResult extends Locator {
|
2022-08-04 03:14:00 +02:00
|
|
|
unmount(locator: Locator): Promise<void>;
|
|
|
|
rerender(options: Omit<MountOptions, 'hooksConfig'>): Promise<void>;
|
2022-07-30 05:07:23 +02:00
|
|
|
}
|
|
|
|
|
2022-05-31 15:59:36 -07:00
|
|
|
export const fixtures: Fixtures<
|
2022-07-27 15:12:36 -07:00
|
|
|
PlaywrightTestArgs & PlaywrightTestOptions & {
|
2022-07-30 05:07:23 +02:00
|
|
|
mount: (component: any, options: any) => Promise<MountResult>;
|
2022-07-27 15:12:36 -07:00
|
|
|
},
|
2022-06-02 12:16:07 -07:00
|
|
|
PlaywrightWorkerArgs & PlaywrightWorkerOptions & { _ctWorker: { context: BrowserContext | undefined, hash: string } },
|
2022-07-12 13:30:24 -08:00
|
|
|
{ _contextFactory: (options?: BrowserContextOptions) => Promise<BrowserContext>, _contextReuseEnabled: boolean }> = {
|
|
|
|
|
|
|
|
_contextReuseEnabled: true,
|
|
|
|
|
|
|
|
serviceWorkers: 'block',
|
2022-05-31 15:59:36 -07:00
|
|
|
|
2022-06-02 12:16:07 -07:00
|
|
|
_ctWorker: [{ context: undefined, hash: '' }, { scope: 'worker' }],
|
2022-05-31 15:59:36 -07:00
|
|
|
|
2022-07-12 13:30:24 -08:00
|
|
|
page: async ({ page }, use) => {
|
|
|
|
await (page as any)._wrapApiCall(async () => {
|
|
|
|
await page.exposeFunction('__ct_dispatch', (ordinal: number, args: any[]) => {
|
2022-06-02 12:16:07 -07:00
|
|
|
boundCallbacksForMount[ordinal](...args);
|
|
|
|
});
|
|
|
|
await page.goto(process.env.PLAYWRIGHT_VITE_COMPONENTS_BASE_URL!);
|
|
|
|
}, true);
|
|
|
|
await use(page);
|
2022-05-31 15:59:36 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
mount: async ({ page }, use) => {
|
2022-08-04 03:14:00 +02:00
|
|
|
await use(async (component: JsxComponent | string, options?: MountOptions) => {
|
2022-05-31 15:59:36 -07:00
|
|
|
const selector = await (page as any)._wrapApiCall(async () => {
|
|
|
|
return await innerMount(page, component, options);
|
|
|
|
}, true);
|
2022-07-30 05:07:23 +02:00
|
|
|
const locator = page.locator(selector);
|
|
|
|
return Object.assign(locator, {
|
|
|
|
unmount: async () => {
|
|
|
|
await locator.evaluate(async element => {
|
|
|
|
const rootElement = document.getElementById('root')!;
|
|
|
|
await window.playwrightUnmount(element, rootElement);
|
|
|
|
});
|
|
|
|
},
|
2022-08-04 03:14:00 +02:00
|
|
|
rerender: async (options: Omit<MountOptions, 'hooksConfig'>) => {
|
|
|
|
await locator.evaluate(async (element, options) => {
|
|
|
|
return await window.playwrightRerender(element, options);
|
|
|
|
}, options);
|
2022-07-30 05:07:23 +02:00
|
|
|
}
|
2022-07-27 15:12:36 -07:00
|
|
|
});
|
|
|
|
});
|
2022-07-30 05:07:23 +02:00
|
|
|
boundCallbacksForMount = [];
|
2022-07-27 15:12:36 -07:00
|
|
|
},
|
2022-05-31 15:59:36 -07:00
|
|
|
};
|
2022-05-06 13:53:38 -08:00
|
|
|
|
2022-08-04 03:14:00 +02:00
|
|
|
async function innerMount(page: Page, jsxOrType: JsxComponent | string, options: MountOptions = {}): Promise<string> {
|
2022-06-04 14:07:06 -07:00
|
|
|
let component: Component;
|
2022-03-11 08:00:46 -08:00
|
|
|
if (typeof jsxOrType === 'string')
|
|
|
|
component = { kind: 'object', type: jsxOrType, options };
|
|
|
|
else
|
|
|
|
component = jsxOrType;
|
|
|
|
|
2022-05-09 06:44:20 -08:00
|
|
|
wrapFunctions(component, page, boundCallbacksForMount);
|
2022-03-11 08:00:46 -08:00
|
|
|
|
2022-03-11 15:46:11 -08:00
|
|
|
// WebKit does not wait for deferred scripts.
|
2022-06-04 14:07:06 -07:00
|
|
|
await page.waitForFunction(() => !!window.playwrightMount);
|
2022-03-11 15:46:11 -08:00
|
|
|
|
2022-07-12 08:37:33 -08:00
|
|
|
const selector = await page.evaluate(async ({ component, hooksConfig }) => {
|
2022-03-11 08:00:46 -08:00
|
|
|
const unwrapFunctions = (object: any) => {
|
|
|
|
for (const [key, value] of Object.entries(object)) {
|
|
|
|
if (typeof value === 'string' && (value as string).startsWith('__pw_func_')) {
|
|
|
|
const ordinal = +value.substring('__pw_func_'.length);
|
|
|
|
object[key] = (...args: any[]) => {
|
2022-07-12 13:30:24 -08:00
|
|
|
(window as any)['__ct_dispatch'](ordinal, args);
|
2022-03-11 08:00:46 -08:00
|
|
|
};
|
|
|
|
} else if (typeof value === 'object' && value) {
|
|
|
|
unwrapFunctions(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
unwrapFunctions(component);
|
2022-06-04 14:07:06 -07:00
|
|
|
let rootElement = document.getElementById('root');
|
|
|
|
if (!rootElement) {
|
|
|
|
rootElement = document.createElement('div');
|
|
|
|
rootElement.id = 'root';
|
|
|
|
document.body.appendChild(rootElement);
|
|
|
|
}
|
|
|
|
|
2022-07-12 08:37:33 -08:00
|
|
|
await window.playwrightMount(component, rootElement, hooksConfig);
|
2022-06-04 14:07:06 -07:00
|
|
|
|
|
|
|
// When mounting fragments, return selector pointing to the root element.
|
|
|
|
return rootElement.childNodes.length > 1 ? '#root' : '#root > *';
|
2022-07-12 08:37:33 -08:00
|
|
|
}, { component, hooksConfig: options.hooksConfig });
|
2022-03-11 08:00:46 -08:00
|
|
|
return selector;
|
|
|
|
}
|
|
|
|
|
|
|
|
function wrapFunctions(object: any, page: Page, callbacks: Function[]) {
|
|
|
|
for (const [key, value] of Object.entries(object)) {
|
|
|
|
const type = typeof value;
|
|
|
|
if (type === 'function') {
|
|
|
|
const functionName = '__pw_func_' + callbacks.length;
|
|
|
|
callbacks.push(value as Function);
|
|
|
|
object[key] = functionName;
|
|
|
|
} else if (type === 'object' && value) {
|
|
|
|
wrapFunctions(value, page, callbacks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|