import React from 'react';
import { mount, shallow } from 'enzyme';
import { getDecadeStart, getDecadeEnd } from '@wojtekmaj/date-utils';
import CenturyView from './CenturyView';
describe('CenturyView', () => {
const defaultProps = {
activeStartDate: new Date(2017, 0, 1),
};
it('renders proper view when given activeStartDate', () => {
const activeStartDate = new Date(2001, 0, 1);
const component = mount(
,
);
const firstDayTile = component.find('.react-calendar__tile').first();
expect(firstDayTile.text()).toBe(`${getDecadeStart(activeStartDate).getFullYear()} – ${getDecadeEnd(activeStartDate).getFullYear()}`);
});
it('applies tileClassName to its tiles when given a string', () => {
const tileClassName = 'testClassName';
const component = mount(
,
);
const firstDayTile = component.find('.react-calendar__tile').first();
const firstDayTileClassName = firstDayTile.prop('className');
expect(firstDayTileClassName.includes(tileClassName)).toBe(true);
});
it('applies tileClassName to its tiles conditionally when given a function that returns a string', () => {
const activeStartDate = new Date(2001, 0, 1);
const tileClassNameFn = ({ date }) => {
if (date.getTime() === activeStartDate.getTime()) {
return 'firstDayOfTheMonth';
}
return null;
};
const component = mount(
,
);
const tiles = component.find('.react-calendar__tile');
const firstDayTile = tiles.first();
const firstDayTileClassName = firstDayTile.prop('className');
const secondDayTile = tiles.at(1);
const secondDayTileClassName = secondDayTile.prop('className');
expect(firstDayTileClassName.includes('firstDayOfTheMonth')).toBe(true);
expect(secondDayTileClassName.includes('firstDayOfTheMonth')).toBe(false);
});
it('renders tileContent in its tiles when given a node', () => {
const tileContent = (
);
const component = mount(
,
);
const tiles = component.find('.react-calendar__tile');
const firstDayTile = tiles.first();
const firstDayTileContent = firstDayTile.find('.testContent');
expect(firstDayTileContent).toHaveLength(1);
});
it('renders tileContent in its tiles conditionally when given a function that returns a node', () => {
const activeStartDate = new Date(2001, 0, 1);
const tileContentFn = ({ date }) => {
if (date.getTime() === activeStartDate.getTime()) {
return (
);
}
return null;
};
const component = mount(
,
);
const tiles = component.find('.react-calendar__tile');
const firstDayTile = tiles.first();
const firstDayTileContent = firstDayTile.find('.testContent');
const secondDayTile = tiles.at(1);
const secondDayTileContent = secondDayTile.find('.testContent');
expect(firstDayTileContent).toHaveLength(1);
expect(secondDayTileContent).toHaveLength(0);
});
it('passes formatYear flag to Decades component', () => {
const formatYear = () => 'Year';
const component = shallow(
,
);
const years = component.find('Decades');
expect(years.prop('formatYear')).toBe(formatYear);
});
});