-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathReduxRouter-test.js
358 lines (287 loc) · 10.3 KB
/
ReduxRouter-test.js
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
import {
push,
ReduxRouter,
reduxReactRouter,
routerStateReducer,
} from '../';
import * as server from '../server';
import React, { Component, PropTypes } from 'react';
import { renderToString } from 'react-dom/server';
import {
renderIntoDocument,
findRenderedComponentWithType,
findRenderedDOMComponentWithTag,
Simulate
} from 'react-addons-test-utils';
import { Provider, connect } from 'react-redux';
import { createStore, combineReducers } from 'redux';
import createHistory from 'history/lib/createMemoryHistory';
import { Link, Route, RouterContext } from 'react-router';
import jsdom from 'mocha-jsdom';
import sinon from 'sinon';
@connect(state => state.router)
class App extends Component {
static propTypes = {
children: PropTypes.node,
location: PropTypes.object
}
render() {
const { location, children } = this.props;
return (
<div>
<p>{`Pathname: ${location.pathname}`}</p>
{children}
</div>
);
}
}
class Parent extends Component {
static propTypes = {
children: PropTypes.node
}
render() {
return (
<div>
<Link to={{ pathname: '/parent/child/321', query: { key: 'value' }}} />
{this.props.children}
</div>
);
}
}
class Child extends Component {
render() {
return (
<div />
);
}
}
function redirectOnEnter(pathname) {
return (routerState, replace) => replace(null, pathname);
}
const routes = (
<Route path="/" component={App} onEnter={redirectOnEnter}>
<Route path="parent" component={Parent}>
<Route path="child" component={Child} />
<Route path="child/:id" component={Child} />
</Route>
<Route path="redirect" onEnter={redirectOnEnter('/parent/child/850')} />
</Route>
);
describe('<ReduxRouter>', () => {
jsdom();
function renderApp() {
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({
history
})(createStore)(reducer);
store.dispatch(push({ pathname: '/parent/child/123', query: { key: 'value' } }));
return renderIntoDocument(
<Provider store={store}>
<ReduxRouter>
{routes}
</ReduxRouter>
</Provider>
);
}
it('renders a React Router app using state from a Redux <Provider>', () => {
const tree = renderApp();
const child = findRenderedComponentWithType(tree, Child);
expect(child.props.location.pathname).to.equal('/parent/child/123');
expect(child.props.location.query).to.eql({ key: 'value' });
expect(child.props.params).to.eql({ id: '123' });
});
it('only renders once on initial load', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({
history
})(createStore)(reducer);
store.dispatch(push({ pathname: '/parent/child/123', query: { key: 'value' } }));
const historySpy = sinon.spy();
history.listen(() => historySpy());
renderIntoDocument(
<Provider store={store}>
<ReduxRouter>
{routes}
</ReduxRouter>
</Provider>
);
expect(historySpy.callCount).to.equal(1);
});
it('should accept React.Components for "RoutingContext" prop of ReduxRouter', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({
history
})(createStore)(reducer);
store.dispatch(push({ pathname: '/parent/child/123', query: { key: 'value' } }));
const consoleErrorSpy = sinon.spy(console, 'error');
renderIntoDocument(
<Provider store={store}>
<ReduxRouter RoutingContext={RouterContext}>
{routes}
</ReduxRouter>
</Provider>
);
console.error.restore(); // eslint-disable-line no-console
expect(consoleErrorSpy.called).to.be.false;
});
it('should accept stateless React components for "RoutingContext" prop of ReduxRouter', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({
history
})(createStore)(reducer);
store.dispatch(push({ pathname: '/parent/child/123', query: { key: 'value' } }));
const consoleErrorSpy = sinon.spy(console, 'error');
renderIntoDocument(
<Provider store={store}>
<ReduxRouter RoutingContext={(props) => <RouterContext {...props}/>}>
{routes}
</ReduxRouter>
</Provider>
);
console.error.restore(); // eslint-disable-line no-console
expect(consoleErrorSpy.called).to.be.false;
});
it('should not accept non-React-components for "RoutingContext" prop of ReduxRouter', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({
history
})(createStore)(reducer);
store.dispatch(push({ pathname: '/parent/child/123', query: { key: 'value' } }));
class CustomRouterContext extends React.Component {
render() {
return <RouterContext {...this.props}/>;
}
}
const consoleErrorSpy = sinon.spy(console, 'error');
const render = () => renderIntoDocument(
<Provider store={store}>
<ReduxRouter RoutingContext={new CustomRouterContext({})}>
{routes}
</ReduxRouter>
</Provider>
);
const invalidElementTypeErrorMessage = 'Element type is invalid: expected a string (for built-in components) ' +
'or a class/function (for composite components) but got: object. ' +
'Check the render method of `ReduxRouterContext`.';
const routingContextInvalidPropErrorMessage = 'Invalid prop `RoutingContext` of type `object` supplied to `ReduxRouterContext`';
const routingContextInvalidElementTypeErrorMessage = 'React.createElement: type should not be null, undefined, boolean, or number. ' +
'It should be a string (for DOM elements) or a ReactClass (for composite components). ' +
'Check the render method of `ReduxRouterContext`.';
expect(render).to.throw(invalidElementTypeErrorMessage);
console.error.restore(); // eslint-disable-line no-console
expect(consoleErrorSpy.calledTwice).to.be.true;
expect(consoleErrorSpy.args[0][0]).to.contain(routingContextInvalidPropErrorMessage);
expect(consoleErrorSpy.args[1][0]).to.contain(routingContextInvalidElementTypeErrorMessage);
});
// <Link> does stuff inside `onClick` that makes it difficult to test.
// They work in the example.
// TODO: Refer to React Router tests once they're completed
it.skip('works with <Link>', () => {
const tree = renderApp();
const child = findRenderedComponentWithType(tree, Child);
expect(child.props.location.pathname).to.equal('/parent/child/123');
const link = findRenderedDOMComponentWithTag(tree, 'a');
Simulate.click(link);
expect(child.props.location.pathname).to.equal('/parent/child/321');
});
describe('server-side rendering', () => {
it('works', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const store = server.reduxReactRouter({ routes, createHistory })(createStore)(reducer);
store.dispatch(server.match('/parent/child/850?key=value', (err, redirectLocation, routerState) => {
const output = renderToString(
<Provider store={store}>
<ReduxRouter />
</Provider>
);
expect(output).to.match(/Pathname: \/parent\/child\/850/);
expect(routerState.location.query).to.eql({ key: 'value' });
}));
});
it('should gracefully handle 404s', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const store = server.reduxReactRouter({ routes, createHistory })(createStore)(reducer);
expect(() => store.dispatch(server.match('/404', () => {})))
.to.not.throw();
});
it('throws if routes are not passed to store enhancer', () => {
const reducer = combineReducers({
router: routerStateReducer
});
expect(() => server.reduxReactRouter()(createStore)(reducer))
.to.throw(
'When rendering on the server, routes must be passed to the '
+ 'reduxReactRouter() store enhancer; routes as a prop or as children '
+ 'of <ReduxRouter> is not supported. To deal with circular '
+ 'dependencies between routes and the store, use the '
+ 'option getRoutes(store).'
);
});
it('throws if createHistory is not passed to store enhancer', () => {
const reducer = combineReducers({
router: routerStateReducer
});
expect(() => server.reduxReactRouter({ routes })(createStore)(reducer))
.to.throw(
'When rendering on the server, createHistory must be passed to the '
+ 'reduxReactRouter() store enhancer'
);
});
it('handles redirects', () => {
const reducer = combineReducers({
router: routerStateReducer
});
const store = server.reduxReactRouter({ routes, createHistory })(createStore)(reducer);
store.dispatch(server.match('/redirect', (error, redirectLocation) => {
expect(error).to.be.null;
expect(redirectLocation.pathname).to.equal('/parent/child/850');
}));
});
});
describe('dynamic route switching', () => {
it('updates routes wnen <ReduxRouter> receives new props', () => {
const newRoutes = (
<Route path="/parent/:route" component={App} />
);
const reducer = combineReducers({
router: routerStateReducer
});
const history = createHistory();
const store = reduxReactRouter({ history })(createStore)(reducer);
class RouterContainer extends Component {
state = { routes }
render() {
return (
<Provider store={store}>
<ReduxRouter routes={this.state.routes} />
</Provider>
);
}
}
store.dispatch(push({ pathname: '/parent/child' }));
const tree = renderIntoDocument(<RouterContainer />);
expect(store.getState().router.params).to.eql({});
tree.setState({ routes: newRoutes });
expect(store.getState().router.params).to.eql({ route: 'child' });
});
});
});