-
Notifications
You must be signed in to change notification settings - Fork 651
/
Copy pathCSSTransitionGroup-test.js
299 lines (242 loc) · 7.73 KB
/
CSSTransitionGroup-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
import hasClass from 'dom-helpers/hasClass';
import CSSTransition from '../src/CSSTransition';
let React;
let ReactDOM;
let TransitionGroup;
let act;
let render;
// Most of the real functionality is covered in other unit tests, this just
// makes sure we're wired up correctly.
describe('CSSTransitionGroup', () => {
let container;
let consoleErrorSpy;
function YoloTransition({ id, ...props }) {
const nodeRef = React.useRef();
return (
<CSSTransition nodeRef={nodeRef} classNames="yolo" timeout={0} {...props}>
<span ref={nodeRef} id={id} />
</CSSTransition>
);
}
beforeEach(() => {
jest.resetModuleRegistry();
jest.useFakeTimers();
React = require('react');
ReactDOM = require('react-dom');
const testUtils = require('./utils');
act = testUtils.act;
const baseRender = testUtils.render;
render = (element, container) =>
baseRender(<React.StrictMode>{element}</React.StrictMode>, { container });
TransitionGroup = require('../src/TransitionGroup');
container = document.createElement('div');
consoleErrorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
});
afterEach(() => {
consoleErrorSpy.mockRestore();
jest.useRealTimers();
});
it('should clean-up silently after the timeout elapses', () => {
render(
<TransitionGroup enter={false}>
<YoloTransition key="one" id="one" />
</TransitionGroup>,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
<TransitionGroup enter={false}>
<YoloTransition key="two" id="two" />
</TransitionGroup>,
container
);
expect(transitionGroupDiv.childNodes.length).toBe(2);
expect(transitionGroupDiv.childNodes[0].id).toBe('two');
expect(transitionGroupDiv.childNodes[1].id).toBe('one');
act(() => {
jest.runAllTimers();
});
// No warnings
expect(consoleErrorSpy).not.toHaveBeenCalled();
// The leaving child has been removed
expect(transitionGroupDiv.childNodes.length).toBe(1);
expect(transitionGroupDiv.childNodes[0].id).toBe('two');
});
it('should keep both sets of DOM nodes around', () => {
render(
<TransitionGroup>
<YoloTransition key="one" id="one" />
</TransitionGroup>,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
<TransitionGroup>
<YoloTransition key="two" id="two" />
</TransitionGroup>,
container
);
expect(transitionGroupDiv.childNodes.length).toBe(2);
expect(transitionGroupDiv.childNodes[0].id).toBe('two');
expect(transitionGroupDiv.childNodes[1].id).toBe('one');
});
it('should switch transitionLeave from false to true', () => {
render(
<TransitionGroup enter={false} leave={false}>
<YoloTransition key="one" id="one" />
</TransitionGroup>,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
<TransitionGroup enter={false} leave={false}>
<YoloTransition key="two" id="two" />
</TransitionGroup>,
container
);
act(() => {
jest.runAllTimers();
});
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
<TransitionGroup enter={false} leave>
<YoloTransition key="three" id="three" />
</TransitionGroup>,
container
);
expect(transitionGroupDiv.childNodes.length).toBe(2);
expect(transitionGroupDiv.childNodes[0].id).toBe('three');
expect(transitionGroupDiv.childNodes[1].id).toBe('two');
});
it('should work with a null child', () => {
render(<TransitionGroup>{[null]}</TransitionGroup>, container);
});
it('should work with a child which renders as null', () => {
const NullComponent = () => null;
// Testing the whole lifecycle of entering and exiting,
// because those lifecycle methods used to fail when the DOM node was null.
render(<TransitionGroup />, container);
render(
<TransitionGroup>
<CSSTransition classNames="yolo" timeout={0}>
<NullComponent />
</CSSTransition>
</TransitionGroup>,
container
);
render(<TransitionGroup />, container);
});
it('should transition from one to null', () => {
render(
<TransitionGroup>
<YoloTransition key="one" id="one" />
</TransitionGroup>,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(<TransitionGroup>{null}</TransitionGroup>, container);
// (Here, we expect the original child to stick around but test that no
// exception is thrown)
expect(transitionGroupDiv.childNodes.length).toBe(1);
expect(transitionGroupDiv.childNodes[0].id).toBe('one');
});
it('should transition from false to one', () => {
render(<TransitionGroup>{false}</TransitionGroup>, container);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(0);
render(
<TransitionGroup>
<YoloTransition key="one" id="one" />
</TransitionGroup>,
container
);
expect(transitionGroupDiv.childNodes.length).toBe(1);
expect(transitionGroupDiv.childNodes[0].id).toBe('one');
});
it('should clear transition timeouts when unmounted', () => {
class Component extends React.Component {
render() {
return <TransitionGroup>{this.props.children}</TransitionGroup>;
}
}
render(<Component />, container);
render(
<Component>
<YoloTransition key="yolo" id="yolo" />
</Component>,
container
);
ReactDOM.unmountComponentAtNode(container);
// Testing that no exception is thrown here, as the timeout has been cleared.
act(() => {
jest.runAllTimers();
});
});
it('should handle unmounted elements properly', () => {
class Child extends React.Component {
render() {
if (!this.props.show) return null;
return <div />;
}
}
class Component extends React.Component {
state = { showChild: true };
componentDidMount() {
this.setState({ showChild: false });
}
render() {
return (
<TransitionGroup appear={true}>
<Child show={this.state.showChild} />
</TransitionGroup>
);
}
}
render(<Component />, container);
// Testing that no exception is thrown here, as the timeout has been cleared.
act(() => {
jest.runAllTimers();
});
});
it('should work with custom component wrapper cloning children', () => {
const extraClassNameProp = 'wrapper-item';
class Wrapper extends React.Component {
render() {
return (
<div>
{React.Children.map(this.props.children, (child) =>
React.cloneElement(child, { className: extraClassNameProp })
)}
</div>
);
}
}
class Child extends React.Component {
render() {
return <div {...this.props} />;
}
}
class Component extends React.Component {
render() {
return (
<TransitionGroup component={Wrapper}>
<Child />
</TransitionGroup>
);
}
}
render(<Component />, container);
const transitionGroupDiv = container.childNodes[0];
transitionGroupDiv.childNodes.forEach((child) => {
expect(hasClass(child, extraClassNameProp)).toBe(true);
});
// Testing that no exception is thrown here, as the timeout has been cleared.
act(() => {
jest.runAllTimers();
});
});
});