@@ -8,50 +8,45 @@ import {Route, Router} from 'react-router';
8
8
import LinkContainer from '../src/LinkContainer' ;
9
9
10
10
describe ( 'LinkContainer' , ( ) => {
11
- [ 'Button' ,
11
+ [
12
+ 'Button' ,
12
13
'NavItem' ,
13
14
'ListGroupItem'
14
15
] . forEach ( name => {
15
16
describe ( name , ( ) => {
16
17
const Component = ReactBootstrap [ name ] ;
17
18
18
19
it ( 'should make the correct href' , ( ) => {
19
- class LinkWrapper extends React . Component {
20
- render ( ) {
21
- return (
22
- < LinkContainer to = "/foo" query = { { bar : 'baz' } } >
23
- < Component > Foo</ Component >
24
- </ LinkContainer >
25
- ) ;
26
- }
27
- }
28
-
29
20
const router = ReactTestUtils . renderIntoDocument (
30
21
< Router history = { createMemoryHistory ( '/' ) } >
31
- < Route path = "/" component = { LinkWrapper } />
22
+ < Route
23
+ path = "/"
24
+ component = { ( ) => (
25
+ < LinkContainer to = "/foo" query = { { bar : 'baz' } } hash = "#the-hash" >
26
+ < Component > Foo</ Component >
27
+ </ LinkContainer >
28
+ ) }
29
+ />
32
30
</ Router >
33
31
) ;
34
32
35
33
const anchor = ReactTestUtils . findRenderedDOMComponentWithTag (
36
34
router , 'A'
37
35
) ;
38
- expect ( anchor . getAttribute ( 'href' ) ) . to . equal ( '/foo?bar=baz' ) ;
36
+ expect ( anchor . getAttribute ( 'href' ) ) . to . equal ( '/foo?bar=baz#the-hash ' ) ;
39
37
} ) ;
40
38
41
39
it ( 'should not add extra DOM nodes' , ( ) => {
42
- class LinkWrapper extends React . Component {
43
- render ( ) {
44
- return (
45
- < LinkContainer to = "/foo" query = { { bar : 'baz' } } >
46
- < Component > Foo</ Component >
47
- </ LinkContainer >
48
- ) ;
49
- }
50
- }
51
-
52
40
const router = ReactTestUtils . renderIntoDocument (
53
41
< Router history = { createMemoryHistory ( '/' ) } >
54
- < Route path = "/" component = { LinkWrapper } />
42
+ < Route
43
+ path = "/"
44
+ component = { ( ) => (
45
+ < LinkContainer to = "/foo" query = { { bar : 'baz' } } >
46
+ < Component > Foo</ Component >
47
+ </ LinkContainer >
48
+ ) }
49
+ />
55
50
</ Router >
56
51
) ;
57
52
@@ -68,35 +63,27 @@ describe('LinkContainer', () => {
68
63
69
64
describe ( 'when clicked' , ( ) => {
70
65
it ( 'should transition to the correct route' , ( ) => {
71
- class LinkWrapper extends React . Component {
72
- render ( ) {
73
- return (
74
- < LinkContainer to = "/target" >
75
- < Component > Target</ Component >
76
- </ LinkContainer >
77
- ) ;
78
- }
79
- }
80
-
81
- class Target extends React . Component {
82
- render ( ) {
83
- return < div className = "target" /> ;
84
- }
85
- }
86
-
87
66
const router = ReactTestUtils . renderIntoDocument (
88
67
< Router history = { createMemoryHistory ( '/' ) } >
89
- < Route path = "/" component = { LinkWrapper } />
90
- < Route path = "/target" component = { Target } />
68
+ < Route
69
+ path = "/"
70
+ component = { ( ) => (
71
+ < LinkContainer to = "/target" >
72
+ < Component > Target</ Component >
73
+ </ LinkContainer >
74
+ ) }
75
+ />
76
+ < Route
77
+ path = "/target"
78
+ component = { ( ) => < div className = "target" /> }
79
+ />
91
80
</ Router >
92
81
) ;
93
82
94
- const component = ReactTestUtils . findRenderedComponentWithType (
95
- router , Component
96
- ) ;
97
- ReactTestUtils . Simulate . click ( ReactDOM . findDOMNode ( component ) ,
98
- { button : 0 }
83
+ const anchor = ReactTestUtils . findRenderedDOMComponentWithTag (
84
+ router , 'A'
99
85
) ;
86
+ ReactTestUtils . Simulate . click ( anchor , { button : 0 } ) ;
100
87
101
88
const target = ReactTestUtils . findRenderedDOMComponentWithClass (
102
89
router , 'target'
@@ -108,26 +95,27 @@ describe('LinkContainer', () => {
108
95
const onClick = sinon . spy ( ) ;
109
96
const childOnClick = sinon . spy ( ) ;
110
97
111
- class LinkWrapper extends React . Component {
112
- render ( ) {
113
- return (
114
- < LinkContainer to = "/foo" onClick = { onClick } >
115
- < Component onClick = { childOnClick } > Foo</ Component >
116
- </ LinkContainer >
117
- ) ;
118
- }
119
- }
120
-
121
98
const router = ReactTestUtils . renderIntoDocument (
122
99
< Router history = { createMemoryHistory ( '/' ) } >
123
- < Route path = "/" component = { LinkWrapper } />
100
+ < Route
101
+ path = "/"
102
+ component = { ( ) => (
103
+ < LinkContainer to = "/target" onClick = { onClick } >
104
+ < Component onClick = { childOnClick } > Foo</ Component >
105
+ </ LinkContainer >
106
+ ) }
107
+ />
108
+ < Route
109
+ path = "/target"
110
+ component = { ( ) => < div className = "target" /> }
111
+ />
124
112
</ Router >
125
113
) ;
126
114
127
- const component = ReactTestUtils . findRenderedComponentWithType (
128
- router , Component
115
+ const anchor = ReactTestUtils . findRenderedDOMComponentWithTag (
116
+ router , 'A'
129
117
) ;
130
- ReactTestUtils . Simulate . click ( ReactDOM . findDOMNode ( component ) ) ;
118
+ ReactTestUtils . Simulate . click ( anchor , { button : 0 } ) ;
131
119
132
120
expect ( onClick ) . to . have . been . calledOnce ;
133
121
expect ( childOnClick ) . to . have . been . calledOnce ;
@@ -136,21 +124,18 @@ describe('LinkContainer', () => {
136
124
137
125
describe ( 'active state' , ( ) => {
138
126
function renderComponent ( location ) {
139
- class LinkWrapper extends React . Component {
140
- render ( ) {
141
- return (
142
- < LinkContainer to = "/foo" >
143
- < Component > Foo</ Component >
144
- </ LinkContainer >
145
- ) ;
146
- }
147
- }
148
-
149
127
const router = ReactTestUtils . renderIntoDocument (
150
128
< Router history = { createMemoryHistory ( location ) } >
151
- < Route component = { LinkWrapper } >
152
- < Route path = "/foo" />
153
- < Route path = "/bar" />
129
+ < Route
130
+ path = "/"
131
+ component = { ( ) => (
132
+ < LinkContainer to = "/foo" >
133
+ < Component > Foo</ Component >
134
+ </ LinkContainer >
135
+ ) }
136
+ >
137
+ < Route path = "foo" />
138
+ < Route path = "bar" />
154
139
</ Route >
155
140
</ Router >
156
141
) ;
@@ -174,26 +159,20 @@ describe('LinkContainer', () => {
174
159
let router ;
175
160
176
161
beforeEach ( ( ) => {
177
- class LinkWrapper extends React . Component {
178
- render ( ) {
179
- return (
180
- < LinkContainer to = "/target" disabled >
181
- < Component > Target</ Component >
182
- </ LinkContainer >
183
- ) ;
184
- }
185
- }
186
-
187
- class Target extends React . Component {
188
- render ( ) {
189
- return < div className = "target" /> ;
190
- }
191
- }
192
-
193
162
router = ReactTestUtils . renderIntoDocument (
194
163
< Router history = { createMemoryHistory ( '/' ) } >
195
- < Route path = "/" component = { LinkWrapper } />
196
- < Route path = "/target" component = { Target } />
164
+ < Route
165
+ path = "/"
166
+ component = { ( ) => (
167
+ < LinkContainer to = "/target" disabled >
168
+ < Component > Target</ Component >
169
+ </ LinkContainer >
170
+ ) }
171
+ />
172
+ < Route
173
+ path = "/target"
174
+ component = { ( ) => < div className = "target" /> }
175
+ />
197
176
</ Router >
198
177
) ;
199
178
} ) ;
0 commit comments