forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon.test.tsx
152 lines (133 loc) · 4.11 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
/*
* 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 { mount } from 'enzyme';
import { requiredProps } from '../../test/required_props';
import { shouldRenderCustomStyles } from '../../test/internal';
import cheerio from 'cheerio';
import {
EuiIcon,
SIZES,
TYPES,
COLORS,
clearIconComponentCache,
appendIconComponentCache,
} from './icon';
import { PropsOf } from '../common';
import { icon as EuiIconVideoPlayer } from './assets/videoPlayer';
jest.mock('./icon', () => {
return jest.requireActual('./icon');
});
beforeEach(() => clearIconComponentCache());
const prettyHtml = cheerio.load('');
function testIcon(props: PropsOf<typeof EuiIcon>) {
return () => {
expect.assertions(1);
return new Promise<void>((resolve) => {
const onIconLoad = () => {
component.update();
expect(prettyHtml(component.html())).toMatchSnapshot();
resolve();
};
const component = mount(<EuiIcon {...props} onIconLoad={onIconLoad} />);
});
};
}
describe('EuiIcon', () => {
test('is rendered', testIcon({ type: 'search', ...requiredProps }));
shouldRenderCustomStyles(<EuiIcon type="videoPlayer" />);
describe('props', () => {
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 component = mount(<EuiIcon type={CustomIcon} />);
expect(prettyHtml(component.html())).toMatchSnapshot();
});
describe('appendIconComponentCache', () => {
it('does nothing if not called', () => {
const component = mount(<EuiIcon type="videoPlayer" />);
expect(component.find('svg').prop('data-is-loading')).toEqual(true);
});
it('preloads the specified icon into the cache', () => {
appendIconComponentCache({
videoPlayer: EuiIconVideoPlayer,
});
const component = mount(<EuiIcon type="videoPlayer" />);
// Should not have either data-is-loading attr set to true, because it was pre-loaded
expect(component.find('svg').prop('data-is-loading')).not.toEqual(true);
});
it('does not impact non-loaded icons', () => {
appendIconComponentCache({
videoPlayer: EuiIconVideoPlayer,
});
const component = mount(<EuiIcon type="accessibility" />);
expect(component.find('svg').prop('data-is-loading')).toEqual(true);
});
});
});