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 (
);
}
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({element}, { 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(
,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
,
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(
,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
,
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(
,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
,
container
);
act(() => {
jest.runAllTimers();
});
expect(transitionGroupDiv.childNodes.length).toBe(1);
render(
,
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({[null]}, 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(, container);
render(
,
container
);
render(, container);
});
it('should transition from one to null', () => {
render(
,
container
);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(1);
render({null}, 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({false}, container);
const transitionGroupDiv = container.childNodes[0];
expect(transitionGroupDiv.childNodes.length).toBe(0);
render(
,
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 {this.props.children};
}
}
render(, container);
render(
,
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
;
}
}
class Component extends React.Component {
state = { showChild: true };
componentDidMount() {
this.setState({ showChild: false });
}
render() {
return (
);
}
}
render(, 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 (
{React.Children.map(this.props.children, (child) =>
React.cloneElement(child, { className: extraClassNameProp })
)}
);
}
}
class Child extends React.Component {
render() {
return ;
}
}
class Component extends React.Component {
render() {
return (
);
}
}
render(, 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();
});
});
});