mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-08 17:27:32 +03:00
Migrated ShlinkApiError test from enzyme to react testing library
This commit is contained in:
parent
337bfc47c1
commit
e8a5eadd2b
1 changed files with 7 additions and 15 deletions
|
@ -1,26 +1,20 @@
|
|||
import { shallow, ShallowWrapper } from 'enzyme';
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import { Mock } from 'ts-mockery';
|
||||
import { ShlinkApiError, ShlinkApiErrorProps } from '../../src/api/ShlinkApiError';
|
||||
import { InvalidArgumentError, ProblemDetailsError } from '../../src/api/types';
|
||||
|
||||
describe('<ShlinkApiError />', () => {
|
||||
let commonWrapper: ShallowWrapper;
|
||||
const createWrapper = (props: ShlinkApiErrorProps) => {
|
||||
commonWrapper = shallow(<ShlinkApiError {...props} />);
|
||||
|
||||
return commonWrapper;
|
||||
};
|
||||
|
||||
afterEach(() => commonWrapper?.unmount());
|
||||
const setUp = (props: ShlinkApiErrorProps) => render(<ShlinkApiError {...props} />);
|
||||
|
||||
it.each([
|
||||
[undefined, 'the fallback', 'the fallback'],
|
||||
[Mock.all<ProblemDetailsError>(), 'the fallback', 'the fallback'],
|
||||
[Mock.of<ProblemDetailsError>({ detail: 'the detail' }), 'the fallback', 'the detail'],
|
||||
])('renders proper message', (errorData, fallbackMessage, expectedMessage) => {
|
||||
const wrapper = createWrapper({ errorData, fallbackMessage });
|
||||
const { container } = setUp({ errorData, fallbackMessage });
|
||||
|
||||
expect(wrapper.text()).toContain(expectedMessage);
|
||||
expect(container.firstChild).toHaveTextContent(expectedMessage);
|
||||
expect(screen.queryByRole('paragraph')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it.each([
|
||||
|
@ -28,9 +22,7 @@ describe('<ShlinkApiError />', () => {
|
|||
[Mock.all<ProblemDetailsError>(), 0],
|
||||
[Mock.of<InvalidArgumentError>({ type: 'INVALID_ARGUMENT', invalidElements: [] }), 1],
|
||||
])('renders list of invalid elements when provided error is an InvalidError', (errorData, expectedElementsCount) => {
|
||||
const wrapper = createWrapper({ errorData });
|
||||
const p = wrapper.find('p');
|
||||
|
||||
expect(p).toHaveLength(expectedElementsCount);
|
||||
setUp({ errorData });
|
||||
expect(screen.queryAllByText(/^Invalid elements/)).toHaveLength(expectedElementsCount);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue