2022-07-10 20:58:27 +03:00
|
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
import { MemoryRouter } from 'react-router-dom';
|
2023-02-18 13:11:01 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
2023-02-18 12:40:37 +03:00
|
|
|
import type { NotFoundServer, ReachableServer } from '../../../src/servers/data';
|
|
|
|
import type { ShortUrl } from '../../../src/short-urls/data';
|
2023-02-18 13:11:01 +03:00
|
|
|
import type { LinkSuffix } from '../../../src/short-urls/helpers/ShortUrlDetailLink';
|
|
|
|
import { ShortUrlDetailLink } from '../../../src/short-urls/helpers/ShortUrlDetailLink';
|
2020-02-08 11:20:19 +03:00
|
|
|
|
2021-03-20 18:32:12 +03:00
|
|
|
describe('<ShortUrlDetailLink />', () => {
|
2020-02-17 20:21:52 +03:00
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
[undefined, undefined],
|
|
|
|
[null, null],
|
|
|
|
[Mock.of<ReachableServer>({ id: '1' }), null],
|
|
|
|
[Mock.of<ReachableServer>({ id: '1' }), undefined],
|
|
|
|
[Mock.of<NotFoundServer>(), Mock.all<ShortUrl>()],
|
|
|
|
[null, Mock.all<ShortUrl>()],
|
|
|
|
[undefined, Mock.all<ShortUrl>()],
|
2020-08-30 10:59:14 +03:00
|
|
|
])('only renders a plain span when either server or short URL are not set', (selectedServer, shortUrl) => {
|
2022-07-10 20:58:27 +03:00
|
|
|
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
|
|
|
|
2022-07-10 20:58:27 +03:00
|
|
|
expect(screen.queryByRole('link')).not.toBeInTheDocument();
|
|
|
|
expect(screen.getByText('Something')).toBeInTheDocument();
|
2020-02-08 11:20:19 +03:00
|
|
|
});
|
|
|
|
|
2020-02-17 20:21:52 +03:00
|
|
|
it.each([
|
2020-02-08 11:20:19 +03:00
|
|
|
[
|
2020-08-30 10:59:14 +03:00
|
|
|
Mock.of<ReachableServer>({ id: '1' }),
|
|
|
|
Mock.of<ShortUrl>({ shortCode: 'abc123' }),
|
2021-03-20 18:32:12 +03:00
|
|
|
'visits' as LinkSuffix,
|
2020-08-30 10:59:14 +03:00
|
|
|
'/server/1/short-code/abc123/visits',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Mock.of<ReachableServer>({ id: '3' }),
|
|
|
|
Mock.of<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
|
|
|
[
|
|
|
|
Mock.of<ReachableServer>({ id: '1' }),
|
|
|
|
Mock.of<ShortUrl>({ shortCode: 'abc123' }),
|
|
|
|
'edit' as LinkSuffix,
|
|
|
|
'/server/1/short-code/abc123/edit',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Mock.of<ReachableServer>({ id: '3' }),
|
|
|
|
Mock.of<ShortUrl>({ shortCode: 'def456', domain: 'example.com' }),
|
|
|
|
'edit' as LinkSuffix,
|
|
|
|
'/server/3/short-code/def456/edit?domain=example.com',
|
|
|
|
],
|
|
|
|
])('renders link with expected query when', (selectedServer, shortUrl, suffix, expectedLink) => {
|
2022-07-10 20:58:27 +03:00
|
|
|
render(
|
|
|
|
<MemoryRouter>
|
|
|
|
<ShortUrlDetailLink selectedServer={selectedServer} shortUrl={shortUrl} suffix={suffix}>
|
|
|
|
Something
|
|
|
|
</ShortUrlDetailLink>
|
|
|
|
</MemoryRouter>,
|
2021-03-20 18:32:12 +03:00
|
|
|
);
|
2022-07-10 20:58:27 +03:00
|
|
|
expect(screen.getByRole('link')).toHaveProperty('href', expect.stringContaining(expectedLink));
|
2020-02-08 11:20:19 +03:00
|
|
|
});
|
|
|
|
});
|