mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-03 14:21:49 +00:00
Refactor and fix main app tests
This commit is contained in:
82
test/common/ShlinkWebComponentContainer.test.tsx
Normal file
82
test/common/ShlinkWebComponentContainer.test.tsx
Normal file
@@ -0,0 +1,82 @@
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import { useParams } from 'react-router-dom';
|
||||
import { ShlinkWebComponentContainer as createContainer } from '../../src/common/ShlinkWebComponentContainer';
|
||||
import type { NonReachableServer, NotFoundServer, SelectedServer } from '../../src/servers/data';
|
||||
|
||||
vi.mock('react-router-dom', async () => ({
|
||||
...(await vi.importActual<any>('react-router-dom')),
|
||||
useParams: vi.fn(),
|
||||
}));
|
||||
|
||||
describe('<ShlinkWebComponentContainer />', () => {
|
||||
const ShlinkWebComponentContainer = createContainer(
|
||||
vi.fn().mockReturnValue(fromPartial({})),
|
||||
() => <>ShlinkWebComponent</>,
|
||||
() => <>ServerError</>,
|
||||
);
|
||||
const setUp = (selectedServer: SelectedServer) => render(
|
||||
<ShlinkWebComponentContainer
|
||||
sidebarNotPresent={vi.fn()}
|
||||
sidebarPresent={vi.fn()}
|
||||
selectServer={vi.fn()}
|
||||
selectedServer={selectedServer}
|
||||
settings={{}}
|
||||
/>,
|
||||
);
|
||||
|
||||
beforeEach(() => {
|
||||
(useParams as any).mockReturnValue({ serverId: 'abc123' });
|
||||
});
|
||||
|
||||
it('shows loading indicator while loading server', () => {
|
||||
setUp(null);
|
||||
|
||||
expect(screen.getByText('Loading...')).toBeInTheDocument();
|
||||
expect(screen.queryByText('ServerError')).not.toBeInTheDocument();
|
||||
expect(screen.queryByText('ShlinkWebComponent')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it.each([
|
||||
[fromPartial<NotFoundServer>({ serverNotFound: true })],
|
||||
[fromPartial<NonReachableServer>({ serverNotReachable: true })],
|
||||
])('shows error for non reachable servers', (selectedServer) => {
|
||||
setUp(selectedServer);
|
||||
|
||||
expect(screen.queryByText('Loading...')).not.toBeInTheDocument();
|
||||
expect(screen.getByText('ServerError')).toBeInTheDocument();
|
||||
expect(screen.queryByText('ShlinkWebComponent')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders ShlinkWebComponent for reachable servers', () => {
|
||||
setUp(fromPartial({ version: '3.0.0' }));
|
||||
|
||||
expect(screen.queryByText('Loading...')).not.toBeInTheDocument();
|
||||
expect(screen.queryByText('ServerError')).not.toBeInTheDocument();
|
||||
expect(screen.getByText('ShlinkWebComponent')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
// FIXME Move this case to ShlinkWebComponent test
|
||||
// it.each([
|
||||
// ['3.0.0' as SemVer, '/overview', 'OverviewRoute'],
|
||||
// ['3.0.0' as SemVer, '/list-short-urls/1', 'ShortUrlsList'],
|
||||
// ['3.0.0' as SemVer, '/create-short-url', 'CreateShortUrl'],
|
||||
// ['3.0.0' as SemVer, '/short-code/abc123/visits/foo', 'ShortUrlVisits'],
|
||||
// ['3.0.0' as SemVer, '/short-code/abc123/edit', 'EditShortUrl'],
|
||||
// ['3.0.0' as SemVer, '/tag/foo/visits/foo', 'TagVisits'],
|
||||
// ['3.0.0' as SemVer, '/orphan-visits/foo', 'OrphanVisits'],
|
||||
// ['3.0.0' as SemVer, '/manage-tags', 'TagsList'],
|
||||
// ['3.0.0' as SemVer, '/not-found', 'Oops! We could not find requested route.'],
|
||||
// ['3.0.0' as SemVer, '/domain/domain.com/visits/foo', 'Oops! We could not find requested route.'],
|
||||
// ['3.1.0' as SemVer, '/domain/domain.com/visits/foo', 'DomainVisits'],
|
||||
// ['2.10.0' as SemVer, '/non-orphan-visits/foo', 'Oops! We could not find requested route.'],
|
||||
// ['3.0.0' as SemVer, '/non-orphan-visits/foo', 'NonOrphanVisits'],
|
||||
// ['2.8.0' as SemVer, '/manage-domains', 'ManageDomains'],
|
||||
// ])(
|
||||
// 'renders expected component based on location and server version',
|
||||
// (version, currentPath, expectedContent) => {
|
||||
// setUp(fromPartial({ version }), currentPath);
|
||||
// expect(screen.getByText(expectedContent)).toBeInTheDocument();
|
||||
// },
|
||||
// );
|
||||
});
|
||||
Reference in New Issue
Block a user