shlink-web-client/test/short-urls/helpers/ShortUrlDetailLink.test.tsx

65 lines
2.5 KiB
TypeScript
Raw Normal View History

import { render, screen } from '@testing-library/react';
import { fromPartial } from '@total-typescript/shoehorn';
import { MemoryRouter } from 'react-router-dom';
2023-02-18 12:40:37 +03:00
import type { NotFoundServer, ReachableServer } from '../../../src/servers/data';
import type { ShortUrl } from '../../../src/shlink-web-component/short-urls/data';
import type { LinkSuffix } from '../../../src/shlink-web-component/short-urls/helpers/ShortUrlDetailLink';
import { ShortUrlDetailLink } from '../../../src/shlink-web-component/short-urls/helpers/ShortUrlDetailLink';
2020-02-08 11:20:19 +03:00
2021-03-20 18:32:12 +03:00
describe('<ShortUrlDetailLink />', () => {
it.each([
2022-03-26 14:17:42 +03:00
[undefined, undefined],
[null, null],
[fromPartial<ReachableServer>({ id: '1' }), null],
[fromPartial<ReachableServer>({ id: '1' }), undefined],
[fromPartial<NotFoundServer>({}), fromPartial<ShortUrl>({})],
[null, fromPartial<ShortUrl>({})],
[undefined, fromPartial<ShortUrl>({})],
])('only renders a plain span when either server or short URL are not set', (selectedServer, shortUrl) => {
render(
2021-03-20 18:32:12 +03:00
<ShortUrlDetailLink selectedServer={selectedServer} shortUrl={shortUrl} suffix="visits">
Something
</ShortUrlDetailLink>,
);
2020-02-08 11:20:19 +03:00
expect(screen.queryByRole('link')).not.toBeInTheDocument();
expect(screen.getByText('Something')).toBeInTheDocument();
2020-02-08 11:20:19 +03:00
});
it.each([
2020-02-08 11:20:19 +03:00
[
fromPartial<ReachableServer>({ id: '1' }),
fromPartial<ShortUrl>({ shortCode: 'abc123' }),
2021-03-20 18:32:12 +03:00
'visits' as LinkSuffix,
'/server/1/short-code/abc123/visits',
],
[
fromPartial<ReachableServer>({ id: '3' }),
fromPartial<ShortUrl>({ shortCode: 'def456', domain: 'example.com' }),
2021-03-20 18:32:12 +03:00
'visits' as LinkSuffix,
2020-02-08 11:20:19 +03:00
'/server/3/short-code/def456/visits?domain=example.com',
],
2021-03-20 18:32:12 +03:00
[
fromPartial<ReachableServer>({ id: '1' }),
fromPartial<ShortUrl>({ shortCode: 'abc123' }),
2021-03-20 18:32:12 +03:00
'edit' as LinkSuffix,
'/server/1/short-code/abc123/edit',
],
[
fromPartial<ReachableServer>({ id: '3' }),
fromPartial<ShortUrl>({ shortCode: 'def456', domain: 'example.com' }),
2021-03-20 18:32:12 +03:00
'edit' as LinkSuffix,
'/server/3/short-code/def456/edit?domain=example.com',
],
])('renders link with expected query when', (selectedServer, shortUrl, suffix, expectedLink) => {
render(
<MemoryRouter>
<ShortUrlDetailLink selectedServer={selectedServer} shortUrl={shortUrl} suffix={suffix}>
Something
</ShortUrlDetailLink>
</MemoryRouter>,
2021-03-20 18:32:12 +03:00
);
expect(screen.getByRole('link')).toHaveProperty('href', expect.stringContaining(expectedLink));
2020-02-08 11:20:19 +03:00
});
});