-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathOption.test.tsx
89 lines (78 loc) · 2.82 KB
/
Option.test.tsx
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
83
84
85
86
87
88
89
import React, { type ComponentProps } from 'react';
import type { CSSProperties } from 'react';
import { render } from '@testing-library/react';
import Option from '../src/components/Menu/Option';
import userEvent from '@testing-library/user-event';
import { OPTION_DISABLED_CLS } from '../src/constants';
import { renderOptionLabelMock, stringifyCSSProperties, ThemeWrapper, MENU_OPTIONS } from './helpers';
type OptionProps = ComponentProps<typeof Option>;
// ============================================
// Helper functions & test data for Option.tsx component
// ============================================
const renderOption = (props: OptionProps) => {
return {
user: userEvent.setup(),
...render(
<ThemeWrapper>
<Option {...props} />
</ThemeWrapper>
)
};
};
const OPTION_STYLE: CSSProperties = {
top: '0px',
left: '0px',
width: '100%',
height: '35px',
position: 'absolute'
} as const;
const onClickSelectOptionSpy = jest.fn();
const renderOptionLabelSpy = renderOptionLabelMock;
const createOptionProps = (
index = 0,
focusedOptionIndex = 0,
memoOptions = false
) => {
const props: OptionProps = {
index,
style: OPTION_STYLE,
data: {
memoOptions,
focusedOptionIndex,
menuOptions: MENU_OPTIONS,
selectOption: onClickSelectOptionSpy,
renderOptionLabel: renderOptionLabelSpy
}
};
return {
props,
renderOptionLabelSpy,
onClickSelectOptionSpy
};
};
// ============================================
// Test cases
// ============================================
test('option parent element renders dynamic style attribute correctly', () => {
const { props } = createOptionProps();
const { container } = renderOption(props);
const optionParentEl = container.querySelector('div');
const optionCssProps = stringifyCSSProperties(OPTION_STYLE);
expect(optionParentEl).toHaveAttribute('style', optionCssProps);
});
test('"renderOptionLabel" callback should be executed and the result rendered to DOM', () => {
const { props, renderOptionLabelSpy } = createOptionProps();
const { label } = props.data.menuOptions[props.index];
const { getByText } = renderOption(props);
expect(renderOptionLabelSpy).toHaveBeenCalled();
expect(getByText(String(label))).toBeInTheDocument();
});
test(`option with "isDisabled" = TRUE should have an onClick handler and the ${OPTION_DISABLED_CLS} class added to its classList`, async () => {
const firstDisabledIdx = MENU_OPTIONS.findIndex((x) => x.isDisabled);
const { props, onClickSelectOptionSpy } = createOptionProps(firstDisabledIdx);
const { user, container } = renderOption(props);
const optionParentEl = container.querySelector('div') as HTMLDivElement;
await user.click(optionParentEl);
expect(onClickSelectOptionSpy).toBeCalled();
expect(optionParentEl).toHaveClass(OPTION_DISABLED_CLS);
});