mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
93 lines
3.4 KiB
TypeScript
93 lines
3.4 KiB
TypeScript
import { screen } from '@testing-library/react';
|
|
import { fromPartial } from '@total-typescript/shoehorn';
|
|
import type { Settings } from '../../src/settings/reducers/settings';
|
|
import { VisitsSettings } from '../../src/settings/VisitsSettings';
|
|
import { renderWithEvents } from '../__helpers__/setUpTest';
|
|
|
|
describe('<VisitsSettings />', () => {
|
|
const setVisitsSettings = vi.fn();
|
|
const setUp = (settings: Partial<Settings> = {}) => renderWithEvents(
|
|
<VisitsSettings settings={fromPartial(settings)} setVisitsSettings={setVisitsSettings} />,
|
|
);
|
|
|
|
it('renders expected components', () => {
|
|
setUp();
|
|
|
|
expect(screen.getByRole('heading')).toHaveTextContent('Visits');
|
|
expect(screen.getByText('Default interval to load on visits sections:')).toBeInTheDocument();
|
|
expect(screen.getByText(/^Exclude bots wherever possible/)).toBeInTheDocument();
|
|
});
|
|
|
|
it.each([
|
|
[fromPartial<Settings>({}), 'Last 30 days'],
|
|
[fromPartial<Settings>({ visits: {} }), 'Last 30 days'],
|
|
[
|
|
fromPartial<Settings>({
|
|
visits: {
|
|
defaultInterval: 'last7Days',
|
|
},
|
|
}),
|
|
'Last 7 days',
|
|
],
|
|
[
|
|
fromPartial<Settings>({
|
|
visits: {
|
|
defaultInterval: 'today',
|
|
},
|
|
}),
|
|
'Today',
|
|
],
|
|
])('sets expected interval as active', (settings, expectedInterval) => {
|
|
setUp(settings);
|
|
expect(screen.getByRole('button')).toHaveTextContent(expectedInterval);
|
|
});
|
|
|
|
it('invokes setVisitsSettings when interval changes', async () => {
|
|
const { user } = setUp();
|
|
const selectOption = async (name: string) => {
|
|
await user.click(screen.getByRole('button'));
|
|
await user.click(screen.getByRole('menuitem', { name }));
|
|
};
|
|
|
|
await selectOption('Last 7 days');
|
|
await selectOption('Last 180 days');
|
|
await selectOption('Yesterday');
|
|
|
|
expect(setVisitsSettings).toHaveBeenCalledTimes(3);
|
|
expect(setVisitsSettings).toHaveBeenNthCalledWith(1, { defaultInterval: 'last7Days' });
|
|
expect(setVisitsSettings).toHaveBeenNthCalledWith(2, { defaultInterval: 'last180Days' });
|
|
expect(setVisitsSettings).toHaveBeenNthCalledWith(3, { defaultInterval: 'yesterday' });
|
|
});
|
|
|
|
it.each([
|
|
[
|
|
fromPartial<Settings>({}),
|
|
/The visits coming from potential bots will be included.$/,
|
|
/The visits coming from potential bots will be excluded.$/,
|
|
],
|
|
[
|
|
fromPartial<Settings>({ visits: { excludeBots: false } }),
|
|
/The visits coming from potential bots will be included.$/,
|
|
/The visits coming from potential bots will be excluded.$/,
|
|
],
|
|
[
|
|
fromPartial<Settings>({ visits: { excludeBots: true } }),
|
|
/The visits coming from potential bots will be excluded.$/,
|
|
/The visits coming from potential bots will be included.$/,
|
|
],
|
|
])('displays expected helper text for exclude bots control', (settings, expectedText, notExpectedText) => {
|
|
setUp(settings);
|
|
|
|
const visitsComponent = screen.getByText(/^Exclude bots wherever possible/);
|
|
|
|
expect(visitsComponent).toHaveTextContent(expectedText);
|
|
expect(visitsComponent).not.toHaveTextContent(notExpectedText);
|
|
});
|
|
|
|
it('invokes setVisitsSettings when bot exclusion is toggled', async () => {
|
|
const { user } = setUp();
|
|
|
|
await user.click(screen.getByText(/^Exclude bots wherever possible/));
|
|
expect(setVisitsSettings).toHaveBeenCalledWith(expect.objectContaining({ excludeBots: true }));
|
|
});
|
|
});
|