File size: 6,552 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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
import '@testing-library/jest-dom';
import React from 'react';
import userEvent from '@testing-library/user-event';
import { TabBarExtraContent } from 'rc-tabs/lib/interface';
import mountTest from '../../../tests/shared/mountTest';
import rtlTest from '../../../tests/shared/rtlTest';
import { fireEvent, render, screen } from '../../../tests/utils';
import Button from '../../button/index';
import ConfigProvider from '../../config-provider';
import Card from '../index';
describe('Card', () => {
mountTest(Card);
rtlTest(Card);
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.useRealTimers();
});
it('should still have padding when card which set padding to 0 is loading', () => {
const { container } = render(
<Card loading bodyStyle={{ padding: 0 }}>
xxx
</Card>,
);
expect(container.firstChild).toMatchSnapshot();
});
it('title should be vertically aligned', () => {
const { container } = render(
<Card title="Card title" extra={<Button>Button</Button>} style={{ width: 300 }}>
<p>Card content</p>
</Card>,
);
expect(container.firstChild).toMatchSnapshot();
});
it('onTabChange should work', async () => {
const tabList = [
{
key: 'tab1',
tab: 'tab1',
},
{
key: 'tab2',
tab: 'tab2',
},
];
const onTabChange = jest.fn();
render(
<Card onTabChange={onTabChange} tabList={tabList}>
xxx
</Card>,
);
await userEvent.setup({ delay: null }).click(screen.getByRole('tab', { name: /tab2/i }));
expect(onTabChange).toHaveBeenCalledWith('tab2');
});
it('should not render when actions is number', () => {
const numberStub = 11;
render(
// @ts-ignore ignore for the wrong action value
<Card title="Card title" actions={numberStub}>
<p>Card content</p>
</Card>,
);
expect(screen.queryByText(numberStub)).not.toBeInTheDocument();
});
it('with tab props', () => {
const { container } = render(
<Card
title="Card title"
tabList={[
{
key: 'key',
tab: 'tab',
},
]}
tabProps={{ size: 'small' }}
>
<p>Card content</p>
</Card>,
);
expect(container.querySelectorAll('.ant-tabs-small').length === 0).toBeFalsy();
});
it('tab size extend card size', () => {
const { container: largeContainer } = render(
<Card
title="Card title"
tabList={[
{
key: 'key',
tab: 'tab',
},
]}
>
<p>Card content</p>
</Card>,
);
expect(largeContainer.querySelectorAll('.ant-tabs-large').length === 0).toBeFalsy();
const { container } = render(
<Card
title="Card title"
tabList={[
{
key: 'key',
tab: 'tab',
},
]}
size="small"
>
<p>Card content</p>
</Card>,
);
expect(container.querySelectorAll('.ant-tabs-small').length === 0).toBeFalsy();
});
it('get ref of card', () => {
const cardRef = React.createRef<HTMLDivElement>();
render(
<Card ref={cardRef} title="Card title">
<p>Card content</p>
</Card>,
);
expect(cardRef.current).toHaveClass('ant-card');
});
it('should show tab when tabList is empty', () => {
const { container } = render(
<Card title="Card title" tabList={[]} tabProps={{ type: 'editable-card' }}>
<p>Card content</p>
</Card>,
);
expect(container.querySelector('.ant-tabs')).toBeTruthy();
expect(container.querySelector('.ant-tabs-nav-add')).toBeTruthy();
});
it('correct pass tabList props', () => {
const { container } = render(
<Card
tabList={[
{
label: 'Basic',
key: 'basic',
},
{
tab: 'Deprecated',
key: 'deprecated',
},
{
tab: 'Disabled',
key: 'disabled',
disabled: true,
},
{
tab: 'NotClosable',
key: 'notClosable',
closable: false,
},
]}
tabProps={{
type: 'editable-card',
}}
/>,
);
expect(container.firstChild).toMatchSnapshot();
});
it('should support custom className', () => {
const { container } = render(
<Card title="Card title" classNames={{ header: 'custom-head' }}>
<p>Card content</p>
</Card>,
);
expect(container).toMatchSnapshot();
});
it('should support custom styles', () => {
const { container } = render(
<Card title="Card title" styles={{ header: { color: 'red' } }}>
<p>Card content</p>
</Card>,
);
expect(container).toMatchSnapshot();
});
it('ConfigProvider support variant for card', () => {
const TestComponent = () => {
const [variant, setVariant] = React.useState<'borderless' | 'outlined'>('outlined');
const [cardVariant, setCardVariant] = React.useState<'borderless' | 'outlined' | undefined>(
undefined,
);
return (
<div>
<button type="button" onClick={() => setVariant('borderless')}>
Set borderless
</button>
<button type="button" onClick={() => setCardVariant('outlined')}>
Set outlined
</button>
<ConfigProvider variant={variant}>
<Card title="Card title" variant={cardVariant}>
<p>Card content</p>
</Card>
</ConfigProvider>
</div>
);
};
const { container, getByText } = render(<TestComponent />);
// Check if the default `ant-card-bordered` exists
expect(container.querySelector('.ant-card-bordered')).toBeTruthy();
fireEvent.click(getByText('Set borderless'));
expect(container.querySelector('.ant-card-bordered')).toBeFalsy();
fireEvent.click(getByText('Set outlined'));
expect(container.querySelector('.ant-card-bordered')).toBeTruthy();
});
it('should support left and right properties for tabBarExtraContent props', () => {
const tabBarExtraContent: TabBarExtraContent = {
left: <span>Left</span>,
right: <span>Right</span>,
};
const { container } = render(
<Card title="Card title" tabBarExtraContent={tabBarExtraContent}>
<p>Card content</p>
</Card>,
);
expect(container).toMatchSnapshot();
});
});
|