2022-07-10 00:03:21 +03:00
|
|
|
import { screen } from '@testing-library/react';
|
2023-04-13 23:47:13 +03:00
|
|
|
import { fromPartial } from '@total-typescript/shoehorn';
|
2023-02-18 13:11:01 +03:00
|
|
|
import { formatISO } from 'date-fns';
|
2022-05-01 17:52:33 +03:00
|
|
|
import { MemoryRouter } from 'react-router-dom';
|
2023-02-18 12:40:37 +03:00
|
|
|
import type { MercureBoundProps } from '../../src/mercure/helpers/boundToMercureHub';
|
2023-02-18 13:11:01 +03:00
|
|
|
import { NonOrphanVisits as createNonOrphanVisits } from '../../src/visits/NonOrphanVisits';
|
2023-02-18 12:40:37 +03:00
|
|
|
import type { VisitsInfo } from '../../src/visits/reducers/types';
|
2023-02-18 13:11:01 +03:00
|
|
|
import { renderWithEvents } from '../__helpers__/setUpTest';
|
2022-02-05 18:37:01 +03:00
|
|
|
|
|
|
|
describe('<NonOrphanVisits />', () => {
|
2022-05-01 17:52:33 +03:00
|
|
|
const exportVisits = jest.fn();
|
|
|
|
const getNonOrphanVisits = jest.fn();
|
|
|
|
const cancelGetNonOrphanVisits = jest.fn();
|
2023-04-13 23:47:13 +03:00
|
|
|
const nonOrphanVisits = fromPartial<VisitsInfo>({ visits: [{ date: formatISO(new Date()) }] });
|
|
|
|
const NonOrphanVisits = createNonOrphanVisits(fromPartial({ exportVisits }));
|
2022-07-10 00:03:21 +03:00
|
|
|
const setUp = () => renderWithEvents(
|
|
|
|
<MemoryRouter>
|
|
|
|
<NonOrphanVisits
|
2023-04-13 23:47:13 +03:00
|
|
|
{...fromPartial<MercureBoundProps>({ mercureInfo: {} })}
|
2022-07-10 00:03:21 +03:00
|
|
|
getNonOrphanVisits={getNonOrphanVisits}
|
|
|
|
cancelGetNonOrphanVisits={cancelGetNonOrphanVisits}
|
|
|
|
nonOrphanVisits={nonOrphanVisits}
|
2023-04-13 23:47:13 +03:00
|
|
|
settings={fromPartial({})}
|
2022-07-10 00:03:21 +03:00
|
|
|
/>
|
|
|
|
</MemoryRouter>,
|
|
|
|
);
|
2022-05-01 17:52:33 +03:00
|
|
|
|
|
|
|
it('wraps visits stats and header', () => {
|
2022-05-11 20:18:43 +03:00
|
|
|
setUp();
|
2022-05-01 17:52:33 +03:00
|
|
|
expect(screen.getByRole('heading', { name: 'Non-orphan visits' })).toBeInTheDocument();
|
|
|
|
expect(getNonOrphanVisits).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-05-11 20:18:43 +03:00
|
|
|
it('exports visits when clicking the button', async () => {
|
|
|
|
const { user } = setUp();
|
2022-05-01 17:52:33 +03:00
|
|
|
const btn = screen.getByRole('button', { name: 'Export (1)' });
|
|
|
|
|
|
|
|
expect(exportVisits).not.toHaveBeenCalled();
|
|
|
|
expect(btn).toBeInTheDocument();
|
2022-02-05 18:37:01 +03:00
|
|
|
|
2022-05-11 20:18:43 +03:00
|
|
|
await user.click(btn);
|
2022-05-01 17:52:33 +03:00
|
|
|
expect(exportVisits).toHaveBeenCalledWith('non_orphan_visits.csv', expect.anything());
|
2022-02-05 18:37:01 +03:00
|
|
|
});
|
|
|
|
});
|