| 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; |
| |
| |
| |
| 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) => { |
| |
| 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; |
|
|
| |
| 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; |
| |
| Demo = typeof Demo === 'function' ? <Demo /> : Demo; |
| if (doInject) { |
| Demo = ( |
| <TriggerMockContext.Provider value={{ popupVisible: true }}> |
| {Demo} |
| </TriggerMockContext.Provider> |
| ); |
| } |
|
|
| |
| Demo = ( |
| <ConfigProvider theme={{ hashed: false }}> |
| <StyleProvider cache={createCache()}>{Demo}</StyleProvider> |
| </ConfigProvider> |
| ); |
|
|
| |
| |
| 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(); |
|
|
| |
| if (doInject) { |
| const errorMessageSet = new Set(errSpy.mock.calls.map((args) => args[0])); |
| const errorMessages = Array.from(errorMessageSet) |
| .filter((msg) => !isSafeWarning(msg, true)) |
| .sort(); |
|
|
| |
| if (errorMessages.length) { |
| console.log(errSpy.mock.calls); |
| } |
|
|
| expect(errorMessages).toMatchSnapshot(); |
| } |
|
|
| errSpy.mockRestore(); |
| }, |
| ); |
| jest.useRealTimers(); |
| }); |
| } |
|
|
| |
| |
| |
| export function extendTest(component: string, options: Options = {}) { |
| baseTest(true, component, options); |
| } |
|
|
| |
| |
| |
| export default function demoTest(component: string, options: Options = {}) { |
| baseTest(false, component, options); |
|
|
| |
| const testName = test; |
| testName('component name is match the kebab-case', () => { |
| const kebabName = kebabCase(component); |
|
|
| |
|
|
| 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, |
| }); |
| } |
| } |
|
|