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

44 lines
1.6 KiB
TypeScript
Raw Normal View History

import { render, screen } from '@testing-library/react';
import { fromPartial } from '@total-typescript/shoehorn';
2023-09-05 10:08:42 +03:00
import type { PropsWithChildren } from 'react';
import { ErrorHandler as BaseErrorHandler } from '../../src/common/ErrorHandler';
2022-07-10 20:44:49 +03:00
import { renderWithEvents } from '../__helpers__/setUpTest';
const ComponentWithError = () => {
throw new Error('Error!!');
};
2019-03-04 22:49:18 +03:00
describe('<ErrorHandler />', () => {
2023-05-27 12:57:26 +03:00
const reload = vi.fn();
2023-09-05 10:08:42 +03:00
const location = fromPartial<Window['location']>({ reload });
2023-05-27 12:57:26 +03:00
const cons = fromPartial<Console>({ error: vi.fn() });
2023-09-05 10:08:42 +03:00
const ErrorHandler = (props: PropsWithChildren) => <BaseErrorHandler console={cons} location={location} {...props} />;
2019-03-04 22:49:18 +03:00
beforeEach(() => {
2023-05-27 12:57:26 +03:00
vi.spyOn(console, 'error').mockImplementation(() => {}); // Silence react errors
2019-03-04 22:49:18 +03:00
});
it('renders children when no error has occurred', () => {
2023-09-05 10:08:42 +03:00
render(<ErrorHandler><span>Foo</span></ErrorHandler>);
expect(screen.getByText('Foo')).toBeInTheDocument();
expect(screen.queryByText('Oops! This is awkward :S')).not.toBeInTheDocument();
expect(screen.queryByRole('button')).not.toBeInTheDocument();
2019-03-04 22:49:18 +03:00
});
it('renders error page when error has occurred', () => {
2023-09-05 10:08:42 +03:00
render(<ErrorHandler><ComponentWithError /></ErrorHandler>);
expect(screen.getByText('Oops! This is awkward :S')).toBeInTheDocument();
expect(screen.getByRole('button')).toBeInTheDocument();
});
it('reloads page on button click', async () => {
2023-09-05 10:08:42 +03:00
const { user } = renderWithEvents(<ErrorHandler><ComponentWithError /></ErrorHandler>);
2019-03-04 22:49:18 +03:00
expect(reload).not.toHaveBeenCalled();
await user.click(screen.getByRole('button'));
expect(reload).toHaveBeenCalled();
2019-03-04 22:49:18 +03:00
});
});