forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReactServerRendering-test.js
436 lines (384 loc) · 14 KB
/
ReactServerRendering-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
/**
* Copyright 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @emails react-core
*/
'use strict';
var ExecutionEnvironment;
var React;
var ReactDOM;
var ReactMarkupChecksum;
var ReactReconcileTransaction;
var ReactTestUtils;
var ReactServerRendering;
var ID_ATTRIBUTE_NAME;
var ROOT_ATTRIBUTE_NAME;
describe('ReactServerRendering', function() {
beforeEach(function() {
jest.resetModuleRegistry();
React = require('React');
ReactDOM = require('ReactDOM');
ReactMarkupChecksum = require('ReactMarkupChecksum');
ReactTestUtils = require('ReactTestUtils');
ReactReconcileTransaction = require('ReactReconcileTransaction');
ExecutionEnvironment = require('ExecutionEnvironment');
ExecutionEnvironment.canUseDOM = false;
ReactServerRendering = require('ReactServerRendering');
var DOMProperty = require('DOMProperty');
ID_ATTRIBUTE_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
ROOT_ATTRIBUTE_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
});
describe('renderToString', function() {
it('should generate simple markup', function() {
var response = ReactServerRendering.renderToString(
<span>hello world</span>
);
expect(response).toMatch(
'<span ' + ROOT_ATTRIBUTE_NAME + '="" ' +
ID_ATTRIBUTE_NAME + '="[^"]+" ' +
ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '="[^"]+">hello world</span>'
);
});
it('should generate simple markup for self-closing tags', function() {
var response = ReactServerRendering.renderToString(
<img />
);
expect(response).toMatch(
'<img ' + ROOT_ATTRIBUTE_NAME + '="" ' +
ID_ATTRIBUTE_NAME + '="[^"]+" ' +
ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '="[^"]+"/>'
);
});
it('should generate simple markup for attribute with `>` symbol', function() {
var response = ReactServerRendering.renderToString(
<img data-attr=">" />
);
expect(response).toMatch(
'<img data-attr=">" ' + ROOT_ATTRIBUTE_NAME + '="" ' +
ID_ATTRIBUTE_NAME + '="[^"]+" ' +
ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '="[^"]+"/>'
);
});
it('should generate comment markup for component returns null', function() {
var NullComponent = React.createClass({
render: function() {
return null;
},
});
var response = ReactServerRendering.renderToString(<NullComponent />);
expect(response).toBe('<!-- react-empty: 1 -->');
});
it('should not register event listeners', function() {
var EventPluginHub = require('EventPluginHub');
var cb = jest.fn();
ReactServerRendering.renderToString(
<span onClick={cb}>hello world</span>
);
expect(EventPluginHub.__getListenerBank()).toEqual({});
});
it('should render composite components', function() {
var Parent = React.createClass({
render: function() {
return <div><Child name="child" /></div>;
},
});
var Child = React.createClass({
render: function() {
return <span>My name is {this.props.name}</span>;
},
});
var response = ReactServerRendering.renderToString(
<Parent />
);
expect(response).toMatch(
'<div ' + ROOT_ATTRIBUTE_NAME + '="" ' +
ID_ATTRIBUTE_NAME + '="[^"]+" ' +
ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '="[^"]+">' +
'<span ' + ID_ATTRIBUTE_NAME + '="[^"]+">' +
'<!-- react-text: [0-9]+ -->My name is <!-- /react-text -->' +
'<!-- react-text: [0-9]+ -->child<!-- /react-text -->' +
'</span>' +
'</div>'
);
});
it('should only execute certain lifecycle methods', function() {
function runTest() {
var lifecycle = [];
var TestComponent = React.createClass({
componentWillMount: function() {
lifecycle.push('componentWillMount');
},
componentDidMount: function() {
lifecycle.push('componentDidMount');
},
getInitialState: function() {
lifecycle.push('getInitialState');
return {name: 'TestComponent'};
},
render: function() {
lifecycle.push('render');
return <span>Component name: {this.state.name}</span>;
},
componentWillUpdate: function() {
lifecycle.push('componentWillUpdate');
},
componentDidUpdate: function() {
lifecycle.push('componentDidUpdate');
},
shouldComponentUpdate: function() {
lifecycle.push('shouldComponentUpdate');
},
componentWillReceiveProps: function() {
lifecycle.push('componentWillReceiveProps');
},
componentWillUnmount: function() {
lifecycle.push('componentWillUnmount');
},
});
var response = ReactServerRendering.renderToString(
<TestComponent />
);
expect(response).toMatch(
'<span ' + ROOT_ATTRIBUTE_NAME + '="" ' +
ID_ATTRIBUTE_NAME + '="[^"]+" ' +
ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '="[^"]+">' +
'<!-- react-text: [0-9]+ -->Component name: <!-- /react-text -->' +
'<!-- react-text: [0-9]+ -->TestComponent<!-- /react-text -->' +
'</span>'
);
expect(lifecycle).toEqual(
['getInitialState', 'componentWillMount', 'render']
);
}
runTest();
// This should work the same regardless of whether you can use DOM or not.
ExecutionEnvironment.canUseDOM = true;
runTest();
});
it('should have the correct mounting behavior', function() {
// This test is testing client-side behavior.
ExecutionEnvironment.canUseDOM = true;
var mountCount = 0;
var numClicks = 0;
var TestComponent = React.createClass({
componentDidMount: function() {
mountCount++;
},
click: function() {
numClicks++;
},
render: function() {
return (
<span ref="span" onClick={this.click}>Name: {this.props.name}</span>
);
},
});
var element = document.createElement('div');
ReactDOM.render(<TestComponent />, element);
var lastMarkup = element.innerHTML;
// Exercise the update path. Markup should not change,
// but some lifecycle methods should be run again.
ReactDOM.render(<TestComponent name="x" />, element);
expect(mountCount).toEqual(1);
// Unmount and remount. We should get another mount event and
// we should get different markup, as the IDs are unique each time.
ReactDOM.unmountComponentAtNode(element);
expect(element.innerHTML).toEqual('');
ReactDOM.render(<TestComponent name="x" />, element);
expect(mountCount).toEqual(2);
expect(element.innerHTML).not.toEqual(lastMarkup);
// Now kill the node and render it on top of server-rendered markup, as if
// we used server rendering. We should mount again, but the markup should
// be unchanged. We will append a sentinel at the end of innerHTML to be
// sure that innerHTML was not changed.
ReactDOM.unmountComponentAtNode(element);
expect(element.innerHTML).toEqual('');
ExecutionEnvironment.canUseDOM = false;
lastMarkup = ReactServerRendering.renderToString(
<TestComponent name="x" />
);
ExecutionEnvironment.canUseDOM = true;
element.innerHTML = lastMarkup;
var instance = ReactDOM.render(<TestComponent name="x" />, element);
expect(mountCount).toEqual(3);
expect(element.innerHTML).toBe(lastMarkup);
// Ensure the events system works after mount into server markup
expect(numClicks).toEqual(0);
ReactTestUtils.Simulate.click(ReactDOM.findDOMNode(instance.refs.span));
expect(numClicks).toEqual(1);
ReactDOM.unmountComponentAtNode(element);
expect(element.innerHTML).toEqual('');
// Now simulate a situation where the app is not idempotent. React should
// warn but do the right thing.
element.innerHTML = lastMarkup;
spyOn(console, 'error');
instance = ReactDOM.render(<TestComponent name="y" />, element);
expect(mountCount).toEqual(4);
expect(console.error.calls.count()).toBe(1);
expect(element.innerHTML.length > 0).toBe(true);
expect(element.innerHTML).not.toEqual(lastMarkup);
// Ensure the events system works after markup mismatch.
expect(numClicks).toEqual(1);
ReactTestUtils.Simulate.click(ReactDOM.findDOMNode(instance.refs.span));
expect(numClicks).toEqual(2);
});
it('should throw with silly args', function() {
expect(
ReactServerRendering.renderToString.bind(
ReactServerRendering,
'not a component'
)
).toThrowError(
'renderToString(): You must pass a valid ReactElement.'
);
});
});
describe('renderToStaticMarkup', function() {
it('should not put checksum and React ID on components', function() {
var NestedComponent = React.createClass({
render: function() {
return <div>inner text</div>;
},
});
var TestComponent = React.createClass({
render: function() {
return <span><NestedComponent /></span>;
},
});
var response = ReactServerRendering.renderToStaticMarkup(
<TestComponent />
);
expect(response).toBe('<span><div>inner text</div></span>');
});
it('should not put checksum and React ID on text components', function() {
var TestComponent = React.createClass({
render: function() {
return <span>{'hello'} {'world'}</span>;
},
});
var response = ReactServerRendering.renderToStaticMarkup(
<TestComponent />
);
expect(response).toBe('<span>hello world</span>');
});
it('should not register event listeners', function() {
var EventPluginHub = require('EventPluginHub');
var cb = jest.fn();
ReactServerRendering.renderToString(
<span onClick={cb}>hello world</span>
);
expect(EventPluginHub.__getListenerBank()).toEqual({});
});
it('should only execute certain lifecycle methods', function() {
function runTest() {
var lifecycle = [];
var TestComponent = React.createClass({
componentWillMount: function() {
lifecycle.push('componentWillMount');
},
componentDidMount: function() {
lifecycle.push('componentDidMount');
},
getInitialState: function() {
lifecycle.push('getInitialState');
return {name: 'TestComponent'};
},
render: function() {
lifecycle.push('render');
return <span>Component name: {this.state.name}</span>;
},
componentWillUpdate: function() {
lifecycle.push('componentWillUpdate');
},
componentDidUpdate: function() {
lifecycle.push('componentDidUpdate');
},
shouldComponentUpdate: function() {
lifecycle.push('shouldComponentUpdate');
},
componentWillReceiveProps: function() {
lifecycle.push('componentWillReceiveProps');
},
componentWillUnmount: function() {
lifecycle.push('componentWillUnmount');
},
});
var response = ReactServerRendering.renderToStaticMarkup(
<TestComponent />
);
expect(response).toBe('<span>Component name: TestComponent</span>');
expect(lifecycle).toEqual(
['getInitialState', 'componentWillMount', 'render']
);
}
runTest();
// This should work the same regardless of whether you can use DOM or not.
ExecutionEnvironment.canUseDOM = true;
runTest();
});
it('should throw with silly args', function() {
expect(
ReactServerRendering.renderToStaticMarkup.bind(
ReactServerRendering,
'not a component'
)
).toThrowError(
'renderToStaticMarkup(): You must pass a valid ReactElement.'
);
});
it('allows setState in componentWillMount without using DOM', function() {
var Component = React.createClass({
componentWillMount: function() {
this.setState({text: 'hello, world'});
},
render: function() {
return <div>{this.state.text}</div>;
},
});
ReactReconcileTransaction.prototype.perform = function() {
// We shouldn't ever be calling this on the server
throw new Error('Browser reconcile transaction should not be used');
};
var markup = ReactServerRendering.renderToString(
<Component />
);
expect(markup.indexOf('hello, world') >= 0).toBe(true);
});
it('allows setState in component rendered after another using renderToString',
function() {
var StaticComponent = React.createClass({
render: function() {
const staticContent = ReactServerRendering.renderToStaticMarkup(
<div>
<img src="foo-bar.jpg" />
</div>
);
// const staticContent = '<h1>Hello</h1>'
return <div dangerouslySetInnerHTML={{__html: staticContent}} />;
},
});
var Component = React.createClass({
componentWillMount: function() {
this.setState({text: 'hello, world'});
},
render: function() {
return <div>{this.state.text}</div>;
},
});
expect(
ReactServerRendering.renderToString.bind(
ReactServerRendering,
<div>
<StaticComponent />
<Component />
</div>
)
).not.toThrow();
});
});
});