forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.test.tsx
More file actions
283 lines (248 loc) · 7.22 KB
/
Menu.test.tsx
File metadata and controls
283 lines (248 loc) · 7.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
import * as React from 'react';
import { Animated, Dimensions, StyleSheet, View } from 'react-native';
import { act, render, screen, waitFor } from '@testing-library/react-native';
import { getTheme } from '../../core/theming';
import { MD3Elevation } from '../../types';
import Button from '../Button/Button';
import Menu, { ELEVATION_LEVELS_MAP } from '../Menu/Menu';
import Portal from '../Portal/Portal';
const styles = StyleSheet.create({
contentStyle: {
borderTopLeftRadius: 0,
borderTopRightRadius: 0,
},
});
it('renders visible menu', () => {
const tree = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders not visible menu', () => {
const tree = render(
<Portal.Host>
<Menu
visible={false}
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
).toJSON();
expect(tree).toMatchSnapshot();
});
it('renders menu with content styles', () => {
const tree = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
contentStyle={styles.contentStyle}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
).toJSON();
expect(tree).toMatchSnapshot();
});
([0, 1, 2, 3, 4, 5] as MD3Elevation[]).forEach((elevation) =>
it(`renders menu with background color based on elevation value = ${elevation}`, () => {
const theme = getTheme(false, true);
const { getByTestId } = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
elevation={elevation}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
);
expect(getByTestId('menu-surface')).toHaveStyle({
backgroundColor: theme.colors.elevation[ELEVATION_LEVELS_MAP[elevation]],
});
})
);
it('uses the default anchorPosition of top', async () => {
const dimensionsSpy = jest.spyOn(Dimensions, 'get').mockReturnValue({
width: 400,
height: 800,
scale: 2,
fontScale: 2,
});
const measureSpy = jest
.spyOn(View.prototype, 'measureInWindow')
.mockImplementation((fn) => fn(100, 100, 80, 32));
function makeMenu(visible: boolean) {
return (
<Portal.Host>
<Menu
visible={visible}
onDismiss={jest.fn()}
anchor={
<Button mode="outlined" testID="anchor">
Open menu
</Button>
}
contentStyle={styles.contentStyle}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
);
}
render(makeMenu(false));
// You must update instead of creating directly and using it because
// componentDidUpdate isn't called by default in jest. Forcing the update
// than triggers measureInWindow, which is how Menu decides where to show
// itself.
await act(async () => {
screen.update(makeMenu(true));
// Menu waits a tick for Portal refs to be up-to-date.
await Promise.resolve();
});
await waitFor(() => {
const menu = screen.getByTestId('menu-view');
expect(menu).toHaveStyle({
position: 'absolute',
left: 100,
top: 100,
});
});
measureSpy.mockRestore();
dimensionsSpy.mockRestore();
});
it('respects anchorPosition bottom', async () => {
const dimensionsSpy = jest.spyOn(Dimensions, 'get').mockReturnValue({
width: 400,
height: 800,
scale: 2,
fontScale: 2,
});
const measureSpy = jest
.spyOn(View.prototype, 'measureInWindow')
.mockImplementation((fn) => fn(100, 100, 80, 32));
function makeMenu(visible: boolean) {
return (
<Portal.Host>
<Menu
visible={visible}
onDismiss={jest.fn()}
anchor={
<Button mode="outlined" testID="anchor">
Open menu
</Button>
}
anchorPosition="bottom"
contentStyle={styles.contentStyle}
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
);
}
render(makeMenu(false));
await act(async () => {
screen.update(makeMenu(true));
// Menu waits a tick for Portal refs to be up-to-date.
await Promise.resolve();
});
await waitFor(() => {
const menu = screen.getByTestId('menu-view');
expect(menu).toHaveStyle({
position: 'absolute',
left: 100,
top: 132,
});
});
measureSpy.mockRestore();
dimensionsSpy.mockRestore();
});
it('animated value changes correctly', () => {
const value = new Animated.Value(1);
const { getByTestId } = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
testID="menu"
contentStyle={[{ transform: [{ scale: value }] }]}
>
<Menu.Item onPress={jest.fn()} title="Test" />
</Menu>
</Portal.Host>
);
expect(getByTestId('menu-surface-outer-layer')).toHaveStyle({
transform: [{ scale: 1 }],
});
Animated.timing(value, {
toValue: 1.5,
useNativeDriver: false,
duration: 200,
}).start();
act(() => {
jest.advanceTimersByTime(200);
});
expect(getByTestId('menu-surface-outer-layer')).toHaveStyle({
transform: [{ scale: 1.5 }],
});
});
it('renders menu with mode "elevated"', () => {
const { getByTestId } = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
mode="elevated"
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
);
const menuSurface = getByTestId('menu-surface');
// Get flattened styles
const styles = StyleSheet.flatten(menuSurface.props.style);
expect(styles).toHaveProperty('shadowColor');
expect(styles).toHaveProperty('shadowOpacity');
});
it('renders menu with mode "flat"', () => {
const { getByTestId } = render(
<Portal.Host>
<Menu
visible
onDismiss={jest.fn()}
anchor={<Button mode="outlined">Open menu</Button>}
mode="flat"
>
<Menu.Item onPress={jest.fn()} title="Undo" />
<Menu.Item onPress={jest.fn()} title="Redo" />
</Menu>
</Portal.Host>
);
const menuSurface = getByTestId('menu-surface');
// Get flattened styles
const styles = StyleSheet.flatten(menuSurface.props.style);
expect(styles).not.toHaveProperty('shadowColor');
expect(styles).not.toHaveProperty('shadowOpacity');
});