You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.4 KiB
84 lines
2.4 KiB
import { createCache, StyleProvider } from '@ant-design/cssinjs';
|
|
import { SmileOutlined } from '@ant-design/icons';
|
|
import IconContext from '@ant-design/icons/lib/components/Context';
|
|
import React from 'react';
|
|
import ConfigProvider from '..';
|
|
import { render } from '../../../tests/utils';
|
|
import Button from '../../button';
|
|
|
|
describe('ConfigProvider.Icon', () => {
|
|
beforeEach(() => {
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
|
expect(document.querySelectorAll('style')).toHaveLength(0);
|
|
});
|
|
|
|
afterEach(() => {
|
|
document.querySelectorAll('style').forEach((style) => {
|
|
style.parentNode?.removeChild(style);
|
|
});
|
|
});
|
|
|
|
describe('csp', () => {
|
|
it('raw', () => {
|
|
render(
|
|
<ConfigProvider csp={{ nonce: 'little' }}>
|
|
<SmileOutlined />
|
|
</ConfigProvider>,
|
|
);
|
|
const styleNode = document.querySelector('style');
|
|
expect(styleNode?.nonce).toEqual('little');
|
|
});
|
|
|
|
it('mix with iconPrefixCls', () => {
|
|
const { container } = render(
|
|
<ConfigProvider iconPrefixCls="bamboo" csp={{ nonce: 'light' }}>
|
|
<SmileOutlined />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const styleNode = document.querySelector('style');
|
|
|
|
expect(container.querySelector('.bamboo-smile')).toBeTruthy();
|
|
expect(styleNode?.nonce).toEqual('light');
|
|
});
|
|
});
|
|
|
|
it('nest', () => {
|
|
const Checker = () => {
|
|
const { csp } = React.useContext(IconContext);
|
|
return <div id="csp">{csp?.nonce}</div>;
|
|
};
|
|
|
|
const { container } = render(
|
|
<ConfigProvider iconPrefixCls="bamboo" csp={{ nonce: 'light' }}>
|
|
<ConfigProvider>
|
|
<SmileOutlined />
|
|
<Checker />
|
|
</ConfigProvider>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const styleNode = document.querySelector('style');
|
|
|
|
expect(container.querySelector('.bamboo-smile')).toBeTruthy();
|
|
expect(styleNode?.nonce).toEqual('light');
|
|
expect(container.querySelector('#csp')?.innerHTML).toEqual('light');
|
|
});
|
|
|
|
it('cssinjs should support nonce', () => {
|
|
render(
|
|
<StyleProvider cache={createCache()}>
|
|
<ConfigProvider csp={{ nonce: 'bamboo' }}>
|
|
<Button />
|
|
</ConfigProvider>
|
|
</StyleProvider>,
|
|
);
|
|
|
|
const styleList = Array.from(document.querySelectorAll('style'));
|
|
|
|
expect(styleList.length).toBeTruthy();
|
|
styleList.forEach((style) => {
|
|
expect(style.nonce).toEqual('bamboo');
|
|
});
|
|
});
|
|
});
|
|
|