shlink-web-client/test/utils/DropdownBtn.test.tsx

53 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-12-25 12:39:54 +03:00
import { shallow, ShallowWrapper } from 'enzyme';
import { DropdownMenu, DropdownToggle } from 'reactstrap';
import { PropsWithChildren } from 'react';
import { DropdownBtn, DropdownBtnProps } from '../../src/utils/DropdownBtn';
2020-12-25 12:39:54 +03:00
describe('<DropdownBtn />', () => {
2020-12-25 12:39:54 +03:00
let wrapper: ShallowWrapper;
const createWrapper = (props: PropsWithChildren<DropdownBtnProps>) => {
2022-03-26 14:17:42 +03:00
wrapper = shallow(<DropdownBtn children="foo" {...props} />);
2020-12-25 12:39:54 +03:00
return wrapper;
};
afterEach(() => wrapper?.unmount());
2022-03-26 14:17:42 +03:00
it.each([['foo'], ['bar'], ['baz']])('displays provided text', (text) => {
2020-12-25 12:39:54 +03:00
const wrapper = createWrapper({ text });
const toggle = wrapper.find(DropdownToggle);
2021-01-24 20:05:37 +03:00
expect(toggle.prop('children')).toContain(text);
2020-12-25 12:39:54 +03:00
});
2022-03-26 14:17:42 +03:00
it.each([['foo'], ['bar'], ['baz']])('displays provided children', (children) => {
2020-12-25 12:39:54 +03:00
const wrapper = createWrapper({ text: '', children });
const menu = wrapper.find(DropdownMenu);
expect(menu.html()).toContain(children);
});
it.each([
2022-03-26 14:17:42 +03:00
[undefined, 'dropdown-btn__toggle btn-block'],
['', 'dropdown-btn__toggle btn-block'],
['foo', 'dropdown-btn__toggle btn-block foo'],
['bar', 'dropdown-btn__toggle btn-block bar'],
2020-12-25 12:39:54 +03:00
])('includes provided classes', (className, expectedClasses) => {
const wrapper = createWrapper({ text: '', className });
const toggle = wrapper.find(DropdownToggle);
expect(toggle.prop('className')?.trim()).toEqual(expectedClasses);
});
2021-06-22 22:12:06 +03:00
it.each([
2022-03-26 14:17:42 +03:00
[100, { minWidth: '100px' }],
[250, { minWidth: '250px' }],
[undefined, {}],
2021-06-22 22:12:06 +03:00
])('renders proper styles when minWidth is provided', (minWidth, expectedStyle) => {
const wrapper = createWrapper({ text: '', minWidth });
const style = wrapper.find(DropdownMenu).prop('style');
expect(style).toEqual(expectedStyle);
});
2020-12-25 12:39:54 +03:00
});