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

33 lines
1.2 KiB
TypeScript
Raw Normal View History

import { render, screen } from '@testing-library/react';
2023-05-27 12:57:26 +03:00
import { MemoryRouter } from 'react-router';
import { NotFound } from '../../src/common/NotFound';
2019-03-03 13:02:29 +03:00
describe('<NotFound />', () => {
const setUp = (props = {}) => render(<MemoryRouter><NotFound {...props} /></MemoryRouter>);
2019-03-03 13:02:29 +03:00
it('shows expected error title', () => {
setUp();
expect(screen.getByText('Oops! We could not find requested route.')).toBeInTheDocument();
});
it('shows expected error message', () => {
setUp();
expect(screen.getByText(
2020-08-22 09:10:31 +03:00
'Use your browser\'s back button to navigate to the page you have previously come from, or just press this button.',
)).toBeInTheDocument();
});
2019-03-03 13:02:29 +03:00
it.each([
[{}, '/', 'Home'],
[{ to: '/foo/bar', children: 'Hello' }, '/foo/bar', 'Hello'],
[{ to: '/baz-bar', children: <>Foo</> }, '/baz-bar', 'Foo'],
])('shows expected link and text', (props, expectedLink, expectedText) => {
setUp(props);
const link = screen.getByRole('link');
expect(link).toHaveAttribute('href', expectedLink);
expect(link).toHaveTextContent(expectedText);
expect(link).toHaveAttribute('class', 'btn btn-outline-primary btn-lg');
2019-03-03 13:02:29 +03:00
});
});