2021-02-28 12:45:14 +03:00
|
|
|
import { Mock } from 'ts-mockery';
|
2021-12-23 12:38:02 +03:00
|
|
|
import { addDays, formatISO, subDays } from 'date-fns';
|
2021-02-28 12:45:14 +03:00
|
|
|
import reducer, {
|
|
|
|
getOrphanVisits,
|
|
|
|
cancelGetOrphanVisits,
|
|
|
|
GET_ORPHAN_VISITS_START,
|
|
|
|
GET_ORPHAN_VISITS_ERROR,
|
|
|
|
GET_ORPHAN_VISITS,
|
|
|
|
GET_ORPHAN_VISITS_LARGE,
|
|
|
|
GET_ORPHAN_VISITS_CANCEL,
|
|
|
|
GET_ORPHAN_VISITS_PROGRESS_CHANGED,
|
2021-12-23 12:38:02 +03:00
|
|
|
GET_ORPHAN_VISITS_FALLBACK_TO_INTERVAL,
|
2021-02-28 12:45:14 +03:00
|
|
|
} from '../../../src/visits/reducers/orphanVisits';
|
|
|
|
import { rangeOf } from '../../../src/utils/utils';
|
2022-11-12 11:18:37 +03:00
|
|
|
import { Visit } from '../../../src/visits/types';
|
2021-02-28 12:45:14 +03:00
|
|
|
import { ShlinkVisits } from '../../../src/api/types';
|
2022-05-28 11:47:39 +03:00
|
|
|
import { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
|
2021-02-28 12:45:14 +03:00
|
|
|
import { ShlinkState } from '../../../src/container/types';
|
2021-10-24 23:37:14 +03:00
|
|
|
import { formatIsoDate } from '../../../src/utils/helpers/date';
|
2021-12-23 12:38:02 +03:00
|
|
|
import { DateInterval } from '../../../src/utils/dates/types';
|
2022-11-08 00:29:15 +03:00
|
|
|
import { createNewVisits } from '../../../src/visits/reducers/visitCreation';
|
2022-11-12 11:18:37 +03:00
|
|
|
import { VisitsInfo } from '../../../src/visits/reducers/types';
|
2021-02-28 12:45:14 +03:00
|
|
|
|
|
|
|
describe('orphanVisitsReducer', () => {
|
2021-10-24 23:37:14 +03:00
|
|
|
const now = new Date();
|
2021-02-28 12:45:14 +03:00
|
|
|
const visitsMocks = rangeOf(2, () => Mock.all<Visit>());
|
|
|
|
|
|
|
|
describe('reducer', () => {
|
|
|
|
const buildState = (data: Partial<VisitsInfo>) => Mock.of<VisitsInfo>(data);
|
|
|
|
|
|
|
|
it('returns loading on GET_ORPHAN_VISITS_START', () => {
|
|
|
|
const state = reducer(buildState({ loading: false }), { type: GET_ORPHAN_VISITS_START } as any);
|
|
|
|
const { loading } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns loadingLarge on GET_ORPHAN_VISITS_LARGE', () => {
|
|
|
|
const state = reducer(buildState({ loadingLarge: false }), { type: GET_ORPHAN_VISITS_LARGE } as any);
|
|
|
|
const { loadingLarge } = state;
|
|
|
|
|
|
|
|
expect(loadingLarge).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns cancelLoad on GET_ORPHAN_VISITS_CANCEL', () => {
|
|
|
|
const state = reducer(buildState({ cancelLoad: false }), { type: GET_ORPHAN_VISITS_CANCEL } as any);
|
|
|
|
const { cancelLoad } = state;
|
|
|
|
|
|
|
|
expect(cancelLoad).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('stops loading and returns error on GET_ORPHAN_VISITS_ERROR', () => {
|
|
|
|
const state = reducer(buildState({ loading: true, error: false }), { type: GET_ORPHAN_VISITS_ERROR } as any);
|
|
|
|
const { loading, error } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(false);
|
|
|
|
expect(error).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('return visits on GET_ORPHAN_VISITS', () => {
|
|
|
|
const actionVisits = [{}, {}];
|
2022-11-12 12:33:52 +03:00
|
|
|
const state = reducer(buildState({ loading: true, error: false }), {
|
|
|
|
type: GET_ORPHAN_VISITS,
|
|
|
|
payload: { visits: actionVisits },
|
|
|
|
} as any);
|
2021-02-28 12:45:14 +03:00
|
|
|
const { loading, error, visits } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(false);
|
|
|
|
expect(error).toEqual(false);
|
|
|
|
expect(visits).toEqual(actionVisits);
|
|
|
|
});
|
|
|
|
|
2021-10-24 23:37:14 +03:00
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
[{}, visitsMocks.length + 2],
|
2021-10-24 23:37:14 +03:00
|
|
|
[
|
|
|
|
Mock.of<VisitsInfo>({
|
|
|
|
query: { endDate: formatIsoDate(subDays(now, 1)) ?? undefined },
|
|
|
|
}),
|
|
|
|
visitsMocks.length,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Mock.of<VisitsInfo>({
|
|
|
|
query: { startDate: formatIsoDate(addDays(now, 1)) ?? undefined },
|
|
|
|
}),
|
|
|
|
visitsMocks.length,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Mock.of<VisitsInfo>({
|
|
|
|
query: {
|
|
|
|
startDate: formatIsoDate(subDays(now, 5)) ?? undefined,
|
|
|
|
endDate: formatIsoDate(subDays(now, 2)) ?? undefined,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
visitsMocks.length,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Mock.of<VisitsInfo>({
|
|
|
|
query: {
|
|
|
|
startDate: formatIsoDate(subDays(now, 5)) ?? undefined,
|
|
|
|
endDate: formatIsoDate(addDays(now, 3)) ?? undefined,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
visitsMocks.length + 2,
|
|
|
|
],
|
|
|
|
])('prepends new visits on CREATE_VISIT', (state, expectedVisits) => {
|
|
|
|
const prevState = buildState({ ...state, visits: visitsMocks });
|
|
|
|
const visit = Mock.of<Visit>({ date: formatIsoDate(now) ?? undefined });
|
2021-02-28 12:45:14 +03:00
|
|
|
|
2022-11-05 15:01:00 +03:00
|
|
|
const { visits } = reducer(prevState, {
|
2022-11-08 00:29:15 +03:00
|
|
|
type: createNewVisits.toString(),
|
2022-11-05 15:01:00 +03:00
|
|
|
payload: { createdVisits: [{ visit }, { visit }] },
|
|
|
|
} as any);
|
2021-02-28 12:45:14 +03:00
|
|
|
|
2021-10-24 23:37:14 +03:00
|
|
|
expect(visits).toHaveLength(expectedVisits);
|
2021-02-28 12:45:14 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('returns new progress on GET_ORPHAN_VISITS_PROGRESS_CHANGED', () => {
|
2022-11-12 11:01:43 +03:00
|
|
|
const state = reducer(undefined, { type: GET_ORPHAN_VISITS_PROGRESS_CHANGED, payload: 85 } as any);
|
2021-02-28 12:45:14 +03:00
|
|
|
|
|
|
|
expect(state).toEqual(expect.objectContaining({ progress: 85 }));
|
|
|
|
});
|
2021-12-23 12:38:02 +03:00
|
|
|
|
|
|
|
it('returns fallbackInterval on GET_ORPHAN_VISITS_FALLBACK_TO_INTERVAL', () => {
|
|
|
|
const fallbackInterval: DateInterval = 'last30Days';
|
2022-11-12 11:01:43 +03:00
|
|
|
const state = reducer(
|
|
|
|
undefined,
|
|
|
|
{ type: GET_ORPHAN_VISITS_FALLBACK_TO_INTERVAL, payload: fallbackInterval } as any,
|
|
|
|
);
|
2021-12-23 12:38:02 +03:00
|
|
|
|
|
|
|
expect(state).toEqual(expect.objectContaining({ fallbackInterval }));
|
|
|
|
});
|
2021-02-28 12:45:14 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('getOrphanVisits', () => {
|
|
|
|
type GetVisitsReturn = Promise<ShlinkVisits> | ((query: any) => Promise<ShlinkVisits>);
|
|
|
|
|
|
|
|
const buildApiClientMock = (returned: GetVisitsReturn) => Mock.of<ShlinkApiClient>({
|
|
|
|
getOrphanVisits: jest.fn(typeof returned === 'function' ? returned : async () => returned),
|
|
|
|
});
|
|
|
|
const dispatchMock = jest.fn();
|
|
|
|
const getState = () => Mock.of<ShlinkState>({
|
|
|
|
orphanVisits: { cancelLoad: false },
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(jest.resetAllMocks);
|
|
|
|
|
|
|
|
it('dispatches start and error when promise is rejected', async () => {
|
|
|
|
const ShlinkApiClient = buildApiClientMock(Promise.reject({}));
|
|
|
|
|
2022-11-12 11:32:52 +03:00
|
|
|
await getOrphanVisits(() => ShlinkApiClient)({})(dispatchMock, getState);
|
2021-02-28 12:45:14 +03:00
|
|
|
|
|
|
|
expect(dispatchMock).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(1, { type: GET_ORPHAN_VISITS_START });
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(2, { type: GET_ORPHAN_VISITS_ERROR });
|
|
|
|
expect(ShlinkApiClient.getOrphanVisits).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
[undefined],
|
2021-02-28 12:45:14 +03:00
|
|
|
[{}],
|
|
|
|
])('dispatches start and success when promise is resolved', async (query) => {
|
2021-07-02 20:57:25 +03:00
|
|
|
const visits = visitsMocks.map((visit) => ({ ...visit, visitedUrl: '' }));
|
2021-02-28 12:45:14 +03:00
|
|
|
const ShlinkApiClient = buildApiClientMock(Promise.resolve({
|
2021-07-02 20:57:25 +03:00
|
|
|
data: visits,
|
2021-02-28 12:45:14 +03:00
|
|
|
pagination: {
|
|
|
|
currentPage: 1,
|
|
|
|
pagesCount: 1,
|
|
|
|
totalItems: 1,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
2022-11-12 11:32:52 +03:00
|
|
|
await getOrphanVisits(() => ShlinkApiClient)({ query })(dispatchMock, getState);
|
2021-02-28 12:45:14 +03:00
|
|
|
|
|
|
|
expect(dispatchMock).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(1, { type: GET_ORPHAN_VISITS_START });
|
2022-11-12 12:33:52 +03:00
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(2, {
|
|
|
|
type: GET_ORPHAN_VISITS,
|
|
|
|
payload: { visits, query: query ?? {} },
|
|
|
|
});
|
2021-02-28 12:45:14 +03:00
|
|
|
expect(ShlinkApiClient.getOrphanVisits).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
2021-12-23 12:38:02 +03:00
|
|
|
|
|
|
|
it.each([
|
|
|
|
[
|
2022-03-26 14:17:42 +03:00
|
|
|
[Mock.of<Visit>({ date: formatISO(subDays(new Date(), 5)) })],
|
2022-11-12 11:01:43 +03:00
|
|
|
{ type: GET_ORPHAN_VISITS_FALLBACK_TO_INTERVAL, payload: 'last7Days' },
|
2021-12-23 12:38:02 +03:00
|
|
|
],
|
|
|
|
[
|
2022-03-26 14:17:42 +03:00
|
|
|
[Mock.of<Visit>({ date: formatISO(subDays(new Date(), 200)) })],
|
2022-11-12 11:01:43 +03:00
|
|
|
{ type: GET_ORPHAN_VISITS_FALLBACK_TO_INTERVAL, payload: 'last365Days' },
|
2021-12-23 12:38:02 +03:00
|
|
|
],
|
2022-03-26 14:17:42 +03:00
|
|
|
[[], expect.objectContaining({ type: GET_ORPHAN_VISITS })],
|
2021-12-23 12:38:02 +03:00
|
|
|
])('dispatches fallback interval when the list of visits is empty', async (lastVisits, expectedSecondDispatch) => {
|
|
|
|
const buildVisitsResult = (data: Visit[] = []): ShlinkVisits => ({
|
|
|
|
data,
|
|
|
|
pagination: {
|
|
|
|
currentPage: 1,
|
|
|
|
pagesCount: 1,
|
|
|
|
totalItems: 1,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const getShlinkOrphanVisits = jest.fn()
|
|
|
|
.mockResolvedValueOnce(buildVisitsResult())
|
|
|
|
.mockResolvedValueOnce(buildVisitsResult(lastVisits));
|
|
|
|
const ShlinkApiClient = Mock.of<ShlinkApiClient>({ getOrphanVisits: getShlinkOrphanVisits });
|
|
|
|
|
2022-11-12 11:32:52 +03:00
|
|
|
await getOrphanVisits(() => ShlinkApiClient)({ doIntervalFallback: true })(dispatchMock, getState);
|
2021-12-23 12:38:02 +03:00
|
|
|
|
|
|
|
expect(dispatchMock).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(1, { type: GET_ORPHAN_VISITS_START });
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(2, expectedSecondDispatch);
|
|
|
|
expect(getShlinkOrphanVisits).toHaveBeenCalledTimes(2);
|
|
|
|
});
|
2021-02-28 12:45:14 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('cancelGetOrphanVisits', () => {
|
|
|
|
it('just returns the action with proper type', () =>
|
|
|
|
expect(cancelGetOrphanVisits()).toEqual({ type: GET_ORPHAN_VISITS_CANCEL }));
|
|
|
|
});
|
|
|
|
});
|