This repository was archived by the owner on Feb 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcreateAppContainer-test.js
More file actions
325 lines (270 loc) · 9.27 KB
/
createAppContainer-test.js
File metadata and controls
325 lines (270 loc) · 9.27 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
import React from 'react';
import { View, Linking } from 'react-native';
import TestRenderer from 'react-test-renderer';
import flushPromises from '../utils/flushPromises';
import createAppContainer, {
_TESTING_ONLY_reset_container_count,
} from '../createAppContainer';
import {
NavigationActions,
createNavigator,
StackRouter,
SwitchView,
} from '@react-navigation/core';
function createStackNavigator(routeConfigMap, stackConfig = {}) {
const router = StackRouter(routeConfigMap, stackConfig);
return createAppContainer(createNavigator(SwitchView, router, stackConfig));
}
describe('NavigationContainer', () => {
jest.useFakeTimers();
beforeEach(() => {
_TESTING_ONLY_reset_container_count();
});
const FooScreen = () => <div />;
const BarScreen = () => <div />;
const BazScreen = () => <div />;
const CarScreen = () => <div />;
const DogScreen = () => <div />;
const ElkScreen = () => <div />;
const Stack = createStackNavigator(
{
foo: {
screen: FooScreen,
},
bar: {
screen: BarScreen,
},
baz: {
screen: BazScreen,
},
car: {
screen: CarScreen,
},
dog: {
screen: DogScreen,
},
elk: {
screen: ElkScreen,
},
},
{
initialRouteName: 'foo',
}
);
const NavigationContainer = createAppContainer(Stack);
describe('state.nav', () => {
it("should be preloaded with the router's initial state", async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// thus on the first render the component returns null (or the result of renderLoadingExperimental)
expect(testRenderer.toJSON()).toEqual(null);
// wait for the state to be set
await flushPromises();
expect(navigationContainer.state.nav).toMatchObject({ index: 0 });
expect(navigationContainer.state.nav.routes).toBeInstanceOf(Array);
expect(navigationContainer.state.nav.routes.length).toBe(1);
expect(navigationContainer.state.nav.routes[0]).toMatchObject({
routeName: 'foo',
});
});
it('should be preloaded with the state corresponding to the URL', async () => {
const standardGetInitialURL = Linking.getInitialURL;
Linking.getInitialURL = () => Promise.resolve('host://elk');
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
expect(navigationContainer.state.nav).toMatchObject({ index: 0 });
expect(navigationContainer.state.nav.routes).toBeInstanceOf(Array);
expect(navigationContainer.state.nav.routes.length).toBe(1);
expect(navigationContainer.state.nav.routes[0]).toMatchObject({
routeName: 'elk',
});
Linking.getInitialURL = standardGetInitialURL;
});
});
describe('dispatch', () => {
it('returns true when given a valid action', async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
jest.runOnlyPendingTimers();
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'bar' })
)
).toEqual(true);
});
it('returns false when given an invalid action', async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
jest.runOnlyPendingTimers();
expect(navigationContainer.dispatch(NavigationActions.back())).toEqual(
false
);
});
it('updates state.nav with an action by the next tick', async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'bar' })
)
).toEqual(true);
// Fake the passing of a tick
jest.runOnlyPendingTimers();
expect(navigationContainer.state.nav).toMatchObject({
index: 1,
routes: [{ routeName: 'foo' }, { routeName: 'bar' }],
});
});
it('does not discard actions when called twice in one tick', async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
const initialState = JSON.parse(
JSON.stringify(navigationContainer.state.nav)
);
// First dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'bar' })
)
).toEqual(true);
// Make sure that the test runner has NOT synchronously applied setState before the tick
expect(navigationContainer.state.nav).toMatchObject(initialState);
// Second dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'baz' })
)
).toEqual(true);
// Fake the passing of a tick
jest.runOnlyPendingTimers();
expect(navigationContainer.state.nav).toMatchObject({
index: 2,
routes: [
{ routeName: 'foo' },
{ routeName: 'bar' },
{ routeName: 'baz' },
],
});
});
it('does not discard actions when called more than 2 times in one tick', async () => {
const testRenderer = TestRenderer.create(<NavigationContainer />);
const navigationContainer = testRenderer.getInstance();
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
const initialState = JSON.parse(
JSON.stringify(navigationContainer.state.nav)
);
// First dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'bar' })
)
).toEqual(true);
// Make sure that the test runner has NOT synchronously applied setState before the tick
expect(navigationContainer.state.nav).toMatchObject(initialState);
// Second dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'baz' })
)
).toEqual(true);
// Third dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'car' })
)
).toEqual(true);
// Fourth dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'dog' })
)
).toEqual(true);
// Fifth dispatch
expect(
navigationContainer.dispatch(
NavigationActions.navigate({ routeName: 'elk' })
)
).toEqual(true);
// Fake the passing of a tick
jest.runOnlyPendingTimers();
expect(navigationContainer.state.nav).toMatchObject({
index: 5,
routes: [
{ routeName: 'foo' },
{ routeName: 'bar' },
{ routeName: 'baz' },
{ routeName: 'car' },
{ routeName: 'dog' },
{ routeName: 'elk' },
],
});
});
});
describe('warnings', () => {
function spyConsole() {
let spy = {};
beforeEach(() => {
spy.console = jest.spyOn(console, 'warn').mockImplementation(() => {});
});
afterEach(() => {
spy.console.mockRestore();
});
return spy;
}
describe('detached navigators', () => {
beforeEach(() => {
_TESTING_ONLY_reset_container_count();
});
let spy = spyConsole();
it('warns when you render more than one container explicitly', async () => {
class BlankScreen extends React.Component {
render() {
return <View />;
}
}
class RootScreen extends React.Component {
render() {
return (
<View>
<ChildNavigator />
</View>
);
}
}
const ChildNavigator = createAppContainer(
createStackNavigator({
Child: BlankScreen,
})
);
const RootStack = createAppContainer(
createStackNavigator({
Root: RootScreen,
})
);
TestRenderer.create(<RootStack />);
// the state only actually gets set asynchronously on componentDidMount
// wait for the state to be set
await flushPromises();
expect(spy).toMatchSnapshot();
});
});
});
});