2022-06-09 23:17:33 +03:00
|
|
|
import { render, screen } from '@testing-library/react';
|
2021-11-09 00:13:37 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
2022-06-09 23:17:33 +03:00
|
|
|
import { MemoryRouter } from 'react-router-dom';
|
2022-05-28 12:16:59 +03:00
|
|
|
import { Paginator } from '../../src/short-urls/Paginator';
|
2021-11-09 00:13:37 +03:00
|
|
|
import { ShlinkPaginator } from '../../src/api/types';
|
|
|
|
import { ELLIPSIS } from '../../src/utils/helpers/pagination';
|
2018-09-16 13:18:02 +03:00
|
|
|
|
|
|
|
describe('<Paginator />', () => {
|
2021-11-09 00:13:37 +03:00
|
|
|
const buildPaginator = (pagesCount?: number) => Mock.of<ShlinkPaginator>({ pagesCount, currentPage: 1 });
|
2022-06-09 23:17:33 +03:00
|
|
|
const setUp = (paginator?: ShlinkPaginator, currentQueryString?: string) => render(
|
|
|
|
<MemoryRouter>
|
|
|
|
<Paginator serverId="abc123" paginator={paginator} currentQueryString={currentQueryString} />
|
|
|
|
</MemoryRouter>,
|
|
|
|
);
|
2018-09-16 13:18:02 +03:00
|
|
|
|
2021-11-09 00:13:37 +03:00
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
[undefined],
|
|
|
|
[buildPaginator()],
|
|
|
|
[buildPaginator(0)],
|
|
|
|
[buildPaginator(1)],
|
2021-11-09 00:13:37 +03:00
|
|
|
])('renders nothing if the number of pages is below 2', (paginator) => {
|
2022-06-09 23:17:33 +03:00
|
|
|
const { container } = setUp(paginator);
|
|
|
|
expect(container.firstChild).toBeNull();
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|
|
|
|
|
2021-11-09 00:13:37 +03:00
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
[buildPaginator(2), 4, 0],
|
|
|
|
[buildPaginator(3), 5, 0],
|
|
|
|
[buildPaginator(4), 6, 0],
|
|
|
|
[buildPaginator(5), 7, 1],
|
|
|
|
[buildPaginator(6), 7, 1],
|
|
|
|
[buildPaginator(23), 7, 1],
|
2021-11-09 00:13:37 +03:00
|
|
|
])('renders previous, next and the list of pages, with ellipses when expected', (
|
|
|
|
paginator,
|
|
|
|
expectedPages,
|
|
|
|
expectedEllipsis,
|
|
|
|
) => {
|
2022-06-09 23:17:33 +03:00
|
|
|
setUp(paginator);
|
|
|
|
|
|
|
|
const links = screen.getAllByRole('link');
|
|
|
|
const ellipsis = screen.queryAllByText(ELLIPSIS);
|
2021-11-09 00:13:37 +03:00
|
|
|
|
2022-06-09 23:17:33 +03:00
|
|
|
expect(links).toHaveLength(expectedPages);
|
2021-11-09 00:13:37 +03:00
|
|
|
expect(ellipsis).toHaveLength(expectedEllipsis);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('appends query string to all pages', () => {
|
|
|
|
const paginator = buildPaginator(3);
|
|
|
|
const currentQueryString = '?foo=bar';
|
|
|
|
|
2022-06-09 23:17:33 +03:00
|
|
|
setUp(paginator, currentQueryString);
|
|
|
|
const links = screen.getAllByRole('link');
|
2018-09-16 13:18:02 +03:00
|
|
|
|
2021-11-09 00:13:37 +03:00
|
|
|
expect(links).toHaveLength(5);
|
2022-06-09 23:17:33 +03:00
|
|
|
links.forEach((link) => expect(link).toHaveAttribute('href', expect.stringContaining(currentQueryString)));
|
2018-09-16 13:18:02 +03:00
|
|
|
});
|
|
|
|
});
|