forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icon.test.tsx
169 lines (146 loc) · 4.66 KB
/
icon.test.tsx
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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import React from 'react';
import { act, waitFor } from '@testing-library/react';
import { render } from '../../test/rtl';
import { requiredProps } from '../../test/required_props';
import { shouldRenderCustomStyles } from '../../test/internal';
import { PropsOf } from '../common';
import {
EuiIcon,
SIZES,
TYPES,
COLORS,
clearIconComponentCache,
appendIconComponentCache,
} from './icon';
import { icon as EuiIconVideoPlayer } from './assets/videoPlayer';
jest.mock('./icon', () => {
return jest.requireActual('./icon');
});
beforeEach(() => clearIconComponentCache());
const testIcon = (props: PropsOf<typeof EuiIcon>) => async () => {
act(() => {
render(<EuiIcon {...props} />);
});
await waitFor(
() => {
const icon = document.querySelector(`[data-icon-type=${props.type}]`);
expect(icon).toHaveAttribute('data-is-loaded', 'true');
expect(icon).toMatchSnapshot();
},
{ timeout: 3000 } // CI will sometimes time out if the icon doesn't load fast enough
);
};
describe('EuiIcon', () => {
test('is rendered', testIcon({ type: 'search', ...requiredProps }));
shouldRenderCustomStyles(<EuiIcon type="customImg" />);
shouldRenderCustomStyles(<EuiIcon type="videoPlayer" />, {
wrapper: ({ children }) => {
// Need to preload the icon so we don't run into Emotion CSS `isLoading`/`isLoaded` race conditions
appendIconComponentCache({ videoPlayer: EuiIconVideoPlayer });
return children;
},
});
describe('props', () => {
test('onIconLoad', async () => {
const onIconLoad = jest.fn();
render(<EuiIcon type="search" onIconLoad={onIconLoad} />);
expect(onIconLoad).toHaveBeenCalledTimes(0);
await waitFor(() => {
expect(onIconLoad).toHaveBeenCalledTimes(1);
});
});
describe('other props', () => {
test(
'are passed through to the icon',
testIcon({
type: 'search',
'aria-label': 'A Search Icon',
title: 'Search',
})
);
});
describe('title and titleId', () => {
test(
'are passed and generate an aria-labelledby',
testIcon({
type: 'search',
title: 'Search icon',
titleId: 'id-test',
})
);
});
describe('size', () => {
SIZES.forEach((size) => {
test('${size} is rendered', testIcon({ type: 'search', size }));
});
});
describe('type', () => {
TYPES.forEach((type) => {
test(`${type} is rendered`, testIcon({ type }));
});
});
describe('color', () => {
[
...COLORS,
'#fde',
'#885522',
'rgb(100, 150, 200)',
'hsla(270, 60%, 70%, 0.9)',
].forEach((color) => {
it(`${color} is rendered`, testIcon({ type: 'search', color }));
});
});
describe('tabIndex', () => {
it(
'renders focusable="false" when not provided',
testIcon({ type: 'search' })
);
it(
'renders focusable="false" when -1',
testIcon({ type: 'search', tabIndex: -1 })
);
it(
'renders focusable="true" when 0',
testIcon({ type: 'search', tabIndex: 0 })
);
});
});
it('renders custom components', () => {
const CustomIcon = ({ ...props }) => {
return (
<span role="img" aria-label="heart" {...props}>
❤️
</span>
);
};
const { container } = render(<EuiIcon type={CustomIcon} />);
expect(container.firstChild).toMatchSnapshot();
});
describe('appendIconComponentCache', () => {
it('does nothing if not called', () => {
const { container } = render(<EuiIcon type="videoPlayer" />);
expect(container.firstChild).toHaveAttribute('data-is-loading', 'true');
});
it('preloads the specified icon into the cache', () => {
appendIconComponentCache({
videoPlayer: EuiIconVideoPlayer,
});
const { container } = render(<EuiIcon type="videoPlayer" />);
expect(container.firstChild).not.toHaveAttribute('data-is-loading');
});
it('does not impact non-loaded icons', () => {
appendIconComponentCache({
videoPlayer: EuiIconVideoPlayer,
});
const { container } = render(<EuiIcon type="accessibility" />);
expect(container.firstChild).toHaveAttribute('data-is-loading', 'true');
});
});
});