mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 01:20:24 +03:00
Added Message test
This commit is contained in:
parent
5cf0c86a14
commit
c25355c531
2 changed files with 65 additions and 1 deletions
|
@ -23,7 +23,7 @@ const getTextClassForType = (type: MessageType) => {
|
||||||
return map[type];
|
return map[type];
|
||||||
};
|
};
|
||||||
|
|
||||||
interface MessageProps {
|
export interface MessageProps {
|
||||||
className?: string;
|
className?: string;
|
||||||
loading?: boolean;
|
loading?: boolean;
|
||||||
fullWidth?: boolean;
|
fullWidth?: boolean;
|
||||||
|
|
64
test/utils/Message.test.tsx
Normal file
64
test/utils/Message.test.tsx
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
import { shallow, ShallowWrapper } from 'enzyme';
|
||||||
|
import { PropsWithChildren } from 'react';
|
||||||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||||
|
import { Card } from 'reactstrap';
|
||||||
|
import Message, { MessageProps } from '../../src/utils/Message';
|
||||||
|
|
||||||
|
describe('<Message />', () => {
|
||||||
|
let wrapper: ShallowWrapper;
|
||||||
|
const createWrapper = (props: PropsWithChildren<MessageProps> = {}) => {
|
||||||
|
wrapper = shallow(<Message {...props} />);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
};
|
||||||
|
|
||||||
|
afterEach(() => wrapper?.unmount());
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
[ true, 1, 0 ],
|
||||||
|
[ false, 0, 1 ],
|
||||||
|
[ undefined, 0, 1 ],
|
||||||
|
])('renders expected classes based on width', (fullWidth, expectedFull, expectedNonFull) => {
|
||||||
|
const wrapper = createWrapper({ fullWidth });
|
||||||
|
|
||||||
|
expect(wrapper.find('.col-md-12')).toHaveLength(expectedFull);
|
||||||
|
expect(wrapper.find('.col-md-10')).toHaveLength(expectedNonFull);
|
||||||
|
});
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
[ true, 'These are the children contents' ],
|
||||||
|
[ false, 'These are the children contents' ],
|
||||||
|
[ true, undefined ],
|
||||||
|
[ false, undefined ],
|
||||||
|
])('renders expected content', (loading, children) => {
|
||||||
|
const wrapper = createWrapper({ loading, children });
|
||||||
|
|
||||||
|
expect(wrapper.find(FontAwesomeIcon)).toHaveLength(loading ? 1 : 0);
|
||||||
|
|
||||||
|
if (loading) {
|
||||||
|
expect(wrapper.find('span').text()).toContain(children ? children : 'Loading...');
|
||||||
|
} else {
|
||||||
|
expect(wrapper.find('span')).toHaveLength(0);
|
||||||
|
expect(wrapper.find('h3').text()).toContain(children ? children : '');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
[ 'error', 'border-danger', 'text-danger' ],
|
||||||
|
[ 'default', '', 'text-muted' ],
|
||||||
|
[ undefined, '', 'text-muted' ],
|
||||||
|
])('renders proper classes based on message type', (type, expectedCardClass, expectedH3Class) => {
|
||||||
|
const wrapper = createWrapper({ type: type as 'default' | 'error' | undefined });
|
||||||
|
const card = wrapper.find(Card);
|
||||||
|
const h3 = wrapper.find('h3');
|
||||||
|
|
||||||
|
expect(card.prop('className')).toEqual(expectedCardClass);
|
||||||
|
expect(h3.prop('className')).toEqual(`text-center mb-0 ${expectedH3Class}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it.each([{ className: 'foo' }, { className: 'bar' }, {}])('renders provided classes', ({ className }) => {
|
||||||
|
const wrapper = createWrapper({ className });
|
||||||
|
|
||||||
|
expect(wrapper.prop('className')).toEqual(className);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue