You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
4.1 KiB
139 lines
4.1 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Carousel from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Carousel', () => {
|
|
mountTest(Carousel);
|
|
rtlTest(Carousel);
|
|
|
|
beforeEach(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
it('should has innerSlider', () => {
|
|
const wrapper = mount(
|
|
<Carousel>
|
|
<div />
|
|
</Carousel>,
|
|
);
|
|
const { innerSlider } = wrapper.instance();
|
|
const innerSliderFromRefs = wrapper.instance().slick.innerSlider;
|
|
expect(innerSlider).toBe(innerSliderFromRefs);
|
|
expect(typeof innerSlider.slickNext).toBe('function');
|
|
});
|
|
|
|
it('should has prev, next and go function', () => {
|
|
const wrapper = mount(
|
|
<Carousel>
|
|
<div>1</div>
|
|
<div>2</div>
|
|
<div>3</div>
|
|
</Carousel>,
|
|
);
|
|
const { prev, next, goTo } = wrapper.instance();
|
|
expect(typeof prev).toBe('function');
|
|
expect(typeof next).toBe('function');
|
|
expect(typeof goTo).toBe('function');
|
|
expect(wrapper.instance().slick.innerSlider.state.currentSlide).toBe(0);
|
|
wrapper.instance().goTo(2);
|
|
jest.runAllTimers();
|
|
expect(wrapper.instance().slick.innerSlider.state.currentSlide).toBe(2);
|
|
wrapper.instance().prev();
|
|
jest.runAllTimers();
|
|
expect(wrapper.instance().slick.innerSlider.state.currentSlide).toBe(1);
|
|
wrapper.instance().next();
|
|
jest.runAllTimers();
|
|
expect(wrapper.instance().slick.innerSlider.state.currentSlide).toBe(2);
|
|
});
|
|
|
|
it('should trigger autoPlay after window resize', async () => {
|
|
jest.useRealTimers();
|
|
const wrapper = mount(
|
|
<Carousel autoplay>
|
|
<div>1</div>
|
|
<div>2</div>
|
|
<div>3</div>
|
|
</Carousel>,
|
|
);
|
|
const spy = jest.spyOn(wrapper.instance().slick.innerSlider, 'autoPlay');
|
|
window.resizeTo(1000);
|
|
expect(spy).not.toHaveBeenCalled();
|
|
await new Promise(resolve => setTimeout(resolve, 500));
|
|
expect(spy).toHaveBeenCalled();
|
|
});
|
|
|
|
it('cancel resize listener when unmount', async () => {
|
|
const wrapper = mount(
|
|
<Carousel autoplay>
|
|
<div>1</div>
|
|
<div>2</div>
|
|
<div>3</div>
|
|
</Carousel>,
|
|
);
|
|
const { onWindowResized } = wrapper.instance();
|
|
const spy = jest.spyOn(wrapper.instance().onWindowResized, 'cancel');
|
|
const spy2 = jest.spyOn(window, 'removeEventListener');
|
|
wrapper.unmount();
|
|
expect(spy).toHaveBeenCalled();
|
|
expect(spy2).toHaveBeenCalledWith('resize', onWindowResized);
|
|
});
|
|
|
|
describe('should works for dotPosition', () => {
|
|
['left', 'right', 'top', 'bottom'].forEach(dotPosition => {
|
|
// eslint-disable-next-line jest/valid-title
|
|
it(dotPosition, () => {
|
|
const wrapper = mount(
|
|
<Carousel dotPosition={dotPosition}>
|
|
<div />
|
|
</Carousel>,
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('should active when children change', () => {
|
|
it('should active', () => {
|
|
const wrapper = mount(<Carousel />);
|
|
wrapper.setProps({
|
|
children: <div />,
|
|
});
|
|
wrapper.update();
|
|
expect(wrapper.find('.slick-active').length).toBeTruthy();
|
|
});
|
|
|
|
it('should keep initialSlide', () => {
|
|
// react unsafe lifecycle don't works in React 15
|
|
// https://github.com/akiran/react-slick/commit/97988e897750e1d8f7b10a86b655f50d75d38298
|
|
if (process.env.REACT === '15') {
|
|
return;
|
|
}
|
|
const wrapper = mount(<Carousel initialSlide={1} />);
|
|
wrapper.setProps({
|
|
children: [<div key="1" />, <div key="2" />, <div key="3" />],
|
|
});
|
|
wrapper.update();
|
|
expect(wrapper.find('.slick-dots li').at(1).hasClass('slick-active')).toBeTruthy();
|
|
});
|
|
});
|
|
|
|
describe('dots precise control by plain object', () => {
|
|
it('use dots to provide dotsClasse', () => {
|
|
const wrapper = mount(
|
|
<Carousel dots={{ className: 'customDots' }}>
|
|
<div>1</div>
|
|
<div>2</div>
|
|
<div>3</div>
|
|
</Carousel>,
|
|
);
|
|
wrapper.update();
|
|
expect(wrapper.find('.slick-dots').hasClass('customDots')).toBeTruthy();
|
|
});
|
|
});
|
|
});
|
|
|