mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-12 18:43:50 +00:00
Migrated ShortUrlVisitsCount test to react testing library
This commit is contained in:
@@ -1,43 +1,28 @@
|
|||||||
import { shallow, ShallowWrapper } from 'enzyme';
|
import { render } from '@testing-library/react';
|
||||||
import { UncontrolledTooltip } from 'reactstrap';
|
|
||||||
import { Mock } from 'ts-mockery';
|
import { Mock } from 'ts-mockery';
|
||||||
import { ShortUrlVisitsCount } from '../../../src/short-urls/helpers/ShortUrlVisitsCount';
|
import { ShortUrlVisitsCount } from '../../../src/short-urls/helpers/ShortUrlVisitsCount';
|
||||||
import { ShortUrl } from '../../../src/short-urls/data';
|
import { ShortUrl } from '../../../src/short-urls/data';
|
||||||
|
|
||||||
describe('<ShortUrlVisitsCount />', () => {
|
describe('<ShortUrlVisitsCount />', () => {
|
||||||
let wrapper: ShallowWrapper;
|
const setUp = (visitsCount: number, shortUrl: ShortUrl) => render(
|
||||||
|
<ShortUrlVisitsCount visitsCount={visitsCount} shortUrl={shortUrl} />,
|
||||||
const createWrapper = (visitsCount: number, shortUrl: ShortUrl) => {
|
);
|
||||||
wrapper = shallow(<ShortUrlVisitsCount visitsCount={visitsCount} shortUrl={shortUrl} />);
|
|
||||||
|
|
||||||
return wrapper;
|
|
||||||
};
|
|
||||||
|
|
||||||
afterEach(() => wrapper?.unmount());
|
|
||||||
|
|
||||||
it.each([undefined, {}])('just returns visits when no maxVisits is provided', (meta) => {
|
it.each([undefined, {}])('just returns visits when no maxVisits is provided', (meta) => {
|
||||||
const visitsCount = 45;
|
const visitsCount = 45;
|
||||||
const wrapper = createWrapper(visitsCount, Mock.of<ShortUrl>({ meta }));
|
const { container } = setUp(visitsCount, Mock.of<ShortUrl>({ meta }));
|
||||||
const maxVisitsHelper = wrapper.find('.short-urls-visits-count__max-visits-control');
|
|
||||||
const maxVisitsTooltip = wrapper.find(UncontrolledTooltip);
|
|
||||||
|
|
||||||
expect(wrapper.html()).toEqual(
|
expect(container.firstChild).toHaveTextContent(`${visitsCount}`);
|
||||||
`<span><strong class="short-url-visits-count__amount">${visitsCount}</strong></span>`,
|
expect(container.querySelector('.short-urls-visits-count__max-visits-control')).not.toBeInTheDocument();
|
||||||
);
|
|
||||||
expect(maxVisitsHelper).toHaveLength(0);
|
|
||||||
expect(maxVisitsTooltip).toHaveLength(0);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('displays the maximum amount of visits when present', () => {
|
it('displays the maximum amount of visits when present', () => {
|
||||||
const visitsCount = 45;
|
const visitsCount = 45;
|
||||||
const maxVisits = 500;
|
const maxVisits = 500;
|
||||||
const meta = { maxVisits };
|
const meta = { maxVisits };
|
||||||
const wrapper = createWrapper(visitsCount, Mock.of<ShortUrl>({ meta }));
|
const { container } = setUp(visitsCount, Mock.of<ShortUrl>({ meta }));
|
||||||
const maxVisitsHelper = wrapper.find('.short-urls-visits-count__max-visits-control');
|
|
||||||
const maxVisitsTooltip = wrapper.find(UncontrolledTooltip);
|
|
||||||
|
|
||||||
expect(wrapper.html()).toContain(`/ ${maxVisits}`);
|
expect(container.firstChild).toHaveTextContent(`/ ${maxVisits}`);
|
||||||
expect(maxVisitsHelper).toHaveLength(1);
|
expect(container.querySelector('.short-urls-visits-count__max-visits-control')).toBeInTheDocument();
|
||||||
expect(maxVisitsTooltip).toHaveLength(1);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user