2019-01-12 03:33:27 +00:00
|
|
|
import Moment from 'moment';
|
|
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
import { asyncExpect } from '@/tests/utils';
|
|
|
|
import MockDate from 'mockdate';
|
|
|
|
import Calendar from '..';
|
2020-03-07 11:45:13 +00:00
|
|
|
import Header from '../Header';
|
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
import { sleep } from '../../../tests/utils';
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
function $$(className) {
|
|
|
|
return document.body.querySelectorAll(className);
|
2018-05-21 14:59:04 +00:00
|
|
|
}
|
|
|
|
describe('Calendar', () => {
|
2020-03-07 11:45:13 +00:00
|
|
|
mountTest(Calendar);
|
|
|
|
beforeAll(() => {
|
|
|
|
document.body.innerHTML = '';
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
it('Calendar should be selectable', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const onSelect = jest.fn();
|
2018-05-21 14:59:04 +00:00
|
|
|
const wrapper = mount(
|
|
|
|
{
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
|
|
|
return <Calendar onSelect={onSelect} />;
|
2018-05-21 14:59:04 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
{ sync: false },
|
|
|
|
);
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
wrapper
|
|
|
|
.findAll('.ant-fullcalendar-cell')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2020-03-07 11:45:13 +00:00
|
|
|
expect(onSelect).toHaveBeenCalledWith(expect.anything());
|
2019-01-12 03:33:27 +00:00
|
|
|
const value = onSelect.mock.calls[0][0];
|
|
|
|
expect(Moment.isMoment(value)).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('only Valid range should be selectable', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const onSelect = jest.fn();
|
|
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-02-18')];
|
2018-05-21 14:59:04 +00:00
|
|
|
const wrapper = mount(
|
|
|
|
{
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Calendar
|
|
|
|
onSelect={onSelect}
|
|
|
|
validRange={validRange}
|
|
|
|
defaultValue={Moment('2018-02-02')}
|
|
|
|
/>
|
|
|
|
);
|
2018-05-21 14:59:04 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
{ sync: false },
|
|
|
|
);
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
wrapper
|
|
|
|
.findAll('[title="February 1, 2018"]')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="February 2, 2018"]')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
expect(onSelect.mock.calls.length).toBe(1);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('dates other than in valid range should be disabled', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const onSelect = jest.fn();
|
|
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-02-18')];
|
2018-05-21 14:59:04 +00:00
|
|
|
const wrapper = mount(
|
|
|
|
{
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Calendar
|
|
|
|
onSelect={onSelect}
|
|
|
|
validRange={validRange}
|
|
|
|
defaultValue={Moment('2018-02-02')}
|
|
|
|
/>
|
|
|
|
);
|
2018-05-21 14:59:04 +00:00
|
|
|
},
|
2018-05-30 06:12:43 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
{ sync: false },
|
|
|
|
);
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
wrapper
|
|
|
|
.findAll('[title="February 20, 2018"]')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
expect(wrapper.find('[title="February 20, 2018"]').classes()).toContain(
|
|
|
|
'ant-fullcalendar-disabled-cell',
|
|
|
|
);
|
|
|
|
expect(onSelect.mock.calls.length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('months other than in valid range should be disabled', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const onSelect = jest.fn();
|
|
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-05-18')];
|
2018-05-21 14:59:04 +00:00
|
|
|
const wrapper = mount(
|
|
|
|
{
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Calendar
|
|
|
|
onSelect={onSelect}
|
|
|
|
validRange={validRange}
|
|
|
|
defaultValue={Moment('2018-02-02')}
|
|
|
|
mode="year"
|
|
|
|
/>
|
|
|
|
);
|
2018-05-21 14:59:04 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
{ sync: false },
|
|
|
|
);
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="Jan"]')
|
|
|
|
.at(0)
|
|
|
|
.classes(),
|
|
|
|
).toContain('ant-fullcalendar-month-panel-cell-disabled');
|
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="Feb"]')
|
|
|
|
.at(0)
|
|
|
|
.classes(),
|
|
|
|
).not.toContain('ant-fullcalendar-month-panel-cell-disabled');
|
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="Jun"]')
|
|
|
|
.at(0)
|
|
|
|
.classes(),
|
|
|
|
).toContain('ant-fullcalendar-month-panel-cell-disabled');
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="Jan"]')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
wrapper
|
|
|
|
.findAll('[title="Mar"]')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
expect(onSelect.mock.calls.length).toBe(1);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-07-01 09:12:24 +00:00
|
|
|
it('months other than in valid range should not be shown in header', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
document.body.innerHTML = '';
|
|
|
|
const validRange = [Moment('2017-02-02'), Moment('2018-05-18')];
|
2018-05-21 14:59:04 +00:00
|
|
|
const wrapper = mount(
|
|
|
|
{
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
|
|
|
return <Calendar validRange={validRange} />;
|
2018-05-21 14:59:04 +00:00
|
|
|
},
|
|
|
|
},
|
2020-07-25 07:46:49 +00:00
|
|
|
{ sync: false, attachTo: 'body' },
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2018-07-01 09:12:24 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
wrapper.find('.ant-fullcalendar-year-select').trigger('click');
|
|
|
|
});
|
2018-07-01 09:12:24 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
$$('.ant-select-dropdown-menu-item')[0].click();
|
|
|
|
}, 0);
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('getDateRange should returns a disabledDate function', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const validRange = [Moment('2018-02-02'), Moment('2018-05-18')];
|
|
|
|
const wrapper = mount(Calendar, {
|
2020-07-25 07:46:49 +00:00
|
|
|
props: {
|
2019-01-12 03:33:27 +00:00
|
|
|
validRange,
|
|
|
|
defaultValue: Moment('2018-02-02'),
|
|
|
|
},
|
|
|
|
sync: false,
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const instance = wrapper.vm;
|
|
|
|
const disabledDate = instance.getDateRange(validRange);
|
|
|
|
expect(disabledDate(Moment('2018-06-02'))).toBe(true);
|
|
|
|
expect(disabledDate(Moment('2018-04-02'))).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('Calendar should change mode by prop', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const monthMode = 'month';
|
|
|
|
const yearMode = 'year';
|
|
|
|
const wrapper = mount(Calendar, { sync: false });
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(wrapper.vm.sMode).toEqual(monthMode);
|
|
|
|
wrapper.setProps({ mode: 'year' });
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(wrapper.vm.sMode).toEqual(yearMode);
|
|
|
|
});
|
|
|
|
});
|
2018-05-21 14:59:04 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('Calendar should switch mode', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const monthMode = 'month';
|
|
|
|
const yearMode = 'year';
|
|
|
|
const onPanelChangeStub = jest.fn();
|
|
|
|
const wrapper = mount(Calendar, {
|
2020-07-25 07:46:49 +00:00
|
|
|
props: {
|
2019-01-12 03:33:27 +00:00
|
|
|
mode: yearMode,
|
2020-07-25 13:46:52 +00:00
|
|
|
onPanelChange: onPanelChangeStub,
|
2019-01-12 03:33:27 +00:00
|
|
|
},
|
|
|
|
sync: false,
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(wrapper.vm.sMode).toEqual(yearMode);
|
2020-03-07 11:45:13 +00:00
|
|
|
wrapper.setProps({ mode: monthMode });
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(wrapper.vm.sMode).toEqual(monthMode);
|
2020-03-07 11:45:13 +00:00
|
|
|
expect(onPanelChangeStub).toHaveBeenCalledTimes(0);
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|
|
|
|
});
|
2018-11-28 13:58:42 +00:00
|
|
|
|
2018-12-08 04:05:42 +00:00
|
|
|
it('Calendar should support locale', async () => {
|
2019-01-12 03:33:27 +00:00
|
|
|
MockDate.set(Moment('2018-10-19'));
|
2018-11-28 13:58:42 +00:00
|
|
|
// eslint-disable-next-line
|
|
|
|
const zhCN = require('../locale/zh_CN').default;
|
2019-01-12 03:33:27 +00:00
|
|
|
const wrapper = mount(Calendar, {
|
2020-07-25 07:46:49 +00:00
|
|
|
props: {
|
2019-01-12 03:33:27 +00:00
|
|
|
locale: zhCN,
|
|
|
|
},
|
|
|
|
sync: false,
|
|
|
|
});
|
2018-12-08 04:05:42 +00:00
|
|
|
await asyncExpect(() => {
|
2019-01-12 03:33:27 +00:00
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
|
|
MockDate.reset();
|
|
|
|
});
|
|
|
|
});
|
2020-03-07 11:45:13 +00:00
|
|
|
|
|
|
|
it('should trigger onPanelChange when click last month of date', () => {
|
|
|
|
const onPanelChange = jest.fn();
|
|
|
|
const date = new Moment('1990-09-03');
|
|
|
|
const wrapper = mount(Calendar, {
|
2020-07-25 07:46:49 +00:00
|
|
|
props: {
|
2020-03-07 11:45:13 +00:00
|
|
|
value: date,
|
2020-07-25 13:46:52 +00:00
|
|
|
onPanelChange,
|
2020-03-07 11:45:13 +00:00
|
|
|
},
|
|
|
|
sync: false,
|
|
|
|
});
|
|
|
|
wrapper
|
|
|
|
.findAll('.ant-fullcalendar-cell')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
|
|
|
|
expect(onPanelChange).toHaveBeenCalled();
|
|
|
|
expect(onPanelChange.mock.calls[0][0].month()).toEqual(date.month() - 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('switch should work correctly without prop mode', async () => {
|
|
|
|
const onPanelChange = jest.fn();
|
|
|
|
const date = new Moment(new Date(Date.UTC(2017, 7, 9, 8)));
|
|
|
|
const wrapper = mount(Calendar, {
|
2020-07-25 07:46:49 +00:00
|
|
|
props: {
|
2020-03-07 11:45:13 +00:00
|
|
|
value: date,
|
2020-07-25 13:46:52 +00:00
|
|
|
onPanelChange,
|
2020-03-07 11:45:13 +00:00
|
|
|
},
|
|
|
|
sync: false,
|
|
|
|
});
|
|
|
|
expect(wrapper.vm.sMode).toBe('month');
|
|
|
|
expect(wrapper.findAll('.ant-fullcalendar-table').length).toBe(1);
|
|
|
|
expect(wrapper.findAll('.ant-fullcalendar-month-panel-table').length).toBe(0);
|
|
|
|
wrapper.findAll('.ant-radio-button-input[value="year"]').trigger('change');
|
|
|
|
await sleep(50);
|
|
|
|
expect(wrapper.findAll('.ant-fullcalendar-table').length).toBe(0);
|
|
|
|
expect(wrapper.findAll('.ant-fullcalendar-month-panel-table').length).toBe(1);
|
|
|
|
expect(onPanelChange).toHaveBeenCalled();
|
|
|
|
expect(onPanelChange.mock.calls[0][1]).toEqual('year');
|
|
|
|
});
|
|
|
|
|
|
|
|
const createWrapper = async (start, end, value, onValueChange) => {
|
|
|
|
document.body.innerHTML = '';
|
|
|
|
const wrapper = mount(
|
|
|
|
{
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Header
|
|
|
|
onValueChange={onValueChange}
|
|
|
|
value={value}
|
|
|
|
validRange={[start, end]}
|
|
|
|
locale={{ year: '年' }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
sync: false,
|
2020-07-25 07:46:49 +00:00
|
|
|
attachTo: 'body',
|
2020-03-07 11:45:13 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
await sleep(50);
|
|
|
|
wrapper
|
|
|
|
.findAll('.ant-fullcalendar-year-select')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
await sleep(50);
|
|
|
|
$$('.ant-select-dropdown-menu-item')[0].click();
|
|
|
|
await sleep(50);
|
|
|
|
};
|
|
|
|
|
|
|
|
it('if value.month > end.month, set value.month to end.month', async () => {
|
|
|
|
const value = new Moment('1990-01-03');
|
|
|
|
const start = new Moment('2019-04-01');
|
|
|
|
const end = new Moment('2019-11-01');
|
|
|
|
const onValueChange = jest.fn();
|
|
|
|
await createWrapper(start, end, value, onValueChange);
|
|
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('3'));
|
|
|
|
});
|
|
|
|
it('if value.month > end.month, set value.month to end.month1', async () => {
|
|
|
|
const value = new Moment('1990-01-03');
|
|
|
|
const start = new Moment('2019-04-01');
|
|
|
|
const end = new Moment('2019-11-01');
|
|
|
|
const onValueChange = jest.fn();
|
|
|
|
await createWrapper(start, end, value, onValueChange);
|
|
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('3'));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('if start.month > value.month, set value.month to start.month ', async () => {
|
|
|
|
const value = new Moment('1990-01-03');
|
|
|
|
const start = new Moment('2019-11-01');
|
|
|
|
const end = new Moment('2019-03-01');
|
|
|
|
const onValueChange = jest.fn();
|
|
|
|
await createWrapper(start, end, value, onValueChange);
|
|
|
|
expect(onValueChange).toHaveBeenCalledWith(value.year('2019').month('10'));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('onMonthChange should work correctly', async () => {
|
|
|
|
const start = new Moment('2018-11-01');
|
|
|
|
const end = new Moment('2019-03-01');
|
|
|
|
const value = new Moment('2018-12-03');
|
|
|
|
const onValueChange = jest.fn();
|
|
|
|
const wrapper = mount(
|
|
|
|
{
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Header
|
|
|
|
onValueChange={onValueChange}
|
|
|
|
value={value}
|
|
|
|
validRange={[start, end]}
|
|
|
|
locale={{ year: '年' }}
|
|
|
|
type="month"
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
sync: false,
|
2020-07-25 07:46:49 +00:00
|
|
|
attachTo: 'body',
|
2020-03-07 11:45:13 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
await sleep(50);
|
|
|
|
wrapper
|
|
|
|
.findAll('.ant-fullcalendar-month-select')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
await sleep(50);
|
|
|
|
wrapper
|
|
|
|
.findAll('.ant-select-dropdown-menu-item')
|
|
|
|
.at(0)
|
|
|
|
.trigger('click');
|
|
|
|
await sleep(50);
|
|
|
|
expect(onValueChange).toHaveBeenCalledWith(value.month(10));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('onTypeChange should work correctly', () => {
|
|
|
|
const onTypeChange = jest.fn();
|
|
|
|
const value = new Moment('2018-12-03');
|
|
|
|
const wrapper = mount({
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Header
|
|
|
|
onTypeChange={onTypeChange}
|
|
|
|
locale={{ year: '年', month: '月' }}
|
|
|
|
value={value}
|
|
|
|
type="date"
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
wrapper
|
|
|
|
.findAll('input')
|
|
|
|
.at(1)
|
|
|
|
.trigger('change');
|
|
|
|
expect(onTypeChange).toHaveBeenCalledWith('year');
|
|
|
|
});
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|