2020-08-30 20:45:17 +03:00
|
|
|
import { shallow, ShallowWrapper } from 'enzyme';
|
|
|
|
import { Mock } from 'ts-mockery';
|
2021-11-09 01:23:45 +03:00
|
|
|
import { History, Location } from 'history';
|
|
|
|
import { match } from 'react-router';
|
2021-11-11 00:25:56 +03:00
|
|
|
import { formatISO } from 'date-fns';
|
2021-11-09 01:23:45 +03:00
|
|
|
import searchBarCreator, { SearchBarProps } from '../../src/short-urls/SearchBar';
|
2018-09-16 13:18:02 +03:00
|
|
|
import SearchField from '../../src/utils/SearchField';
|
2018-12-18 13:28:15 +03:00
|
|
|
import Tag from '../../src/tags/helpers/Tag';
|
2020-12-15 01:35:31 +03:00
|
|
|
import { DateRangeSelector } from '../../src/utils/dates/DateRangeSelector';
|
2020-08-30 20:45:17 +03:00
|
|
|
import ColorGenerator from '../../src/utils/services/ColorGenerator';
|
2021-11-09 01:23:45 +03:00
|
|
|
import { ShortUrlListRouteParams } from '../../src/short-urls/helpers/hooks';
|
2018-09-16 13:18:02 +03:00
|
|
|
|
|
|
|
describe('<SearchBar />', () => {
|
2020-08-30 20:45:17 +03:00
|
|
|
let wrapper: ShallowWrapper;
|
2020-12-12 15:33:21 +03:00
|
|
|
const SearchBar = searchBarCreator(Mock.all<ColorGenerator>());
|
2021-11-09 01:23:45 +03:00
|
|
|
const push = jest.fn();
|
2021-11-11 00:25:56 +03:00
|
|
|
const now = new Date();
|
2021-11-09 01:23:45 +03:00
|
|
|
const createWrapper = (props: Partial<SearchBarProps> = {}) => {
|
|
|
|
wrapper = shallow(
|
|
|
|
<SearchBar
|
|
|
|
history={Mock.of<History>({ push })}
|
|
|
|
location={Mock.of<Location>({ search: '' })}
|
|
|
|
match={Mock.of<match<ShortUrlListRouteParams>>({ params: { serverId: '1' } })}
|
|
|
|
{...props}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
|
|
|
|
return wrapper;
|
|
|
|
};
|
2018-09-16 13:18:02 +03:00
|
|
|
|
2020-08-30 20:45:17 +03:00
|
|
|
afterEach(jest.clearAllMocks);
|
|
|
|
afterEach(() => wrapper?.unmount());
|
2018-09-16 13:18:02 +03:00
|
|
|
|
2021-11-09 01:23:45 +03:00
|
|
|
it('renders some children components SearchField', () => {
|
|
|
|
const wrapper = createWrapper();
|
2018-09-16 13:18:02 +03:00
|
|
|
|
|
|
|
expect(wrapper.find(SearchField)).toHaveLength(1);
|
2020-12-15 01:35:31 +03:00
|
|
|
expect(wrapper.find(DateRangeSelector)).toHaveLength(1);
|
2020-01-14 22:12:30 +03:00
|
|
|
});
|
|
|
|
|
2021-11-09 01:23:45 +03:00
|
|
|
it.each([
|
|
|
|
[ 'tags=foo,bar,baz', 3 ],
|
|
|
|
[ 'tags=foo,baz', 2 ],
|
|
|
|
[ '', 0 ],
|
|
|
|
[ 'foo=bar', 0 ],
|
|
|
|
])('renders the proper amount of tags', (search, expectedTagComps) => {
|
|
|
|
const wrapper = createWrapper({ location: Mock.of<Location>({ search }) });
|
2018-09-16 13:18:02 +03:00
|
|
|
|
2021-11-09 01:23:45 +03:00
|
|
|
expect(wrapper.find(Tag)).toHaveLength(expectedTagComps);
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|
|
|
|
|
2021-11-11 00:25:56 +03:00
|
|
|
it('redirects to first page when search field changes', () => {
|
2021-11-09 01:23:45 +03:00
|
|
|
const wrapper = createWrapper();
|
2018-09-16 13:18:02 +03:00
|
|
|
const searchField = wrapper.find(SearchField);
|
|
|
|
|
2021-11-09 01:23:45 +03:00
|
|
|
expect(push).not.toHaveBeenCalled();
|
|
|
|
searchField.simulate('change', 'search-term');
|
|
|
|
expect(push).toHaveBeenCalledWith('/server/1/list-short-urls/1?search=search-term');
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|
|
|
|
|
2021-11-11 00:25:56 +03:00
|
|
|
it('redirects to first page when a tag is removed', () => {
|
2021-11-09 01:23:45 +03:00
|
|
|
const wrapper = createWrapper({ location: Mock.of<Location>({ search: 'tags=foo,bar' }) });
|
2018-09-16 13:18:02 +03:00
|
|
|
const tag = wrapper.find(Tag).first();
|
|
|
|
|
2021-11-09 01:23:45 +03:00
|
|
|
expect(push).not.toHaveBeenCalled();
|
2018-09-16 13:18:02 +03:00
|
|
|
tag.simulate('close');
|
2021-11-09 01:23:45 +03:00
|
|
|
expect(push).toHaveBeenCalledWith('/server/1/list-short-urls/1?tags=bar');
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|
2020-01-14 22:12:30 +03:00
|
|
|
|
2021-11-11 00:25:56 +03:00
|
|
|
it.each([
|
|
|
|
[{ startDate: now }, `startDate=${encodeURIComponent(formatISO(now))}` ],
|
|
|
|
[{ endDate: now }, `endDate=${encodeURIComponent(formatISO(now))}` ],
|
|
|
|
[
|
|
|
|
{ startDate: now, endDate: now },
|
|
|
|
`startDate=${encodeURIComponent(formatISO(now))}&endDate=${encodeURIComponent(formatISO(now))}`,
|
|
|
|
],
|
|
|
|
])('redirects to first page when date range changes', (dates, expectedQuery) => {
|
2021-11-09 01:23:45 +03:00
|
|
|
const wrapper = createWrapper();
|
2020-12-15 01:35:31 +03:00
|
|
|
const dateRange = wrapper.find(DateRangeSelector);
|
2020-01-14 22:12:30 +03:00
|
|
|
|
2021-11-11 00:25:56 +03:00
|
|
|
expect(push).not.toHaveBeenCalled();
|
|
|
|
dateRange.simulate('datesChange', dates);
|
|
|
|
expect(push).toHaveBeenCalledWith(`/server/1/list-short-urls/1?${expectedQuery}`);
|
2020-01-14 22:12:30 +03:00
|
|
|
});
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|