-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathAppbar.test.tsx
More file actions
478 lines (415 loc) · 13.2 KB
/
Copy pathAppbar.test.tsx
File metadata and controls
478 lines (415 loc) · 13.2 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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import React from 'react';
import { Animated, Platform, StyleSheet } from 'react-native';
import { act } from '@testing-library/react-native';
import mockSafeAreaContext from 'react-native-safe-area-context/jest/mock';
import { getTheme } from '../../../core/theming';
import { render } from '../../../test-utils';
import { tokens } from '../../../theme/tokens';
import Appbar from '../../Appbar';
import {
getAppbarBackgroundColor,
getAppbarBorders,
modeTextVariant,
renderAppbarContent as utilRenderAppbarContent,
} from '../../Appbar/utils';
import Menu from '../../Menu/Menu';
import Searchbar from '../../Searchbar';
import Text from '../../Typography/Text';
const renderAppbarContent = utilRenderAppbarContent as (
props: Parameters<typeof utilRenderAppbarContent>[0]
) => { props: any }[];
describe('Appbar', () => {
it('does not pass any additional props to Searchbar', () => {
const tree = render(
<Appbar>
<Searchbar placeholder="Search" value="" />
</Appbar>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('passes additional props to AppbarBackAction, AppbarContent and AppbarAction', () => {
const tree = render(
<Appbar>
<Appbar.BackAction onPress={() => {}} />
<Appbar.Content title="Examples" />
<Appbar.Action icon="menu" onPress={() => {}} />
</Appbar>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('uses boxShadow instead of shadow props on web headers', () => {
const originalPlatform = Platform.OS;
Platform.OS = 'web';
try {
const { getByTestId } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header elevated>
<Appbar.Content title="Examples" />
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
const styles = StyleSheet.flatten(
getByTestId('appbar-header-root-layer').props.style
);
expect(styles).toMatchObject({
boxShadow: '0px 2px 6px rgba(0, 0, 0, 0.3)',
});
expect(styles).not.toHaveProperty('shadowColor');
expect(styles).not.toHaveProperty('shadowOpacity');
expect(styles).not.toHaveProperty('shadowOffset');
expect(styles).not.toHaveProperty('shadowRadius');
} finally {
Platform.OS = originalPlatform;
}
});
});
describe('renderAppbarContent', () => {
const children = [
<Appbar.BackAction onPress={() => {}} key={0} />,
<Appbar.Content title="Examples" key={1} />,
<Appbar.Action icon="magnify" onPress={() => {}} key={2} />,
<Appbar.Action icon="menu" onPress={() => {}} key={3} />,
];
it('should render all children types if renderOnly is not specified', () => {
const result = renderAppbarContent({
children,
isDark: false,
});
expect(result).toHaveLength(4);
});
it('should render all children types except specified in renderExcept', () => {
const result = renderAppbarContent({
children: [
...children,
<Menu
key={4}
anchor={<Appbar.Action icon="menu" onPress={() => {}} />}
visible={false}
>
{null}
</Menu>,
],
isDark: false,
renderExcept: [
'Appbar',
'Appbar.Header',
'Appbar.BackAction',
'Appbar.Content',
],
});
expect(result).toHaveLength(3);
});
it('should render only children types specifed in renderOnly', () => {
const result = renderAppbarContent({
children,
isDark: false,
renderOnly: ['Appbar.Action'],
});
expect(result).toHaveLength(2);
});
it('should render AppbarContent with correct mode', () => {
const result = renderAppbarContent({
children,
isDark: false,
renderOnly: ['Appbar.Content'],
mode: 'large',
});
expect(result[0].props.mode).toBe('large');
});
it('should render centered AppbarContent', () => {
const result = renderAppbarContent({
children,
isDark: false,
renderOnly: ['Appbar.Content'],
mode: 'center-aligned',
shouldCenterContent: true,
});
const centerAlignedContent = {
alignItems: 'center',
};
expect(result[0].props.style).toEqual(
expect.arrayContaining([expect.objectContaining(centerAlignedContent)])
);
});
it('should render AppbarContent with correct spacings', () => {
const renderResult = (withAppbarBackAction = false) =>
renderAppbarContent({
children,
isDark: false,
renderOnly: [
'Appbar.Content',
withAppbarBackAction && 'Appbar.BackAction',
],
});
const v3Spacing = {
marginLeft: 12,
};
expect(renderResult()[0].props.style).toEqual(
expect.arrayContaining([expect.objectContaining(v3Spacing)])
);
});
it('Is recognized as a header when no onPress callback has been pressed', () => {
const { getByRole } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header>
<Appbar.Content title="Accessible test" />
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
expect(getByRole('header')).toBeTruthy();
});
it('is recognized as a button when onPress callback has been passed', () => {
const { getByTestId } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header>
<Appbar.Content title="Accessible test" onPress={() => {}} />
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
expect(getByTestId('appbar-content').props.accessibilityRole).toEqual(
'button'
);
expect(
getByTestId('appbar-content').props.accessibilityState || {}
).not.toMatchObject({ disabled: true });
expect(
getByTestId('appbar-content-title-text').props.accessibilityRole
).toEqual('none');
});
it('is recognized as a disabled button when onPress and disabled is passed', () => {
const { getByTestId } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header>
<Appbar.Content title="Accessible test" onPress={() => {}} disabled />
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
expect(getByTestId('appbar-content').props.accessibilityRole).toEqual(
'button'
);
expect(
getByTestId('appbar-content').props.accessibilityState
).toMatchObject({ disabled: true });
expect(
getByTestId('appbar-content-title-text').props.accessibilityRole
).toEqual('none');
});
});
describe('AppbarAction', () => {
it('should be rendered with default theme color', () => {
const { getByTestId } = render(
<Appbar>
<Appbar.Action icon="menu" testID="appbar-action" />
</Appbar>
);
const appbarActionIcon = getByTestId('cross-fade-icon-current').props
.children;
expect(appbarActionIcon.props.color).toBe(
getTheme().colors.onSurfaceVariant
);
});
it('should be rendered with specific theme color if is leading', () => {
const { getByTestId } = render(
<Appbar>
<Appbar.Action icon="menu" testID="appbar-action" isLeading />
</Appbar>
);
const appbarActionIcon = getByTestId('cross-fade-icon-current').props
.children;
expect(appbarActionIcon.props.color).toBe(getTheme().colors.onSurface);
});
it('should be rendered with custom color', () => {
const { getByTestId } = render(
<Appbar>
<Appbar.Action icon="menu" color="purple" testID="appbar-action" />
</Appbar>
);
const appbarActionIcon = getByTestId('cross-fade-icon-current').props
.children;
expect(appbarActionIcon.props.color).toBe('purple');
});
it('should render AppbarBackAction with custom color', () => {
const { getByTestId } = render(
<Appbar>
<Appbar.BackAction color="purple" testID="appbar-action" />
</Appbar>
);
const appbarBackActionIcon = getByTestId('cross-fade-icon-current').props
.children;
expect(appbarBackActionIcon.props.color).toBe('purple');
});
});
describe('AppbarContent', () => {
(['small', 'medium', 'large', 'center-aligned'] as const).forEach((mode) =>
it(`should render text component with appropriate variant for ${mode} mode`, () => {
const { getByTestId } = render(
<Appbar mode={mode}>
<Appbar.Content title="Title" />
</Appbar>
);
expect(getByTestId('appbar-content-title-text')).toHaveStyle(
getTheme().fonts[modeTextVariant[mode]]
);
})
);
it('should render component passed to title', () => {
const { getByText } = render(
<Appbar>
<Appbar.Content
title={
<Text testID="title" variant="displaySmall">
Title
</Text>
}
/>
</Appbar>
);
expect(getByText('Title')).toBeDefined();
});
});
describe('getAppbarColors', () => {
const elevation = 4;
const customBackground = 'aquamarine';
it('should return custom color no matter what is the theme version', () => {
expect(
getAppbarBackgroundColor(getTheme(), elevation, customBackground)
).toBe(customBackground);
});
it('should return v3 light color if theme version is 3', () => {
expect(getAppbarBackgroundColor(getTheme(), elevation)).toBe(
tokens.md.ref.palette.neutral98
);
});
it('should return v3 dark color if theme version is 3', () => {
expect(getAppbarBackgroundColor(getTheme(true), elevation)).toBe(
tokens.md.ref.palette.neutral6
);
});
});
describe('animated value changes correctly', () => {
it('appbar animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Appbar testID="appbar" style={[{ transform: [{ scale: value }] }]}>
<Appbar.Action icon="menu" />
</Appbar>
);
expect(getByTestId('appbar-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('appbar-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});
it('action animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Appbar>
<Appbar.Action
icon="menu"
style={[{ transform: [{ scale: value }] }]}
testID="appbar-action"
/>
</Appbar>
);
expect(getByTestId('appbar-action-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('appbar-action-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});
it('back action animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Appbar>
<Appbar.BackAction
style={[{ transform: [{ scale: value }] }]}
testID="appbar-back-action"
/>
</Appbar>
);
expect(getByTestId('appbar-back-action-container-outer-layer')).toHaveStyle(
{
transform: [{ scale: 1 }],
}
);
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('appbar-back-action-container-outer-layer')).toHaveStyle(
{
transform: [{ scale: 1.5 }],
}
);
});
it('header animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header
style={[{ transform: [{ scale: value }] }]}
testID="appbar-header"
>
{null}
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
expect(getByTestId('appbar-header-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('appbar-header-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});
it('header bottom border radius applied correctly', () => {
const style = { borderBottomLeftRadius: 16, borderBottomRightRadius: 16 };
const { getByTestId } = render(
<mockSafeAreaContext.SafeAreaProvider>
<Appbar.Header style={style} testID="appbar-header">
{null}
</Appbar.Header>
</mockSafeAreaContext.SafeAreaProvider>
);
expect(getByTestId('appbar-header-root-layer')).toHaveStyle(style);
});
describe('getAppbarBorders', () => {
const style = { borderRadius: 10, height: 60, top: 13 };
it('should return only border radius styles', () => {
expect(getAppbarBorders(style)).toEqual({ borderRadius: 10 });
});
it('should return empty object if no borders are passed', () => {
const style = { height: 60, top: 13 };
expect(getAppbarBorders(style)).toEqual({});
});
});
});