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

46 lines
1.2 KiB
TypeScript
Raw Normal View History

import { shallow, ShallowWrapper } from 'enzyme';
import { Mock } from 'ts-mockery';
import Home, { HomeProps } from '../../src/common/Home';
import { ServerWithId } from '../../src/servers/data';
2020-12-20 14:17:12 +03:00
import { ShlinkLogo } from '../../src/common/img/ShlinkLogo';
2018-08-12 09:20:35 +03:00
describe('<Home />', () => {
let wrapped: ShallowWrapper;
2018-08-12 09:20:35 +03:00
const defaultProps = {
resetSelectedServer: jest.fn(),
2020-04-27 11:49:55 +03:00
servers: {},
2018-08-12 09:20:35 +03:00
};
const createComponent = (props: Partial<HomeProps> = {}) => {
2018-08-12 09:20:35 +03:00
const actualProps = { ...defaultProps, ...props };
wrapped = shallow(<Home {...actualProps} />);
2018-08-12 09:20:35 +03:00
return wrapped;
};
afterEach(() => wrapped?.unmount());
2018-08-12 09:20:35 +03:00
2020-12-20 14:17:12 +03:00
it('renders logo and title', () => {
2018-08-12 09:20:35 +03:00
const wrapped = createComponent();
2020-12-20 14:17:12 +03:00
expect(wrapped.find(ShlinkLogo)).toHaveLength(1);
expect(wrapped.find('.home__title')).toHaveLength(1);
2018-08-12 09:20:35 +03:00
});
2020-12-20 14:17:12 +03:00
it.each([
[
{
'1a': Mock.of<ServerWithId>({ name: 'foo', id: '1' }),
'2b': Mock.of<ServerWithId>({ name: 'bar', id: '2' }),
},
0,
],
[{}, 3 ],
])('shows link to create or set-up server only when no servers exist', (servers, expectedParagraphs) => {
2020-04-27 11:49:55 +03:00
const wrapped = createComponent({ servers });
2020-12-20 14:17:12 +03:00
const p = wrapped.find('p');
2020-12-20 14:17:12 +03:00
expect(p).toHaveLength(expectedParagraphs);
});
2018-08-12 09:20:35 +03:00
});