-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathFAB.test.tsx
More file actions
354 lines (297 loc) · 8.43 KB
/
Copy pathFAB.test.tsx
File metadata and controls
354 lines (297 loc) · 8.43 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
import * as React from 'react';
import { Animated, StyleSheet } from 'react-native';
import { fireEvent, render } from '@testing-library/react-native';
import { act } from 'react-test-renderer';
import { getTheme } from '../../core/theming';
import FAB from '../FAB';
import { getFABColors } from '../FAB/utils';
const styles = StyleSheet.create({
borderRadius: {
borderRadius: 0,
},
small: {
height: 40,
width: 40,
borderRadius: 12,
},
medium: {
height: 56,
width: 56,
borderRadius: 16,
},
large: {
height: 96,
width: 96,
borderRadius: 28,
},
});
it('renders default FAB', () => {
const tree = render(<FAB onPress={() => {}} icon="plus" />).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders small FAB', () => {
const tree = render(
<FAB size="small" onPress={() => {}} icon="plus" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders large FAB', () => {
const tree = render(
<FAB size="large" onPress={() => {}} icon="plus" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders FAB with custom size prop', () => {
const tree = render(
<FAB customSize={100} onPress={() => {}} icon="plus" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders extended FAB', () => {
const tree = render(
<FAB onPress={() => {}} icon="plus" label="Add items" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders extended FAB with custom size prop', () => {
const tree = render(
<FAB customSize={100} onPress={() => {}} icon="plus" label="Add items" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders loading FAB', () => {
const tree = render(
<FAB onPress={() => {}} icon="plus" loading={true} />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders loading FAB with custom size prop', () => {
const tree = render(
<FAB customSize={100} onPress={() => {}} icon="plus" loading={true} />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders custom color for the icon and label of the FAB', () => {
const tree = render(
<FAB onPress={() => {}} icon="plus" color="#AA0114" />
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders not visible FAB', () => {
const { update, toJSON } = render(<FAB onPress={() => {}} icon="plus" />);
update(<FAB onPress={() => {}} icon="plus" visible={false} />);
expect(toJSON()).toMatchSnapshot();
});
it('renders visible FAB', () => {
const { update, toJSON } = render(
<FAB onPress={() => {}} icon="plus" visible={false} />
);
update(<FAB onPress={() => {}} icon="plus" visible={true} />);
expect(toJSON()).toMatchSnapshot();
});
it('renders FAB with custom border radius', () => {
const { getByTestId } = render(
<FAB
onPress={() => {}}
icon="plus"
testID="fab"
style={styles.borderRadius}
/>
);
expect(getByTestId('fab-container')).toHaveStyle({ borderRadius: 0 });
});
it('renders FAB with zero border radius', () => {
const { getByTestId } = render(
<FAB
theme={{ shapes: { corner: { large: 0 } } }}
onPress={() => {}}
icon="plus"
testID="fab"
/>
);
expect(getByTestId('fab-container')).toHaveStyle({ borderRadius: 0 });
});
it('renders FAB without uppercase styling by default', () => {
const { getByTestId } = render(
<FAB onPress={() => {}} label="Add items" testID="fab" />
);
expect(getByTestId('fab-text')).not.toHaveStyle({
textTransform: 'uppercase',
});
});
it('renders FAB without uppercase styling if uppercase prop is falsy', () => {
const { getByTestId } = render(
<FAB onPress={() => {}} label="Add items" testID="fab" uppercase={false} />
);
expect(getByTestId('fab-text')).not.toHaveStyle({
textTransform: 'uppercase',
});
});
it('renders FAB with uppercase styling if uppercase prop is truthy', () => {
const { getByTestId } = render(
<FAB onPress={() => {}} label="Add items" testID="fab" uppercase />
);
expect(getByTestId('fab-text')).toHaveStyle({
textTransform: 'uppercase',
});
});
(['small', 'medium', 'large'] as const).forEach((size) => {
it(`renders ${size} FAB with correct size and border radius`, () => {
const { getByTestId } = render(
<FAB onPress={() => {}} size={size} icon="plus" testID={`${size}-fab`} />
);
expect(getByTestId(`${size}-fab-content`)).toHaveStyle(styles[size]);
});
});
describe('getFABColors - background color', () => {
it('should return color from styles', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'primary',
customBackgroundColor: 'purple',
})
).toMatchObject({
backgroundColor: 'purple',
});
});
it('should return correct theme color, primary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'primary',
})
).toMatchObject({
backgroundColor: getTheme().colors.primaryContainer,
});
});
it('should return correct theme color, for theme version 3, secondary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'secondary',
})
).toMatchObject({
backgroundColor: getTheme().colors.secondaryContainer,
});
});
it('should return correct theme color, for theme version 3, tertiary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'tertiary',
})
).toMatchObject({
backgroundColor: getTheme().colors.tertiaryContainer,
});
});
it('should return correct theme color, for theme version 3, surface variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'surface',
})
).toMatchObject({
backgroundColor: getTheme().colors.surfaceContainerHigh,
});
});
});
describe('getFABColors - foreground color', () => {
it('should return custom color', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'primary',
customColor: 'purple',
})
).toMatchObject({
foregroundColor: 'purple',
});
});
it('should return correct theme color, primary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'primary',
})
).toMatchObject({
foregroundColor: getTheme().colors.onPrimaryContainer,
});
});
it('should return correct theme color, for theme version 3, secondary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'secondary',
})
).toMatchObject({
foregroundColor: getTheme().colors.onSecondaryContainer,
});
});
it('should return correct theme color, for theme version 3, tertiary variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'tertiary',
})
).toMatchObject({
foregroundColor: getTheme().colors.onTertiaryContainer,
});
});
it('should return correct theme color, for theme version 3, surface variant', () => {
expect(
getFABColors({
theme: getTheme(),
variant: 'surface',
})
).toMatchObject({
foregroundColor: getTheme().colors.primary,
});
});
});
it('animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<FAB
size="small"
onPress={() => {}}
icon="plus"
testID="fab"
style={[{ transform: [{ scale: value }] }]}
/>
);
expect(getByTestId('fab-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('fab-container-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});
describe('FAB events', () => {
it('onPress passes event', () => {
const onPress = jest.fn();
const { getByText } = render(<FAB onPress={onPress} label="Add items" />);
act(() => {
fireEvent(getByText('Add items'), 'onPress', { key: 'value' });
});
expect(onPress).toHaveBeenCalledWith({ key: 'value' });
});
it('onLongPress passes event', () => {
const onLongPress = jest.fn();
const { getByText } = render(
<FAB onLongPress={onLongPress} label="Add items" />
);
act(() => {
fireEvent(getByText('Add items'), 'onLongPress', { key: 'value' });
});
expect(onLongPress).toHaveBeenCalledWith({ key: 'value' });
});
});