2021-12-23 11:51:10 +08:00
|
|
|
/* eslint-disable react/jsx-no-constructed-context-values */
|
2023-01-20 10:31:27 +08:00
|
|
|
import { createCache, StyleProvider } from '@ant-design/cssinjs';
|
2023-01-17 17:51:59 +08:00
|
|
|
import glob from 'glob';
|
2021-12-23 11:51:10 +08:00
|
|
|
import * as React from 'react';
|
2022-09-09 15:51:35 +08:00
|
|
|
import { renderToString } from 'react-dom/server';
|
2022-07-25 21:04:43 +08:00
|
|
|
import { TriggerMockContext } from './demoTestContext';
|
2023-01-17 17:51:59 +08:00
|
|
|
import { excludeWarning } from './excludeWarning';
|
2023-01-20 11:03:50 +08:00
|
|
|
import rootPropsTest from './rootPropsTest';
|
2016-11-22 13:43:53 +08:00
|
|
|
|
2023-01-20 11:03:50 +08:00
|
|
|
export { rootPropsTest };
|
2022-09-09 15:51:35 +08:00
|
|
|
|
2023-01-20 11:03:50 +08:00
|
|
|
require('isomorphic-fetch');
|
2018-12-01 12:24:57 +08:00
|
|
|
|
2022-09-09 15:51:35 +08:00
|
|
|
export type Options = {
|
2021-12-23 11:51:10 +08:00
|
|
|
skip?: boolean | string[];
|
2022-07-25 21:04:43 +08:00
|
|
|
testingLib?: boolean;
|
2023-01-20 11:03:50 +08:00
|
|
|
testRootProps?: false | object;
|
2020-04-13 13:36:23 +08:00
|
|
|
};
|
|
|
|
|
2021-12-23 11:51:10 +08:00
|
|
|
function baseText(doInject: boolean, component: string, options: Options = {}) {
|
2022-11-09 12:28:04 +08:00
|
|
|
const files = glob.sync(`./components/${component}/demo/*.tsx`);
|
|
|
|
|
2022-11-19 13:47:33 +08:00
|
|
|
files.forEach((file) => {
|
2022-12-05 12:14:05 +08:00
|
|
|
const testMethod =
|
|
|
|
options.skip === true ||
|
|
|
|
(Array.isArray(options.skip) && options.skip.some((c) => file.includes(c)))
|
|
|
|
? test.skip
|
|
|
|
: test;
|
2021-08-31 15:51:02 +08:00
|
|
|
|
2021-12-23 11:51:10 +08:00
|
|
|
// function doTest(name: string, openTrigger = false) {
|
|
|
|
testMethod(
|
|
|
|
doInject ? `renders ${file} extend context correctly` : `renders ${file} correctly`,
|
|
|
|
() => {
|
|
|
|
const errSpy = excludeWarning();
|
|
|
|
|
2022-09-14 14:29:05 +08:00
|
|
|
Date.now = jest.fn(() => new Date('2016-11-22').getTime());
|
|
|
|
jest.useFakeTimers().setSystemTime(new Date('2016-11-22'));
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
let Demo = require(`../.${file}`).default; // eslint-disable-line global-require, import/no-dynamic-require
|
2021-12-23 11:51:10 +08:00
|
|
|
// Inject Trigger status unless skipped
|
2022-04-03 23:27:45 +08:00
|
|
|
Demo = typeof Demo === 'function' ? <Demo /> : Demo;
|
2021-12-23 11:51:10 +08:00
|
|
|
if (doInject) {
|
2022-04-03 23:27:45 +08:00
|
|
|
Demo = (
|
2021-12-23 11:51:10 +08:00
|
|
|
<TriggerMockContext.Provider
|
|
|
|
value={{
|
|
|
|
popupVisible: true,
|
|
|
|
}}
|
|
|
|
>
|
2022-04-03 23:27:45 +08:00
|
|
|
{Demo}
|
2021-12-23 11:51:10 +08:00
|
|
|
</TriggerMockContext.Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-14 11:34:49 +08:00
|
|
|
// Inject cssinjs cache to avoid create <style /> element
|
|
|
|
Demo = <StyleProvider cache={createCache()}>{Demo}</StyleProvider>;
|
|
|
|
|
2022-10-08 16:17:20 +08:00
|
|
|
// Demo Test also include `dist` test which is already uglified.
|
|
|
|
// We need test this as SSR instead.
|
|
|
|
const html = renderToString(Demo);
|
|
|
|
expect({
|
|
|
|
type: 'demo',
|
|
|
|
html,
|
|
|
|
}).toMatchSnapshot();
|
|
|
|
|
2022-09-14 11:34:49 +08:00
|
|
|
errSpy.mockRestore();
|
2021-12-23 11:51:10 +08:00
|
|
|
},
|
|
|
|
);
|
2022-09-09 15:51:35 +08:00
|
|
|
jest.useRealTimers();
|
2016-11-22 13:43:53 +08:00
|
|
|
});
|
|
|
|
}
|
2021-12-23 11:51:10 +08:00
|
|
|
|
|
|
|
export function extendTest(component: string, options: Options = {}) {
|
|
|
|
baseText(true, component, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function demoTest(component: string, options: Options = {}) {
|
|
|
|
baseText(false, component, options);
|
2023-01-20 11:03:50 +08:00
|
|
|
|
|
|
|
if (options?.testRootProps !== false) {
|
|
|
|
rootPropsTest(component, null!, {
|
|
|
|
props: options?.testRootProps,
|
|
|
|
});
|
|
|
|
}
|
2021-12-23 11:51:10 +08:00
|
|
|
}
|