mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
47 lines
1.9 KiB
TypeScript
47 lines
1.9 KiB
TypeScript
import { screen } from '@testing-library/react';
|
|
import { MemoryRouter } from 'react-router-dom';
|
|
import { Mock } from 'ts-mockery';
|
|
import { formatISO } from 'date-fns';
|
|
import { OrphanVisits as createOrphanVisits } from '../../src/visits/OrphanVisits';
|
|
import { MercureBoundProps } from '../../src/mercure/helpers/boundToMercureHub';
|
|
import { Visit, VisitsInfo } from '../../src/visits/types';
|
|
import { Settings } from '../../src/settings/reducers/settings';
|
|
import { ReportExporter } from '../../src/common/services/ReportExporter';
|
|
import { SelectedServer } from '../../src/servers/data';
|
|
import { renderWithEvents } from '../__helpers__/setUpTest';
|
|
|
|
describe('<OrphanVisits />', () => {
|
|
const getOrphanVisits = jest.fn();
|
|
const exportVisits = jest.fn();
|
|
const orphanVisits = Mock.of<VisitsInfo>({ visits: [Mock.of<Visit>({ date: formatISO(new Date()) })] });
|
|
const OrphanVisits = createOrphanVisits(Mock.of<ReportExporter>({ exportVisits }));
|
|
const setUp = () => renderWithEvents(
|
|
<MemoryRouter>
|
|
<OrphanVisits
|
|
{...Mock.of<MercureBoundProps>({ mercureInfo: {} })}
|
|
getOrphanVisits={getOrphanVisits}
|
|
orphanVisits={orphanVisits}
|
|
cancelGetOrphanVisits={jest.fn()}
|
|
settings={Mock.all<Settings>()}
|
|
selectedServer={Mock.all<SelectedServer>()}
|
|
/>
|
|
</MemoryRouter>,
|
|
);
|
|
|
|
it('wraps visits stats and header', () => {
|
|
setUp();
|
|
expect(screen.getByRole('heading', { name: 'Orphan visits' })).toBeInTheDocument();
|
|
expect(getOrphanVisits).toHaveBeenCalled();
|
|
});
|
|
|
|
it('exports visits when clicking the button', async () => {
|
|
const { user } = setUp();
|
|
const btn = screen.getByRole('button', { name: 'Export (1)' });
|
|
|
|
expect(exportVisits).not.toHaveBeenCalled();
|
|
expect(btn).toBeInTheDocument();
|
|
|
|
await user.click(btn);
|
|
expect(exportVisits).toHaveBeenCalledWith('orphan_visits.csv', expect.anything());
|
|
});
|
|
});
|