shlink-web-client/test/common/SimplePaginator.test.tsx

48 lines
1.7 KiB
TypeScript
Raw Normal View History

import { render, screen } from '@testing-library/react';
import { SimplePaginator } from '../../src/common/SimplePaginator';
import { ELLIPSIS } from '../../src/utils/helpers/pagination';
2019-09-22 12:14:08 +03:00
describe('<SimplePaginator />', () => {
const setUp = (pagesCount: number, currentPage = 1) => render(
<SimplePaginator pagesCount={pagesCount} currentPage={currentPage} setCurrentPage={jest.fn()} />,
);
2019-09-22 12:14:08 +03:00
2022-03-26 14:17:42 +03:00
it.each([-3, -2, 0, 1])('renders empty when the amount of pages is smaller than 2', (pagesCount) => {
const { container } = setUp(pagesCount);
expect(container.firstChild).toEqual(null);
2019-09-22 12:14:08 +03:00
});
describe('ELLIPSIS are rendered where expected', () => {
2020-08-28 21:05:01 +03:00
const getItemsForPages = (pagesCount: number, currentPage: number) => {
setUp(pagesCount, currentPage);
const items = screen.getAllByRole('link');
const itemsWithEllipsis = items.filter((item) => item.innerHTML.includes(ELLIPSIS));
2019-09-22 12:14:08 +03:00
return { items, itemsWithEllipsis };
};
it('renders first ELLIPSIS', () => {
2019-09-22 12:14:08 +03:00
const { items, itemsWithEllipsis } = getItemsForPages(9, 7);
expect(items[1]).toHaveTextContent(ELLIPSIS);
2019-09-22 12:14:08 +03:00
expect(itemsWithEllipsis).toHaveLength(1);
});
it('renders last ELLIPSIS', () => {
2019-09-22 12:14:08 +03:00
const { items, itemsWithEllipsis } = getItemsForPages(9, 2);
expect(items[items.length - 2]).toHaveTextContent(ELLIPSIS);
2019-09-22 12:14:08 +03:00
expect(itemsWithEllipsis).toHaveLength(1);
});
it('renders both ELLIPSIS', () => {
2019-09-22 12:14:08 +03:00
const { items, itemsWithEllipsis } = getItemsForPages(20, 9);
expect(items[1]).toHaveTextContent(ELLIPSIS);
expect(items[items.length - 2]).toHaveTextContent(ELLIPSIS);
2019-09-22 12:14:08 +03:00
expect(itemsWithEllipsis).toHaveLength(2);
});
});
});