2022-07-15 23:11:13 +03:00
|
|
|
import { screen } from '@testing-library/react';
|
2020-08-30 10:59:14 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
2022-07-15 23:11:13 +03:00
|
|
|
import { MemoryRouter } from 'react-router-dom';
|
2022-05-28 12:16:59 +03:00
|
|
|
import { ShortUrlsRowMenu as createShortUrlsRowMenu } from '../../../src/short-urls/helpers/ShortUrlsRowMenu';
|
2020-08-30 10:59:14 +03:00
|
|
|
import { ReachableServer } from '../../../src/servers/data';
|
|
|
|
import { ShortUrl } from '../../../src/short-urls/data';
|
2022-07-15 23:11:13 +03:00
|
|
|
import { renderWithEvents } from '../../__helpers__/setUpTest';
|
2019-01-13 15:08:47 +03:00
|
|
|
|
|
|
|
describe('<ShortUrlsRowMenu />', () => {
|
2022-07-15 23:11:13 +03:00
|
|
|
const ShortUrlsRowMenu = createShortUrlsRowMenu(() => <i>DeleteShortUrlModal</i>, () => <i>QrCodeModal</i>);
|
2020-08-30 10:59:14 +03:00
|
|
|
const selectedServer = Mock.of<ReachableServer>({ id: 'abc123' });
|
|
|
|
const shortUrl = Mock.of<ShortUrl>({
|
2019-01-13 15:08:47 +03:00
|
|
|
shortCode: 'abc123',
|
|
|
|
shortUrl: 'https://doma.in/abc123',
|
2020-08-30 10:59:14 +03:00
|
|
|
});
|
2022-07-15 23:11:13 +03:00
|
|
|
const setUp = () => renderWithEvents(
|
|
|
|
<MemoryRouter>
|
|
|
|
<ShortUrlsRowMenu selectedServer={selectedServer} shortUrl={shortUrl} />
|
|
|
|
</MemoryRouter>,
|
|
|
|
);
|
2019-01-13 15:08:47 +03:00
|
|
|
|
|
|
|
it('renders modal windows', () => {
|
2022-07-15 23:11:13 +03:00
|
|
|
setUp();
|
2019-01-13 15:08:47 +03:00
|
|
|
|
2022-07-15 23:11:13 +03:00
|
|
|
expect(screen.getByText('DeleteShortUrlModal')).toBeInTheDocument();
|
|
|
|
expect(screen.getByText('QrCodeModal')).toBeInTheDocument();
|
2019-01-13 15:08:47 +03:00
|
|
|
});
|
|
|
|
|
2022-07-15 23:11:13 +03:00
|
|
|
it('renders correct amount of menu items', async () => {
|
|
|
|
const { user } = setUp();
|
2019-01-13 15:08:47 +03:00
|
|
|
|
2022-07-15 23:11:13 +03:00
|
|
|
await user.click(screen.getByRole('button'));
|
|
|
|
expect(screen.getAllByRole('menuitem')).toHaveLength(4);
|
2019-01-13 15:08:47 +03:00
|
|
|
});
|
|
|
|
});
|