mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
03e4ec2d0f
moar assert helpers this finishes all of react-dom except the server integration tests which are tricky to convert
254 lines
7.4 KiB
JavaScript
254 lines
7.4 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @emails react-core
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const ReactDOMClient = require('react-dom/client');
|
|
const act = require('internal-test-utils').act;
|
|
|
|
// Helpers
|
|
const testAllPermutations = async function (testCases) {
|
|
for (let i = 0; i < testCases.length; i += 2) {
|
|
const renderWithChildren = testCases[i];
|
|
const expectedResultAfterRender = testCases[i + 1];
|
|
|
|
for (let j = 0; j < testCases.length; j += 2) {
|
|
const updateWithChildren = testCases[j];
|
|
const expectedResultAfterUpdate = testCases[j + 1];
|
|
|
|
const container = document.createElement('div');
|
|
const root = ReactDOMClient.createRoot(container);
|
|
await act(() => root.render(<div>{renderWithChildren}</div>));
|
|
expectChildren(container, expectedResultAfterRender);
|
|
|
|
await act(() => root.render(<div>{updateWithChildren}</div>));
|
|
expectChildren(container, expectedResultAfterUpdate);
|
|
}
|
|
}
|
|
};
|
|
|
|
const expectChildren = function (container, children) {
|
|
const outerNode = container.firstChild;
|
|
let textNode;
|
|
if (typeof children === 'string') {
|
|
textNode = outerNode.firstChild;
|
|
|
|
if (children === '') {
|
|
expect(textNode != null).toBe(false);
|
|
} else {
|
|
expect(textNode != null).toBe(true);
|
|
expect(textNode.nodeType).toBe(3);
|
|
expect(textNode.data).toBe(String(children));
|
|
}
|
|
} else {
|
|
let mountIndex = 0;
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
const child = children[i];
|
|
|
|
if (typeof child === 'string') {
|
|
if (child === '') {
|
|
continue;
|
|
}
|
|
textNode = outerNode.childNodes[mountIndex];
|
|
expect(textNode != null).toBe(true);
|
|
expect(textNode.nodeType).toBe(3);
|
|
expect(textNode.data).toBe(child);
|
|
mountIndex++;
|
|
} else {
|
|
const elementDOMNode = outerNode.childNodes[mountIndex];
|
|
expect(elementDOMNode.tagName).toBe('DIV');
|
|
mountIndex++;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* ReactMultiChild DOM integration test. In ReactDOM components, we make sure
|
|
* that single children that are strings are treated as "content" which is much
|
|
* faster to render and update.
|
|
*/
|
|
describe('ReactMultiChildText', () => {
|
|
jest.setTimeout(30000);
|
|
|
|
it('should correctly handle all possible children for render and update', async () => {
|
|
spyOnDev(console, 'error').mockImplementation(() => {});
|
|
// prettier-ignore
|
|
await testAllPermutations([
|
|
// basic values
|
|
undefined, [],
|
|
null, [],
|
|
false, [],
|
|
true, [],
|
|
0, '0',
|
|
1.2, '1.2',
|
|
'', [],
|
|
'foo', 'foo',
|
|
|
|
[], [],
|
|
[undefined], [],
|
|
[null], [],
|
|
[false], [],
|
|
[true], [],
|
|
[0], ['0'],
|
|
[1.2], ['1.2'],
|
|
[''], [],
|
|
['foo'], ['foo'],
|
|
[<div />], [<div />],
|
|
|
|
// two adjacent values
|
|
[true, 0], ['0'],
|
|
[0, 0], ['0', '0'],
|
|
[1.2, 0], ['1.2', '0'],
|
|
[0, ''], ['0', ''],
|
|
['foo', 0], ['foo', '0'],
|
|
[0, <div />], ['0', <div />],
|
|
|
|
[true, 1.2], ['1.2'],
|
|
[1.2, 0], ['1.2', '0'],
|
|
[1.2, 1.2], ['1.2', '1.2'],
|
|
[1.2, ''], ['1.2', ''],
|
|
['foo', 1.2], ['foo', '1.2'],
|
|
[1.2, <div />], ['1.2', <div />],
|
|
|
|
[true, ''], [''],
|
|
['', 0], ['', '0'],
|
|
[1.2, ''], ['1.2', ''],
|
|
['', ''], ['', ''],
|
|
['foo', ''], ['foo', ''],
|
|
['', <div />], ['', <div />],
|
|
|
|
[true, 'foo'], ['foo'],
|
|
['foo', 0], ['foo', '0'],
|
|
[1.2, 'foo'], ['1.2', 'foo'],
|
|
['foo', ''], ['foo', ''],
|
|
['foo', 'foo'], ['foo', 'foo'],
|
|
['foo', <div />], ['foo', <div />],
|
|
|
|
// values separated by an element
|
|
[true, <div />, true], [<div />],
|
|
[1.2, <div />, 1.2], ['1.2', <div />, '1.2'],
|
|
['', <div />, ''], ['', <div />, ''],
|
|
['foo', <div />, 'foo'], ['foo', <div />, 'foo'],
|
|
|
|
[true, 1.2, <div />, '', 'foo'], ['1.2', <div />, '', 'foo'],
|
|
[1.2, '', <div />, 'foo', true], ['1.2', '', <div />, 'foo'],
|
|
['', 'foo', <div />, true, 1.2], ['', 'foo', <div />, '1.2'],
|
|
|
|
[true, 1.2, '', <div />, 'foo', true, 1.2], ['1.2', '', <div />, 'foo', '1.2'],
|
|
['', 'foo', true, <div />, 1.2, '', 'foo'], ['', 'foo', <div />, '1.2', '', 'foo'],
|
|
|
|
// values inside arrays
|
|
[[true], [true]], [],
|
|
[[1.2], [1.2]], ['1.2', '1.2'],
|
|
[[''], ['']], ['', ''],
|
|
[['foo'], ['foo']], ['foo', 'foo'],
|
|
[[<div />], [<div />]], [<div />, <div />],
|
|
|
|
[[true, 1.2, <div />], '', 'foo'], ['1.2', <div />, '', 'foo'],
|
|
[1.2, '', [<div />, 'foo', true]], ['1.2', '', <div />, 'foo'],
|
|
['', ['foo', <div />, true], 1.2], ['', 'foo', <div />, '1.2'],
|
|
|
|
[true, [1.2, '', <div />, 'foo'], true, 1.2], ['1.2', '', <div />, 'foo', '1.2'],
|
|
['', 'foo', [true, <div />, 1.2, ''], 'foo'], ['', 'foo', <div />, '1.2', '', 'foo'],
|
|
|
|
// values inside elements
|
|
[<div>{true}{1.2}{<div />}</div>, '', 'foo'], [<div />, '', 'foo'],
|
|
[1.2, '', <div>{<div />}{'foo'}{true}</div>], ['1.2', '', <div />],
|
|
['', <div>{'foo'}{<div />}{true}</div>, 1.2], ['', <div />, '1.2'],
|
|
|
|
[true, <div>{1.2}{''}{<div />}{'foo'}</div>, true, 1.2], [<div />, '1.2'],
|
|
['', 'foo', <div>{true}{<div />}{1.2}{''}</div>, 'foo'], ['', 'foo', <div />, 'foo'],
|
|
]);
|
|
if (__DEV__) {
|
|
expect(console.error).toHaveBeenCalledTimes(2);
|
|
expect(console.error.mock.calls[0][0]).toMatch(
|
|
'Each child in a list should have a unique "key" prop.',
|
|
);
|
|
expect(console.error.mock.calls[1][0]).toMatch(
|
|
'Each child in a list should have a unique "key" prop.',
|
|
);
|
|
}
|
|
});
|
|
|
|
it('should correctly handle bigint children for render and update', async () => {
|
|
// prettier-ignore
|
|
await testAllPermutations([
|
|
10n, '10',
|
|
[10n], ['10']
|
|
]);
|
|
});
|
|
|
|
it('should throw if rendering both HTML and children', async () => {
|
|
const container = document.createElement('div');
|
|
const root = ReactDOMClient.createRoot(container);
|
|
await expect(
|
|
act(() => {
|
|
root.render(
|
|
<div dangerouslySetInnerHTML={{__html: 'abcdef'}}>ghjkl</div>,
|
|
);
|
|
}),
|
|
).rejects.toThrow();
|
|
});
|
|
|
|
it('should render between nested components and inline children', async () => {
|
|
let container = document.createElement('div');
|
|
let root = ReactDOMClient.createRoot(container);
|
|
|
|
await act(() => {
|
|
root.render(
|
|
<div>
|
|
<h1>
|
|
<span />
|
|
<span />
|
|
</h1>
|
|
</div>,
|
|
);
|
|
});
|
|
|
|
container = document.createElement('div');
|
|
root = ReactDOMClient.createRoot(container);
|
|
await expect(
|
|
act(() => {
|
|
root.render(
|
|
<div>
|
|
<h1>A</h1>
|
|
</div>,
|
|
);
|
|
}),
|
|
).resolves.not.toThrow();
|
|
|
|
container = document.createElement('div');
|
|
root = ReactDOMClient.createRoot(container);
|
|
await expect(
|
|
act(() => {
|
|
root.render(
|
|
<div>
|
|
<h1>{['A']}</h1>
|
|
</div>,
|
|
);
|
|
}),
|
|
).resolves.not.toThrow();
|
|
|
|
container = document.createElement('div');
|
|
root = ReactDOMClient.createRoot(container);
|
|
await expect(
|
|
act(() => {
|
|
root.render(
|
|
<div>
|
|
<h1>{['A', 'B']}</h1>
|
|
</div>,
|
|
);
|
|
}),
|
|
).resolves.not.toThrow();
|
|
});
|
|
});
|