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

47 lines
1.3 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
jest.mock('react-router-dom', () => ({
...jest.requireActual('react-router-dom'),
useNavigate: jest.fn().mockReturnValue(jest.fn()),
}));
2018-08-12 09:20:35 +03:00
describe('<Home />', () => {
let wrapped: ShallowWrapper;
const createComponent = (props: Partial<HomeProps> = {}) => {
const actualProps = { resetSelectedServer: jest.fn(), servers: {}, ...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 ],
2020-12-20 14:17:12 +03:00
])('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
});