File size: 4,189 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
import path from 'path';
import * as React from 'react';
import { createCache, StyleProvider } from '@ant-design/cssinjs';
import { ConfigProvider } from 'antd';
import { globSync } from 'glob';
import kebabCase from 'lodash/kebabCase';
import { renderToString } from 'react-dom/server';
import { resetWarned } from '../../components/_util/warning';
import { render } from '../utils';
import { TriggerMockContext } from './demoTestContext';
import { excludeWarning, isSafeWarning } from './excludeWarning';
import rootPropsTest from './rootPropsTest';
export { rootPropsTest };
require('isomorphic-fetch');
export type Options = {
skip?: boolean | string[];
testingLib?: boolean;
testRootProps?: false | object;
/**
* Not check component `displayName`, check path only
*/
nameCheckPathOnly?: boolean;
};
function baseTest(doInject: boolean, component: string, options: Options = {}) {
const files = globSync(`./components/${component}/demo/*.tsx`).filter(
(file) => !file.includes('_semantic'),
);
files.forEach((file) => {
// to compatible windows path
file = file.split(path.sep).join('/');
const testMethod =
options.skip === true ||
(Array.isArray(options.skip) && options.skip.some((c) => file.includes(c)))
? test.skip
: test;
// function doTest(name: string, openTrigger = false) {
testMethod(
doInject ? `renders ${file} extend context correctly` : `renders ${file} correctly`,
() => {
resetWarned();
const errSpy = excludeWarning();
Date.now = jest.fn(() => new Date('2016-11-22').getTime());
jest.useFakeTimers().setSystemTime(new Date('2016-11-22'));
let Demo = require(`../../${file}`).default;
// Inject Trigger status unless skipped
Demo = typeof Demo === 'function' ? <Demo /> : Demo;
if (doInject) {
Demo = (
<TriggerMockContext.Provider value={{ popupVisible: true }}>
{Demo}
</TriggerMockContext.Provider>
);
}
// Inject cssinjs cache to avoid create <style /> element
Demo = (
<ConfigProvider theme={{ hashed: false }}>
<StyleProvider cache={createCache()}>{Demo}</StyleProvider>
</ConfigProvider>
);
// Demo Test also include `dist` test which is already uglified.
// We need test this as SSR instead.
if (doInject) {
const { container } = render(Demo);
expect({ type: 'demo', html: container.innerHTML }).toMatchSnapshot();
} else {
const html = renderToString(Demo);
expect({ type: 'demo', html }).toMatchSnapshot();
}
jest.clearAllTimers();
// Snapshot of warning info
if (doInject) {
const errorMessageSet = new Set(errSpy.mock.calls.map((args) => args[0]));
const errorMessages = Array.from(errorMessageSet)
.filter((msg) => !isSafeWarning(msg, true))
.sort();
// Console log the error messages for debugging
if (errorMessages.length) {
console.log(errSpy.mock.calls);
}
expect(errorMessages).toMatchSnapshot();
}
errSpy.mockRestore();
},
);
jest.useRealTimers();
});
}
/**
* Inject Trigger to force open in test snapshots
*/
export function extendTest(component: string, options: Options = {}) {
baseTest(true, component, options);
}
/**
* Test all the demo snapshots
*/
export default function demoTest(component: string, options: Options = {}) {
baseTest(false, component, options);
// Test component name is match the kebab-case
const testName = test;
testName('component name is match the kebab-case', () => {
const kebabName = kebabCase(component);
// Path should exist
const { default: Component } = require(`../../components/${kebabName}`);
if (options.nameCheckPathOnly !== true) {
expect(kebabCase(Component.displayName || '')).toEqual(kebabName);
}
});
if (options?.testRootProps !== false) {
rootPropsTest(component, null!, {
props: options?.testRootProps,
});
}
}
|