-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathChip.test.tsx
More file actions
399 lines (352 loc) · 9.22 KB
/
Copy pathChip.test.tsx
File metadata and controls
399 lines (352 loc) · 9.22 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
import * as React from 'react';
import { Animated } from 'react-native';
import { act, render } from '@testing-library/react-native';
import color from 'color';
import { getTheme } from '../../core/theming';
import { tokens } from '../../theme/tokens';
import Chip from '../Chip/Chip';
import { getChipColors } from '../Chip/helpers';
const { stateOpacity } = tokens.md.ref;
it('renders chip with onPress', () => {
const tree = render(<Chip onPress={() => {}}>Example Chip</Chip>).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders chip with icon', () => {
const tree = render(<Chip icon="information">Example Chip</Chip>).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders chip with close button', () => {
const tree = render(
<Chip icon="information" onClose={() => {}}>
Example Chip
</Chip>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders chip with custom close button', () => {
const tree = render(
<Chip icon="information" onClose={() => {}} closeIcon="arrow-down">
Example Chip
</Chip>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders outlined disabled chip', () => {
const tree = render(
<Chip mode="outlined" disabled>
Example Chip
</Chip>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders selected chip', () => {
const tree = render(<Chip selected>Example Chip</Chip>).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders disabled chip if there is no touch handler passed', () => {
const { getByTestId } = render(
<Chip testID="disabled-chip">Disabled chip</Chip>
);
expect(getByTestId('disabled-chip').props.accessibilityState).toMatchObject({
disabled: true,
});
});
it('renders active chip if only onLongPress handler is passed', () => {
const { getByTestId } = render(
<Chip onLongPress={() => {}} testID="active-chip">
Active chip
</Chip>
);
expect(getByTestId('active-chip').props.accessibilityState).toMatchObject({
disabled: false,
});
});
it('renders chip with zero border radius', () => {
const { getByTestId } = render(
<Chip testID="active-chip" theme={{ shapes: { corner: { small: 0 } } }}>
Active chip
</Chip>
);
expect(getByTestId('active-chip')).toHaveStyle({
borderRadius: 0,
});
});
describe('getChipColors - text color', () => {
it('should return correct disabled color, for theme version 3', () => {
expect(
getChipColors({
disabled: true,
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
textColor: getTheme().colors.onSurface,
contentOpacity: stateOpacity.disabled,
});
});
it('should return correct theme color, for theme version 3, flat mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
textColor: getTheme().colors.onSecondaryContainer,
});
});
it('should return correct theme color, for theme version 3, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: true,
})
).toMatchObject({
textColor: getTheme().colors.onSurfaceVariant,
});
});
it('should return custom color, for theme version 3', () => {
expect(
getChipColors({
theme: getTheme(),
selectedColor: 'purple',
isOutlined: false,
})
).toMatchObject({
textColor: 'purple',
});
});
});
describe('getChipColors - icon color', () => {
it('should return correct disabled color, for theme version 3', () => {
expect(
getChipColors({
disabled: true,
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
iconColor: getTheme().colors.onSurface,
contentOpacity: stateOpacity.disabled,
});
});
it('should return correct theme color, for theme version 3, flat mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
iconColor: getTheme().colors.onSecondaryContainer,
});
});
it('should return correct theme color, for theme version 3, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: true,
})
).toMatchObject({
iconColor: getTheme().colors.onSurfaceVariant,
});
});
it('should return custom color, for theme version 3', () => {
expect(
getChipColors({
theme: getTheme(),
selectedColor: 'purple',
isOutlined: false,
})
).toMatchObject({
iconColor: 'purple',
});
});
});
describe('getChipColor - selected background color', () => {
it('should return custom color, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(),
customBackgroundColor: 'purple',
isOutlined: true,
})
).toMatchObject({
selectedBackgroundColor: 'purple',
});
});
it('should return custom color, flat mode', () => {
expect(
getChipColors({
theme: getTheme(),
customBackgroundColor: 'purple',
isOutlined: false,
})
).toMatchObject({
selectedBackgroundColor: 'purple',
});
});
it('should return theme color, for theme version 3, flat mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
selectedBackgroundColor: getTheme().colors.secondaryContainer,
});
});
});
describe('getChipColor - background color', () => {
it('should return custom color', () => {
expect(
getChipColors({
theme: getTheme(),
customBackgroundColor: 'purple',
isOutlined: false,
})
).toMatchObject({
backgroundColor: 'purple',
});
});
it('should return theme color, for theme version 3, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: true,
})
).toMatchObject({
backgroundColor: getTheme().colors.surface,
});
});
it('should return theme color, for theme version 3, flat mode', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
backgroundColor: getTheme().colors.secondaryContainer,
});
});
});
describe('getChipColor - border color', () => {
it('should return correct disabled color, for theme version 3', () => {
expect(
getChipColors({
theme: getTheme(),
disabled: true,
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
it('should return custom color, for theme version 3', () => {
expect(
getChipColors({
theme: getTheme(),
selectedColor: 'purple',
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
it('should return theme color, for theme version 3', () => {
expect(
getChipColors({
theme: getTheme(),
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
it('should return custom color, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(false),
selectedColor: 'purple',
isOutlined: true,
})
).toMatchObject({
borderColor: color('purple').alpha(0.29).rgb().string(),
});
});
it('should return custom color, flat mode', () => {
expect(
getChipColors({
theme: getTheme(true),
customBackgroundColor: 'purple',
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
it('should return theme color, light mode, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(false),
isOutlined: true,
})
).toMatchObject({
borderColor: getTheme(false).colors.outlineVariant,
});
});
it('should return theme color, dark mode, outlined mode', () => {
expect(
getChipColors({
theme: getTheme(true),
isOutlined: true,
})
).toMatchObject({
borderColor: getTheme(true).colors.outlineVariant,
});
});
it('should return theme background color, light mode, flat mode', () => {
expect(
getChipColors({
theme: getTheme(false),
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
it('should return theme background color, dark mode, flat mode', () => {
expect(
getChipColors({
theme: getTheme(true),
isOutlined: false,
})
).toMatchObject({
borderColor: 'transparent',
});
});
});
it('animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Chip
onPress={() => {}}
testID="chip"
style={[{ transform: [{ scale: value }] }]}
>
Example Chip
</Chip>
);
expect(getByTestId('chip-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('chip-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});