Day.test.tsx
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { screen } from '@testing-library/react';
import { DayPickerProps } from 'DayPicker';
import { customRender } from 'test/render';
import { freezeBeforeAll } from 'test/utils';
import { CustomComponents } from 'types/DayPickerBase';
import { Day, DayProps } from './Day';
const today = new Date(2021, 8);
freezeBeforeAll(today);
const date = today;
const displayMonth = today;
const props: DayProps = {
date: date,
displayMonth
};
describe('when the day to render has an hidden modifier', () => {
const dayPickerProps: DayPickerProps = {
modifiers: { hidden: date }
};
beforeEach(() => {
customRender(<Day {...props} />, dayPickerProps);
});
test('should render an empty grid cell', () => {
const cell = screen.getByRole('gridcell');
expect(cell).toBeEmptyDOMElement();
});
});
describe('when a no selection mode and no "onDayClick"', () => {
const dayPickerProps: DayPickerProps = { mode: 'default' };
beforeEach(() => {
customRender(<Day {...props} />, dayPickerProps);
});
test('should render a div', () => {
const cell = screen.getByRole('gridcell');
expect(cell.nodeName).toBe('DIV');
});
});
describe('when a selection mode is set', () => {
const dayPickerProps: DayPickerProps = {
mode: 'single'
};
beforeEach(() => {
customRender(<Day {...props} />, dayPickerProps);
});
test('should render a button named "day"', () => {
const cell = screen.getByRole('gridcell');
expect(cell.nodeName).toBe('BUTTON');
expect(cell).toHaveAttribute('name', 'day');
});
});
describe('when "onDayClick" is present', () => {
const dayPickerProps: DayPickerProps = {
onDayClick: jest.fn()
};
beforeEach(() => {
customRender(<Day {...props} />, dayPickerProps);
});
test('should render a button', () => {
const cell = screen.getByRole('gridcell');
expect(cell.nodeName).toBe('BUTTON');
});
});
describe('when using a custom DayContent component', () => {
const components: CustomComponents = {
DayContent: () => <>Custom DayContent</>
};
beforeEach(() => {
customRender(<Day {...props} />, { components });
});
test('it should render the custom component instead', () => {
expect(screen.getByText('Custom DayContent')).toBeInTheDocument();
});
});