-
-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathLink-test.js
560 lines (494 loc) · 14.6 KB
/
Link-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
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
import expect, { spyOn } from 'expect'
import React, { Component } from 'react'
import { Simulate } from 'react-addons-test-utils'
import { render } from 'react-dom'
import createHistory from '../createMemoryHistory'
import hashHistory from '../hashHistory'
import Router from '../Router'
import Route from '../Route'
import Link from '../Link'
import execSteps from './execSteps'
const { click } = Simulate
describe('A <Link>', () => {
const Hello = ({ params }) => (
<div>Hello {params.name}!</div>
)
const Goodbye = () => (
<div>Goodbye</div>
)
let node
beforeEach(() => {
node = document.createElement('div')
})
it('should not render unnecessary class=""', () => {
render((
<Link to="/something" />
), node, () => {
const a = node.querySelector('a')
expect(a.hasAttribute('class')).toBe(false)
})
})
it('knows how to make its href', () => {
const LinkWrapper = () => (
<Link to={{
pathname: '/hello/michael',
query: { the: 'query' },
hash: '#the-hash'
}}>
Link
</Link>
)
render((
<Router history={createHistory('/')}>
<Route path="/" component={LinkWrapper} />
</Router>
), node, () => {
const a = node.querySelector('a')
expect(a.getAttribute('href')).toEqual('/hello/michael?the=query#the-hash')
})
})
describe('with hash history', () => {
it('should know how to make its href', () => {
const LinkWrapper = () => (
<Link to={{ pathname: '/hello/michael', query: { the: 'query' } }}>
Link
</Link>
)
render((
<Router history={hashHistory}>
<Route path="/" component={LinkWrapper} />
</Router>
), node, () => {
const a = node.querySelector('a')
expect(a.getAttribute('href')).toEqual('#/hello/michael?the=query')
})
})
})
describe('with params', () => {
const App = () => (
<div>
<Link
to="/hello/michael"
activeClassName="active"
>
Michael
</Link>
<Link
to={{ pathname: '/hello/ryan', query: { the: 'query' } }}
activeClassName="active"
>
Ryan
</Link>
</div>
)
it('is active when its params match', done => {
render((
<Router history={createHistory('/hello/michael')}>
<Route path="/" component={App}>
<Route path="hello/:name" component={Hello} />
</Route>
</Router>
), node, () => {
const a = node.querySelectorAll('a')[0]
expect(a.className.trim()).toEqual('active')
done()
})
})
it('is not active when its params do not match', done => {
render((
<Router history={createHistory('/hello/michael')}>
<Route path="/" component={App}>
<Route path="hello/:name" component={Hello} />
</Route>
</Router>
), node, () => {
const a = node.querySelectorAll('a')[1]
expect(a.className.trim()).toEqual('')
done()
})
})
it('is active when its params and query match', done => {
render((
<Router history={createHistory('/hello/ryan?the=query')}>
<Route path="/" component={App}>
<Route path="hello/:name" component={Hello} />
</Route>
</Router>
), node, () => {
const a = node.querySelectorAll('a')[1]
expect(a.className.trim()).toEqual('active')
done()
})
})
it('is not active when its query does not match', done => {
render((
<Router history={createHistory('/hello/ryan?the=other+query')}>
<Route path="/" component={App}>
<Route path="hello/:name" component={Hello} />
</Route>
</Router>
), node, () => {
const a = node.querySelectorAll('a')[1]
expect(a.className.trim()).toEqual('')
done()
})
})
})
describe('when its route is active and className is empty', () => {
it("it shouldn't have an active class", done => {
const LinkWrapper = ({ children }) => (
<div>
<Link to="/hello" className="dontKillMe" activeClassName="">
Link
</Link>
{children}
</div>
)
const history = createHistory('/goodbye')
let a
const steps = [
() => {
a = node.querySelector('a')
expect(a.className).toEqual('dontKillMe')
history.push('/hello')
},
() => {
expect(a.className).toEqual('dontKillMe')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper}>
<Route path="goodbye" component={Goodbye} />
<Route path="hello" component={Hello} />
</Route>
</Router>
), node, execNextStep)
})
})
describe('when its route is active', () => {
it('has its activeClassName', done => {
const LinkWrapper = ({ children }) => (
<div>
<Link to="/hello" className="dontKillMe" activeClassName="highlight">
Link
</Link>
{children}
</div>
)
let a
const history = createHistory('/goodbye')
const steps = [
() => {
a = node.querySelector('a')
expect(a.className).toEqual('dontKillMe')
history.push('/hello')
},
() => {
expect(a.className).toEqual('dontKillMe highlight')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper}>
<Route path="goodbye" component={Goodbye} />
<Route path="hello" component={Hello} />
</Route>
</Router>
), node, execNextStep)
})
it('has its activeStyle', done => {
const LinkWrapper = ({ children }) => (
<div>
<Link
to="/hello"
style={{ color: 'white' }}
activeStyle={{ color: 'red' }}
>
Link
</Link>
{children}
</div>
)
let a
const history = createHistory('/goodbye')
const steps = [
() => {
a = node.querySelector('a')
expect(a.style.color).toEqual('white')
history.push('/hello')
},
() => {
expect(a.style.color).toEqual('red')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper}>
<Route path="hello" component={Hello} />
<Route path="goodbye" component={Goodbye} />
</Route>
</Router>
), node, execNextStep)
})
})
describe('when route changes', () => {
it('changes active state', done => {
const LinkWrapper = ({ children }) => (
<div>
<Link to="/hello" activeClassName="active">Link</Link>
{children}
</div>
)
let a
const history = createHistory('/goodbye')
const steps = [
() => {
a = node.querySelector('a')
expect(a.className).toEqual('')
history.push('/hello')
},
() => {
expect(a.className).toEqual('active')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper}>
<Route path="goodbye" component={Goodbye} />
<Route path="hello" component={Hello} />
</Route>
</Router>
), node, execNextStep)
})
it('changes active state inside static containers', done => {
class LinkWrapper extends Component {
shouldComponentUpdate() {
return false
}
render() {
return (
<div>
<Link to="/hello" activeClassName="active">Link</Link>
{this.props.children}
</div>
)
}
}
let a
const history = createHistory('/goodbye')
const steps = [
() => {
a = node.querySelector('a')
expect(a.className).toEqual('')
history.push('/hello')
},
() => {
expect(a.className).toEqual('active')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper}>
<Route path="goodbye" component={Goodbye} />
<Route path="hello" component={Hello} />
</Route>
</Router>
), node, execNextStep)
})
})
describe('when clicked', () => {
it('calls a user defined click handler', done => {
class LinkWrapper extends Component {
handleClick() {
done()
}
render() {
return <Link to="/hello" onClick={this.handleClick}>Link</Link>
}
}
render((
<Router history={createHistory('/')}>
<Route path="/" component={LinkWrapper} />
<Route path="/hello" component={Hello} />
</Router>
), node, () => {
click(node.querySelector('a'))
})
})
it('transitions to the correct route for string', done => {
const LinkWrapper = () => (
<Link to="/hello?the=query#hash">
Link
</Link>
)
const history = createHistory('/')
const spy = spyOn(history, 'push').andCallThrough()
const steps = [
() => {
click(node.querySelector('a'), { button: 0 })
},
({ location }) => {
expect(node.innerHTML).toMatch(/Hello/)
expect(spy).toHaveBeenCalled()
expect(location.pathname).toEqual('/hello')
expect(location.search).toEqual('?the=query')
expect(location.hash).toEqual('#hash')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper} />
<Route path="/hello" component={Hello} />
</Router>
), node, execNextStep)
})
it('transitions to the correct route for object', done => {
const LinkWrapper = () => (
<Link
to={{
pathname: '/hello',
query: { how: 'are' },
hash: '#world',
state: { you: 'doing?' }
}}
>
Link
</Link>
)
const history = createHistory('/')
const spy = spyOn(history, 'push').andCallThrough()
const steps = [
() => {
click(node.querySelector('a'), { button: 0 })
},
({ location }) => {
expect(node.innerHTML).toMatch(/Hello/)
expect(spy).toHaveBeenCalled()
expect(location.pathname).toEqual('/hello')
expect(location.search).toEqual('?how=are')
expect(location.hash).toEqual('#world')
expect(location.state).toEqual({ you: 'doing?' })
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper} />
<Route path="/hello" component={Hello} />
</Router>
), node, execNextStep)
})
it('does not transition when onClick prevents default', done => {
class LinkWrapper extends Component {
handleClick(event) {
event.preventDefault()
}
render() {
return <Link to="/hello" onClick={this.handleClick}>Link</Link>
}
}
const history = createHistory('/')
const spy = spyOn(history, 'push').andCallThrough()
const steps = [
() => {
click(node.querySelector('a'), { button: 0 })
},
() => {
expect(node.innerHTML).toMatch(/Link/)
expect(spy).toNotHaveBeenCalled()
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={history} onUpdate={execNextStep}>
<Route path="/" component={LinkWrapper} />
<Route path="/hello" component={Hello} />
</Router>
), node, execNextStep)
})
})
describe('with function to', () => {
const LinkWrapper = () => (
<Link
to={location => ({ ...location, hash: '#hash' })}
activeClassName="active"
>
Link
</Link>
)
it('should have the correct href and active state', () => {
render((
<Router history={createHistory('/hello')}>
<Route path="/hello" component={LinkWrapper} />
</Router>
), node, () => {
const a = node.querySelector('a')
expect(a.getAttribute('href')).toEqual('/hello#hash')
expect(a.className.trim()).toEqual('active')
})
})
it('should transition correctly on click', done => {
const steps = [
() => {
click(node.querySelector('a'), { button: 0 })
},
({ location }) => {
expect(location.pathname).toEqual('/hello')
expect(location.hash).toEqual('#hash')
}
]
const execNextStep = execSteps(steps, done)
render((
<Router history={createHistory('/hello')} onUpdate={execNextStep}>
<Route path="/hello" component={LinkWrapper} />
</Router>
), node, execSteps)
})
})
describe('when the "to" prop is unspecified', function () {
class App extends Component {
render() {
return (
<div>
<Link>Blank Link</Link>
<Link/>
<Link className="kitten-link">Kittens</Link>
</div>
)
}
}
it('returns an anchor tag without an href', function (done) {
render((
<Router history={createHistory('/')}>
<Route path="/" component={App} />
</Router>
), node, function () {
const link1 = node.querySelectorAll('a')[0]
const link2 = node.querySelectorAll('a')[1]
const link3 = node.querySelectorAll('a')[2]
expect(link1.href).toEqual('')
expect(link2.href).toEqual('')
expect(link3.href).toEqual('')
done()
})
})
it('passes down other props', function (done) {
render((
<Router history={createHistory('/')}>
<Route path="/" component={App} />
</Router>
), node, function () {
const link3 = node.querySelectorAll('a')[2]
expect(link3.className).toEqual('kitten-link')
done()
})
})
})
})