mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
899 lines
27 KiB
JavaScript
899 lines
27 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
describe('Store', () => {
|
|
let React;
|
|
let ReactDOM;
|
|
let agent;
|
|
let act;
|
|
let getRendererID;
|
|
let store;
|
|
|
|
beforeEach(() => {
|
|
agent = global.agent;
|
|
store = global.store;
|
|
|
|
React = require('react');
|
|
ReactDOM = require('react-dom');
|
|
|
|
const utils = require('./utils');
|
|
act = utils.act;
|
|
getRendererID = utils.getRendererID;
|
|
});
|
|
|
|
it('should not allow a root node to be collapsed', () => {
|
|
const Component = () => <div>Hi</div>;
|
|
|
|
act(() =>
|
|
ReactDOM.render(<Component count={4} />, document.createElement('div')),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
expect(store.roots).toHaveLength(1);
|
|
|
|
const rootID = store.roots[0];
|
|
|
|
expect(() => store.toggleIsCollapsed(rootID, true)).toThrow(
|
|
'Root nodes cannot be collapsed',
|
|
);
|
|
});
|
|
|
|
it('should properly handle a root with no visible nodes', () => {
|
|
const Root = ({children}) => children;
|
|
|
|
const container = document.createElement('div');
|
|
|
|
act(() => ReactDOM.render(<Root>{null}</Root>, container));
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => ReactDOM.render(<div />, container));
|
|
expect(store).toMatchSnapshot('2: add host nodes');
|
|
});
|
|
|
|
describe('collapseNodesByDefault:false', () => {
|
|
beforeEach(() => {
|
|
store.collapseNodesByDefault = false;
|
|
});
|
|
|
|
it('should support mount and update operations', () => {
|
|
const Grandparent = ({count}) => (
|
|
<React.Fragment>
|
|
<Parent count={count} />
|
|
<Parent count={count} />
|
|
</React.Fragment>
|
|
);
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
const container = document.createElement('div');
|
|
|
|
act(() => ReactDOM.render(<Grandparent count={4} />, container));
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => ReactDOM.render(<Grandparent count={2} />, container));
|
|
expect(store).toMatchSnapshot('2: update');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(container));
|
|
expect(store).toMatchSnapshot('3: unmount');
|
|
});
|
|
|
|
it('should support mount and update operations for multiple roots', () => {
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
const containerA = document.createElement('div');
|
|
const containerB = document.createElement('div');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Parent key="A" count={3} />, containerA);
|
|
ReactDOM.render(<Parent key="B" count={2} />, containerB);
|
|
});
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Parent key="A" count={4} />, containerA);
|
|
ReactDOM.render(<Parent key="B" count={1} />, containerB);
|
|
});
|
|
expect(store).toMatchSnapshot('2: update');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(containerB));
|
|
expect(store).toMatchSnapshot('3: unmount B');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(containerA));
|
|
expect(store).toMatchSnapshot('4: unmount A');
|
|
});
|
|
|
|
it('should filter DOM nodes from the store tree', () => {
|
|
const Grandparent = () => (
|
|
<div>
|
|
<div>
|
|
<Parent />
|
|
</div>
|
|
<Parent />
|
|
</div>
|
|
);
|
|
const Parent = () => (
|
|
<div>
|
|
<Child />
|
|
</div>
|
|
);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Grandparent count={4} />,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
});
|
|
|
|
it('should display Suspense nodes properly in various states', () => {
|
|
const Loading = () => <div>Loading...</div>;
|
|
const SuspendingComponent = () => {
|
|
throw new Promise(() => {});
|
|
};
|
|
const Component = () => {
|
|
return <div>Hello</div>;
|
|
};
|
|
const Wrapper = ({shouldSuspense}) => (
|
|
<React.Fragment>
|
|
<Component key="Outside" />
|
|
<React.Suspense fallback={<Loading />}>
|
|
{shouldSuspense ? (
|
|
<SuspendingComponent />
|
|
) : (
|
|
<Component key="Inside" />
|
|
)}
|
|
</React.Suspense>
|
|
</React.Fragment>
|
|
);
|
|
|
|
const container = document.createElement('div');
|
|
act(() => ReactDOM.render(<Wrapper shouldSuspense={true} />, container));
|
|
expect(store).toMatchSnapshot('1: loading');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Wrapper shouldSuspense={false} />, container);
|
|
});
|
|
expect(store).toMatchSnapshot('2: resolved');
|
|
});
|
|
|
|
it('should support nested Suspense nodes', () => {
|
|
const Component = () => null;
|
|
const Loading = () => <div>Loading...</div>;
|
|
const Never = () => {
|
|
throw new Promise(() => {});
|
|
};
|
|
|
|
const Wrapper = ({
|
|
suspendFirst = false,
|
|
suspendSecond = false,
|
|
suspendParent = false,
|
|
}) => (
|
|
<React.Fragment>
|
|
<Component key="Outside" />
|
|
<React.Suspense fallback={<Loading key="Parent Fallback" />}>
|
|
<Component key="Unrelated at Start" />
|
|
<React.Suspense fallback={<Loading key="Suspense 1 Fallback" />}>
|
|
{suspendFirst ? (
|
|
<Never />
|
|
) : (
|
|
<Component key="Suspense 1 Content" />
|
|
)}
|
|
</React.Suspense>
|
|
<React.Suspense fallback={<Loading key="Suspense 2 Fallback" />}>
|
|
{suspendSecond ? (
|
|
<Never />
|
|
) : (
|
|
<Component key="Suspense 2 Content" />
|
|
)}
|
|
</React.Suspense>
|
|
<React.Suspense fallback={<Loading key="Suspense 3 Fallback" />}>
|
|
<Never />
|
|
</React.Suspense>
|
|
{suspendParent && <Never />}
|
|
<Component key="Unrelated at End" />
|
|
</React.Suspense>
|
|
</React.Fragment>
|
|
);
|
|
|
|
const container = document.createElement('div');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={false}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: third child is suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={true}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('2: first and third child are suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={false}
|
|
suspendSecond={true}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('3: second and third child are suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={true}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('4: first and third child are suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={true}
|
|
suspendFirst={true}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('5: parent is suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={true}
|
|
suspendSecond={true}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('6: all children are suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={false}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('7: only third child is suspended');
|
|
|
|
const rendererID = getRendererID();
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: store.getElementIDAtIndex(4),
|
|
rendererID,
|
|
forceFallback: true,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('8: first and third child are suspended');
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: store.getElementIDAtIndex(2),
|
|
rendererID,
|
|
forceFallback: true,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('9: parent is suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={true}
|
|
suspendSecond={true}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('10: parent is suspended');
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: store.getElementIDAtIndex(2),
|
|
rendererID,
|
|
forceFallback: false,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('11: all children are suspended');
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: store.getElementIDAtIndex(4),
|
|
rendererID,
|
|
forceFallback: false,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('12: all children are suspended');
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper
|
|
suspendParent={false}
|
|
suspendFirst={false}
|
|
suspendSecond={false}
|
|
/>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('13: third child is suspended');
|
|
});
|
|
|
|
it('should display a partially rendered SuspenseList', () => {
|
|
const Loading = () => <div>Loading...</div>;
|
|
const SuspendingComponent = () => {
|
|
throw new Promise(() => {});
|
|
};
|
|
const Component = () => {
|
|
return <div>Hello</div>;
|
|
};
|
|
const Wrapper = ({shouldSuspense}) => (
|
|
<React.Fragment>
|
|
<React.SuspenseList revealOrder="forwards" tail="collapsed">
|
|
<Component key="A" />
|
|
<React.Suspense fallback={<Loading />}>
|
|
{shouldSuspense ? <SuspendingComponent /> : <Component key="B" />}
|
|
</React.Suspense>
|
|
<Component key="C" />
|
|
</React.SuspenseList>
|
|
</React.Fragment>
|
|
);
|
|
|
|
const container = document.createElement('div');
|
|
const root = ReactDOM.createRoot(container);
|
|
act(() => {
|
|
root.render(<Wrapper shouldSuspense={true} />);
|
|
});
|
|
expect(store).toMatchSnapshot('1: loading');
|
|
|
|
act(() => {
|
|
root.render(<Wrapper shouldSuspense={false} />);
|
|
});
|
|
expect(store).toMatchSnapshot('2: resolved');
|
|
});
|
|
|
|
it('should support collapsing parts of the tree', () => {
|
|
const Grandparent = ({count}) => (
|
|
<React.Fragment>
|
|
<Parent count={count} />
|
|
<Parent count={count} />
|
|
</React.Fragment>
|
|
);
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Grandparent count={2} />,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
const grandparentID = store.getElementIDAtIndex(0);
|
|
const parentOneID = store.getElementIDAtIndex(1);
|
|
const parentTwoID = store.getElementIDAtIndex(4);
|
|
|
|
act(() => store.toggleIsCollapsed(parentOneID, true));
|
|
expect(store).toMatchSnapshot('2: collapse first Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(parentTwoID, true));
|
|
expect(store).toMatchSnapshot('3: collapse second Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(parentOneID, false));
|
|
expect(store).toMatchSnapshot('4: expand first Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(grandparentID, true));
|
|
expect(store).toMatchSnapshot('5: collapse Grandparent');
|
|
|
|
act(() => store.toggleIsCollapsed(grandparentID, false));
|
|
expect(store).toMatchSnapshot('6: expand Grandparent');
|
|
});
|
|
|
|
it('should support reordering of children', () => {
|
|
const Root = ({children}) => children;
|
|
const Component = () => null;
|
|
|
|
const Foo = () => [<Component key="0" />];
|
|
const Bar = () => [<Component key="0" />, <Component key="1" />];
|
|
const foo = <Foo key="foo" />;
|
|
const bar = <Bar key="bar" />;
|
|
|
|
const container = document.createElement('div');
|
|
|
|
act(() => ReactDOM.render(<Root>{[foo, bar]}</Root>, container));
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => ReactDOM.render(<Root>{[bar, foo]}</Root>, container));
|
|
expect(store).toMatchSnapshot('3: reorder children');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), true));
|
|
expect(store).toMatchSnapshot('4: collapse root');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), false));
|
|
expect(store).toMatchSnapshot('5: expand root');
|
|
});
|
|
});
|
|
|
|
describe('collapseNodesByDefault:true', () => {
|
|
beforeEach(() => {
|
|
store.collapseNodesByDefault = true;
|
|
});
|
|
|
|
it('should support mount and update operations', () => {
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
const container = document.createElement('div');
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<React.Fragment>
|
|
<Parent count={1} />
|
|
<Parent count={3} />
|
|
</React.Fragment>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<React.Fragment>
|
|
<Parent count={2} />
|
|
<Parent count={1} />
|
|
</React.Fragment>,
|
|
container,
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('2: update');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(container));
|
|
expect(store).toMatchSnapshot('3: unmount');
|
|
});
|
|
|
|
it('should support mount and update operations for multiple roots', () => {
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
const containerA = document.createElement('div');
|
|
const containerB = document.createElement('div');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Parent key="A" count={3} />, containerA);
|
|
ReactDOM.render(<Parent key="B" count={2} />, containerB);
|
|
});
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Parent key="A" count={4} />, containerA);
|
|
ReactDOM.render(<Parent key="B" count={1} />, containerB);
|
|
});
|
|
expect(store).toMatchSnapshot('2: update');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(containerB));
|
|
expect(store).toMatchSnapshot('3: unmount B');
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(containerA));
|
|
expect(store).toMatchSnapshot('4: unmount A');
|
|
});
|
|
|
|
it('should filter DOM nodes from the store tree', () => {
|
|
const Grandparent = () => (
|
|
<div>
|
|
<div>
|
|
<Parent />
|
|
</div>
|
|
<Parent />
|
|
</div>
|
|
);
|
|
const Parent = () => (
|
|
<div>
|
|
<Child />
|
|
</div>
|
|
);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Grandparent count={4} />,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), false));
|
|
expect(store).toMatchSnapshot('2: expand Grandparent');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(1), false));
|
|
expect(store).toMatchSnapshot('3: expand Parent');
|
|
});
|
|
|
|
it('should display Suspense nodes properly in various states', () => {
|
|
const Loading = () => <div>Loading...</div>;
|
|
const SuspendingComponent = () => {
|
|
throw new Promise(() => {});
|
|
};
|
|
const Component = () => {
|
|
return <div>Hello</div>;
|
|
};
|
|
const Wrapper = ({shouldSuspense}) => (
|
|
<React.Fragment>
|
|
<Component key="Outside" />
|
|
<React.Suspense fallback={<Loading />}>
|
|
{shouldSuspense ? (
|
|
<SuspendingComponent />
|
|
) : (
|
|
<Component key="Inside" />
|
|
)}
|
|
</React.Suspense>
|
|
</React.Fragment>
|
|
);
|
|
|
|
const container = document.createElement('div');
|
|
act(() => ReactDOM.render(<Wrapper shouldSuspense={true} />, container));
|
|
expect(store).toMatchSnapshot('1: loading');
|
|
|
|
// This test isn't meaningful unless we expand the suspended tree
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), false));
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(2), false));
|
|
expect(store).toMatchSnapshot('2: expand Wrapper and Suspense');
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Wrapper shouldSuspense={false} />, container);
|
|
});
|
|
expect(store).toMatchSnapshot('2: resolved');
|
|
});
|
|
|
|
it('should support expanding parts of the tree', () => {
|
|
const Grandparent = ({count}) => (
|
|
<React.Fragment>
|
|
<Parent count={count} />
|
|
<Parent count={count} />
|
|
</React.Fragment>
|
|
);
|
|
const Parent = ({count}) =>
|
|
new Array(count).fill(true).map((_, index) => <Child key={index} />);
|
|
const Child = () => <div>Hi!</div>;
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Grandparent count={2} />,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
const grandparentID = store.getElementIDAtIndex(0);
|
|
|
|
act(() => store.toggleIsCollapsed(grandparentID, false));
|
|
expect(store).toMatchSnapshot('2: expand Grandparent');
|
|
|
|
const parentOneID = store.getElementIDAtIndex(1);
|
|
const parentTwoID = store.getElementIDAtIndex(2);
|
|
|
|
act(() => store.toggleIsCollapsed(parentOneID, false));
|
|
expect(store).toMatchSnapshot('3: expand first Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(parentTwoID, false));
|
|
expect(store).toMatchSnapshot('4: expand second Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(parentOneID, true));
|
|
expect(store).toMatchSnapshot('5: collapse first Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(parentTwoID, true));
|
|
expect(store).toMatchSnapshot('6: collapse second Parent');
|
|
|
|
act(() => store.toggleIsCollapsed(grandparentID, true));
|
|
expect(store).toMatchSnapshot('7: collapse Grandparent');
|
|
});
|
|
|
|
it('should support expanding deep parts of the tree', () => {
|
|
const Wrapper = ({forwardedRef}) => (
|
|
<Nested depth={3} forwardedRef={forwardedRef} />
|
|
);
|
|
const Nested = ({depth, forwardedRef}) =>
|
|
depth > 0 ? (
|
|
<Nested depth={depth - 1} forwardedRef={forwardedRef} />
|
|
) : (
|
|
<div ref={forwardedRef} />
|
|
);
|
|
|
|
const ref = React.createRef();
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<Wrapper forwardedRef={ref} />,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
const deepestedNodeID = agent.getIDForNode(ref.current);
|
|
|
|
act(() => store.toggleIsCollapsed(deepestedNodeID, false));
|
|
expect(store).toMatchSnapshot('2: expand deepest node');
|
|
|
|
const rootID = store.getElementIDAtIndex(0);
|
|
|
|
act(() => store.toggleIsCollapsed(rootID, true));
|
|
expect(store).toMatchSnapshot('3: collapse root');
|
|
|
|
act(() => store.toggleIsCollapsed(rootID, false));
|
|
expect(store).toMatchSnapshot('4: expand root');
|
|
|
|
const id = store.getElementIDAtIndex(1);
|
|
|
|
act(() => store.toggleIsCollapsed(id, true));
|
|
expect(store).toMatchSnapshot('5: collapse middle node');
|
|
|
|
act(() => store.toggleIsCollapsed(id, false));
|
|
expect(store).toMatchSnapshot('6: expand middle node');
|
|
});
|
|
|
|
it('should support reordering of children', () => {
|
|
const Root = ({children}) => children;
|
|
const Component = () => null;
|
|
|
|
const Foo = () => [<Component key="0" />];
|
|
const Bar = () => [<Component key="0" />, <Component key="1" />];
|
|
const foo = <Foo key="foo" />;
|
|
const bar = <Bar key="bar" />;
|
|
|
|
const container = document.createElement('div');
|
|
|
|
act(() => ReactDOM.render(<Root>{[foo, bar]}</Root>, container));
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => ReactDOM.render(<Root>{[bar, foo]}</Root>, container));
|
|
expect(store).toMatchSnapshot('3: reorder children');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), false));
|
|
expect(store).toMatchSnapshot('4: expand root');
|
|
|
|
act(() => {
|
|
store.toggleIsCollapsed(store.getElementIDAtIndex(2), false);
|
|
store.toggleIsCollapsed(store.getElementIDAtIndex(1), false);
|
|
});
|
|
expect(store).toMatchSnapshot('5: expand leaves');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), true));
|
|
expect(store).toMatchSnapshot('6: collapse root');
|
|
});
|
|
|
|
it('should not add new nodes when suspense is toggled', () => {
|
|
const SuspenseTree = () => {
|
|
return (
|
|
<React.Suspense fallback={<Fallback>Loading outer</Fallback>}>
|
|
<Parent />
|
|
</React.Suspense>
|
|
);
|
|
};
|
|
|
|
const Fallback = () => null;
|
|
const Parent = () => <Child />;
|
|
const Child = () => null;
|
|
|
|
act(() =>
|
|
ReactDOM.render(<SuspenseTree />, document.createElement('div')),
|
|
);
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(0), false));
|
|
act(() => store.toggleIsCollapsed(store.getElementIDAtIndex(1), false));
|
|
expect(store).toMatchSnapshot('2: expand tree');
|
|
|
|
const rendererID = getRendererID();
|
|
const suspenseID = store.getElementIDAtIndex(1);
|
|
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: suspenseID,
|
|
rendererID,
|
|
forceFallback: true,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('3: toggle fallback on');
|
|
|
|
act(() =>
|
|
agent.overrideSuspense({
|
|
id: suspenseID,
|
|
rendererID,
|
|
forceFallback: false,
|
|
}),
|
|
);
|
|
expect(store).toMatchSnapshot('4: toggle fallback on');
|
|
});
|
|
});
|
|
|
|
describe('getIndexOfElementID', () => {
|
|
beforeEach(() => {
|
|
store.collapseNodesByDefault = false;
|
|
});
|
|
|
|
it('should support a single root with a single child', () => {
|
|
const Grandparent = () => (
|
|
<React.Fragment>
|
|
<Parent />
|
|
<Parent />
|
|
</React.Fragment>
|
|
);
|
|
const Parent = () => <Child />;
|
|
const Child = () => null;
|
|
|
|
act(() =>
|
|
ReactDOM.render(<Grandparent />, document.createElement('div')),
|
|
);
|
|
|
|
for (let i = 0; i < store.numElements; i++) {
|
|
expect(store.getIndexOfElementID(store.getElementIDAtIndex(i))).toBe(i);
|
|
}
|
|
});
|
|
|
|
it('should support multiple roots with one children each', () => {
|
|
const Grandparent = () => <Parent />;
|
|
const Parent = () => <Child />;
|
|
const Child = () => null;
|
|
|
|
act(() => {
|
|
ReactDOM.render(<Grandparent />, document.createElement('div'));
|
|
ReactDOM.render(<Grandparent />, document.createElement('div'));
|
|
});
|
|
|
|
for (let i = 0; i < store.numElements; i++) {
|
|
expect(store.getIndexOfElementID(store.getElementIDAtIndex(i))).toBe(i);
|
|
}
|
|
});
|
|
|
|
it('should support a single root with multiple top level children', () => {
|
|
const Grandparent = () => <Parent />;
|
|
const Parent = () => <Child />;
|
|
const Child = () => null;
|
|
|
|
act(() =>
|
|
ReactDOM.render(
|
|
<React.Fragment>
|
|
<Grandparent />
|
|
<Grandparent />
|
|
</React.Fragment>,
|
|
document.createElement('div'),
|
|
),
|
|
);
|
|
|
|
for (let i = 0; i < store.numElements; i++) {
|
|
expect(store.getIndexOfElementID(store.getElementIDAtIndex(i))).toBe(i);
|
|
}
|
|
});
|
|
|
|
it('should support multiple roots with multiple top level children', () => {
|
|
const Grandparent = () => <Parent />;
|
|
const Parent = () => <Child />;
|
|
const Child = () => null;
|
|
|
|
act(() => {
|
|
ReactDOM.render(
|
|
<React.Fragment>
|
|
<Grandparent />
|
|
<Grandparent />
|
|
</React.Fragment>,
|
|
document.createElement('div'),
|
|
);
|
|
ReactDOM.render(
|
|
<React.Fragment>
|
|
<Grandparent />
|
|
<Grandparent />
|
|
</React.Fragment>,
|
|
document.createElement('div'),
|
|
);
|
|
});
|
|
|
|
for (let i = 0; i < store.numElements; i++) {
|
|
expect(store.getIndexOfElementID(store.getElementIDAtIndex(i))).toBe(i);
|
|
}
|
|
});
|
|
});
|
|
|
|
it('detects and updates profiling support based on the attached roots', () => {
|
|
const Component = () => null;
|
|
|
|
const containerA = document.createElement('div');
|
|
const containerB = document.createElement('div');
|
|
|
|
expect(store.supportsProfiling).toBe(false);
|
|
|
|
act(() => ReactDOM.render(<Component />, containerA));
|
|
expect(store.supportsProfiling).toBe(true);
|
|
|
|
act(() => ReactDOM.render(<Component />, containerB));
|
|
act(() => ReactDOM.unmountComponentAtNode(containerA));
|
|
expect(store.supportsProfiling).toBe(true);
|
|
|
|
act(() => ReactDOM.unmountComponentAtNode(containerB));
|
|
expect(store.supportsProfiling).toBe(false);
|
|
});
|
|
|
|
it('should properly serialize non-string key values', () => {
|
|
const Child = () => null;
|
|
|
|
// Bypass React element's automatic stringifying of keys intentionally.
|
|
// This is pretty hacky.
|
|
const fauxElement = Object.assign({}, <Child />, {key: 123});
|
|
|
|
act(() => ReactDOM.render([fauxElement], document.createElement('div')));
|
|
expect(store).toMatchSnapshot('1: mount');
|
|
});
|
|
|
|
it('should show the right display names for special component types', async done => {
|
|
async function fakeImport(result) {
|
|
return {default: result};
|
|
}
|
|
|
|
const MyComponent = (props, ref) => null;
|
|
const FowardRefComponent = React.forwardRef(MyComponent);
|
|
const FowardRefComponentWithAnonymousFunction = React.forwardRef(() => (
|
|
<MyComponent />
|
|
));
|
|
const FowardRefComponentWithCustomDisplayName = React.forwardRef(
|
|
MyComponent,
|
|
);
|
|
FowardRefComponentWithCustomDisplayName.displayName = 'Custom';
|
|
const MemoComponent = React.memo(MyComponent);
|
|
const MemoForwardRefComponent = React.memo(FowardRefComponent);
|
|
const LazyComponent = React.lazy(() => fakeImport(MyComponent));
|
|
|
|
const App = () => (
|
|
<React.Fragment>
|
|
<MyComponent />
|
|
<FowardRefComponent />
|
|
<FowardRefComponentWithAnonymousFunction />
|
|
<FowardRefComponentWithCustomDisplayName />
|
|
<MemoComponent />
|
|
<MemoForwardRefComponent />
|
|
<React.Suspense fallback="Loading...">
|
|
<LazyComponent />
|
|
</React.Suspense>
|
|
</React.Fragment>
|
|
);
|
|
|
|
const container = document.createElement('div');
|
|
|
|
// Render once to start fetching the lazy component
|
|
act(() => ReactDOM.render(<App />, container));
|
|
|
|
await Promise.resolve();
|
|
|
|
// Render again after it resolves
|
|
act(() => ReactDOM.render(<App />, container));
|
|
|
|
expect(store).toMatchSnapshot();
|
|
|
|
done();
|
|
});
|
|
});
|