shlink-web-client/shlink-web-component/test/visits/OrphanVisits.test.tsx

46 lines
1.7 KiB
TypeScript
Raw Normal View History

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';
import { MemoryRouter } from 'react-router-dom';
import type { MercureBoundProps } from '../../src/mercure/helpers/boundToMercureHub';
2023-08-04 12:16:01 +03:00
import { SettingsProvider } from '../../src/utils/settings';
import { OrphanVisits as createOrphanVisits } from '../../src/visits/OrphanVisits';
import type { VisitsInfo } from '../../src/visits/reducers/types';
2023-02-18 13:11:01 +03:00
import { renderWithEvents } from '../__helpers__/setUpTest';
2021-02-28 12:36:56 +03:00
describe('<OrphanVisits />', () => {
2023-05-27 12:57:26 +03:00
const getOrphanVisits = vi.fn();
const exportVisits = vi.fn();
2023-04-13 23:47:13 +03:00
const orphanVisits = fromPartial<VisitsInfo>({ visits: [{ date: formatISO(new Date()) }] });
const OrphanVisits = createOrphanVisits(fromPartial({ exportVisits }));
const setUp = () => renderWithEvents(
<MemoryRouter>
2023-08-04 12:16:01 +03:00
<SettingsProvider value={fromPartial({})}>
<OrphanVisits
{...fromPartial<MercureBoundProps>({ mercureInfo: {} })}
getOrphanVisits={getOrphanVisits}
orphanVisits={orphanVisits}
cancelGetOrphanVisits={vi.fn()}
/>
</SettingsProvider>
</MemoryRouter>,
);
2021-02-28 12:36:56 +03:00
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)' });
2021-02-28 12:36:56 +03:00
expect(exportVisits).not.toHaveBeenCalled();
expect(btn).toBeInTheDocument();
2021-02-28 12:36:56 +03:00
await user.click(btn);
expect(exportVisits).toHaveBeenCalledWith('orphan_visits.csv', expect.anything());
2021-02-28 12:36:56 +03:00
});
});