@roo-ui/components
Version:
551 lines (430 loc) • 18.7 kB
JavaScript
import React from 'react';
import { parse } from 'date-fns';
import range from 'lodash/range';
import { qantas as theme } from '@roo-ui/themes';
import { mountWithTheme } from '@roo-ui/test-utils';
import DateRangePicker from './DateRangePicker';
describe('<DateRangePicker />', () => {
let wrapper;
const props = {
minDate: parse('2018-07-01'),
maxDate: parse('2018-07-31'),
onRangeSelected: jest.fn,
monthsToDisplay: 1,
stacked: true,
weekdayNames: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
disabledDates: [parse('2018-07-04'), parse('2018-07-05')],
};
const setup = (args = {}) => {
props.startDate = args.startDate || null;
props.endDate = args.endDate || null;
props.setStartDate = args.setStartDate || false;
props.setEndDate = args.setEndDate || false;
wrapper = mountWithTheme(<DateRangePicker {...props} />, theme);
};
describe('disabledDates', () => {
beforeEach(() => {
setup();
});
it('disables dates in disabledDates array', () => {
const date4 = wrapper.find('CalendarDay').at(3);
const date5 = wrapper.find('CalendarDay').at(4);
expect(date4.props()).toEqual(expect.objectContaining({
selected: false,
selectable: false,
disabled: true,
}));
expect(date5.props()).toEqual(expect.objectContaining({
selected: false,
selectable: false,
disabled: true,
}));
});
it('does not disable other dates', () => {
const date3 = wrapper.find('CalendarDay').at(2);
const date6 = wrapper.find('CalendarDay').at(5);
expect(date3.props()).not.toEqual(expect.objectContaining({ disabled: true }));
expect(date6.props()).not.toEqual(expect.objectContaining({ disabled: true }));
});
});
describe('preselected range', () => {
const startDate = parse('2018-07-15');
const endDate = parse('2018-07-20');
beforeEach(() => {
setup({ startDate, endDate });
});
it('highlights dates in range', () => {
range(15, 18).forEach((index) => {
const date = wrapper.find('CalendarDay').at(index);
expect(date.props()).toEqual(expect.objectContaining({ highlighted: true }));
});
});
it('selects start & end dates', () => {
const day15 = wrapper.find('CalendarDay').at(14);
const day20 = wrapper.find('CalendarDay').at(19);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
expect(day20.props()).toEqual(expect.objectContaining({ selected: true }));
});
});
describe('when only start date is set', () => {
const startDate = parse('2018-07-15');
describe('with setStartDate is false', () => {
const setStartDate = false;
beforeEach(() => {
setup({ startDate, setStartDate });
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
describe('with mouse on a past date', () => {
let hoverdDate;
beforeEach(() => {
hoverdDate = wrapper.find('CalendarDay').at(11);
hoverdDate.simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('does not highlight range', () => {
const date13 = wrapper.find('CalendarDay').at(12);
const date14 = wrapper.find('CalendarDay').at(13);
expect(date13.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
expect(date14.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a past date', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(11).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(11);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
});
describe('with mouse on a future date', () => {
let date18;
beforeEach(() => {
date18 = wrapper.find('CalendarDay').at(17);
date18.find('button').simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('highlights the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a future date', () => {
let date18;
beforeEach(() => {
wrapper.find('CalendarDay').at(17).find('button').simulate('click');
wrapper.update();
date18 = wrapper.find('CalendarDay').at(17);
});
it('selects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(date18.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('highlights the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).toEqual(expect.objectContaining({ highlighted: true }));
});
});
});
describe('with setStartDate is true', () => {
const setStartDate = true;
beforeEach(() => {
setup({ startDate, setStartDate });
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
describe('with mouse on a past date', () => {
let hoverdDate;
beforeEach(() => {
hoverdDate = wrapper.find('CalendarDay').at(11);
hoverdDate.simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('does not highlight range', () => {
const date13 = wrapper.find('CalendarDay').at(12);
const date14 = wrapper.find('CalendarDay').at(13);
expect(date13.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
expect(date14.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a past date', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(11).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(11);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
});
describe('with mouse on a future date', () => {
let date18;
beforeEach(() => {
date18 = wrapper.find('CalendarDay').at(17);
date18.find('button').simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('does not highlight the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a future date', () => {
let date18;
beforeEach(() => {
wrapper.find('CalendarDay').at(17).find('button').simulate('click');
wrapper.update();
date18 = wrapper.find('CalendarDay').at(17);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(date18.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('does not highlight the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
});
});
});
describe('with setEndDate is true', () => {
const setEndDate = true;
beforeEach(() => {
setup({ startDate, setEndDate });
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
describe('with mouse on a past date', () => {
let hoverdDate;
beforeEach(() => {
hoverdDate = wrapper.find('CalendarDay').at(11);
hoverdDate.simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('does not highlight range', () => {
const date13 = wrapper.find('CalendarDay').at(12);
const date14 = wrapper.find('CalendarDay').at(13);
expect(date13.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
expect(date14.props()).not.toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a past date', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(11).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(11);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
});
describe('with mouse on a future date', () => {
let date18;
beforeEach(() => {
date18 = wrapper.find('CalendarDay').at(17);
date18.find('button').simulate('mouseEnter');
wrapper.update();
});
it('selects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('highlights the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).toEqual(expect.objectContaining({ highlighted: true }));
});
});
describe('when click on a future date', () => {
let date18;
beforeEach(() => {
wrapper.find('CalendarDay').at(17).find('button').simulate('click');
wrapper.update();
date18 = wrapper.find('CalendarDay').at(17);
});
it('selects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(date18.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('highlights the range', () => {
const date16 = wrapper.find('CalendarDay').at(15);
const date17 = wrapper.find('CalendarDay').at(16);
expect(date16.props()).toEqual(expect.objectContaining({ highlighted: true }));
expect(date17.props()).toEqual(expect.objectContaining({ highlighted: true }));
});
});
});
});
describe('when start date & end date are set', () => {
const startDate = parse('2018-07-15');
const endDate = parse('2018-07-20');
describe('with setStartDate is true', () => {
const setStartDate = true;
beforeEach(() => {
setup({ startDate, endDate, setStartDate });
});
describe('when click on a date < endDate', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(11).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(11);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('keeps end date selected', () => {
const day20 = wrapper.find('CalendarDay').at(19);
expect(day20.props()).toEqual(expect.objectContaining({ selected: true }));
});
});
describe('when click on a date > endDate', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(22).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(22);
});
it('deselects original start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('deselects end date', () => {
const day20 = wrapper.find('CalendarDay').at(19);
expect(day20.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
});
});
describe('with setEndDate is true', () => {
const setEndDate = true;
beforeEach(() => {
setup({ startDate, endDate, setEndDate });
});
describe('when click on a date > startDate', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(17).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(17);
});
it('keeps start date selected', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new end date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('deselects end date', () => {
const day20 = wrapper.find('CalendarDay').at(19);
expect(day20.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
});
describe('when click on a date < startDate', () => {
let newClickedDate;
beforeEach(() => {
wrapper.find('CalendarDay').at(11).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(11);
});
it('deselects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('deselects endDate', () => {
const day20 = wrapper.find('CalendarDay').at(19);
expect(day20.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
});
});
describe('with setStartDate is false and setEndDate is false', () => {
let newClickedDate;
beforeEach(() => {
setup({ startDate, endDate });
wrapper.find('CalendarDay').at(22).find('button').simulate('click');
wrapper.update();
newClickedDate = wrapper.find('CalendarDay').at(22);
});
it('deselects start date', () => {
const day15 = wrapper.find('CalendarDay').at(14);
expect(day15.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
it('selects the new start date', () => {
expect(newClickedDate.props()).toEqual(expect.objectContaining({ selected: true }));
});
it('deselects endDate', () => {
const day20 = wrapper.find('CalendarDay').at(19);
expect(day20.props()).not.toEqual(expect.objectContaining({ selected: true }));
});
});
});
});