shlink-web-client/test/servers/reducers/selectedServer.test.ts

88 lines
3.3 KiB
TypeScript
Raw Normal View History

import { fromPartial } from '@total-typescript/shoehorn';
2023-02-18 13:11:01 +03:00
import { v4 as uuid } from 'uuid';
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
import type { ShlinkState } from '../../../src/container/types';
import type { NonReachableServer, NotFoundServer, RegularServer } from '../../../src/servers/data';
2022-11-11 21:31:05 +03:00
import {
2023-02-18 13:11:01 +03:00
MAX_FALLBACK_VERSION,
MIN_FALLBACK_VERSION,
2018-08-12 10:22:18 +03:00
resetSelectedServer,
2022-11-11 21:31:05 +03:00
selectedServerReducerCreator,
2023-02-18 13:11:01 +03:00
selectServer as selectServerCreator,
2018-08-12 10:22:18 +03:00
} from '../../../src/servers/reducers/selectedServer';
describe('selectedServerReducer', () => {
2023-05-27 12:57:26 +03:00
const dispatch = vi.fn();
const health = vi.fn();
const buildApiClient = vi.fn().mockReturnValue(fromPartial<ShlinkApiClient>({ health }));
const selectServer = selectServerCreator(buildApiClient);
2022-11-11 21:31:05 +03:00
const { reducer } = selectedServerReducerCreator(selectServer);
2018-08-26 11:52:45 +03:00
describe('reducer', () => {
it('returns default when action is RESET_SELECTED_SERVER', () =>
expect(reducer(null, resetSelectedServer())).toBeNull());
it('returns selected server when action is SELECT_SERVER', () => {
const payload = fromPartial<RegularServer>({ id: 'abc123' });
expect(reducer(null, selectServer.fulfilled(payload, '', ''))).toEqual(payload);
2018-08-12 10:22:18 +03:00
});
});
describe('selectServer', () => {
const version = '1.19.0';
2023-05-27 12:57:26 +03:00
const createGetStateMock = (id: string) => vi.fn().mockReturnValue({
2022-12-31 18:56:22 +03:00
servers: {
[id]: { id },
},
});
2018-08-12 10:22:18 +03:00
it.each([
2022-03-26 14:17:42 +03:00
[version, version, `v${version}`],
['latest', MAX_FALLBACK_VERSION, 'latest'],
['%invalid_semver%', MIN_FALLBACK_VERSION, '%invalid_semver%'],
2020-03-05 13:58:35 +03:00
])('dispatches proper actions', async (serverVersion, expectedVersion, expectedPrintableVersion) => {
const id = uuid();
const getState = createGetStateMock(id);
const expectedSelectedServer = {
2022-12-31 18:56:22 +03:00
id,
version: expectedVersion,
2020-03-05 13:58:35 +03:00
printableVersion: expectedPrintableVersion,
};
2018-08-12 10:22:18 +03:00
health.mockResolvedValue({ version: serverVersion });
await selectServer(id)(dispatch, getState, {});
2018-08-12 10:22:18 +03:00
expect(getState).toHaveBeenCalledTimes(1);
2019-10-05 20:31:47 +03:00
expect(buildApiClient).toHaveBeenCalledTimes(1);
expect(dispatch).toHaveBeenCalledTimes(3); // "Pending", "reset" and "fulfilled"
expect(dispatch).toHaveBeenLastCalledWith(expect.objectContaining({ payload: expectedSelectedServer }));
2018-08-12 10:22:18 +03:00
});
2020-03-08 14:57:01 +03:00
it('dispatches error when health endpoint fails', async () => {
const id = uuid();
const getState = createGetStateMock(id);
const expectedSelectedServer = fromPartial<NonReachableServer>({ id, serverNotReachable: true });
health.mockRejectedValue({});
await selectServer(id)(dispatch, getState, {});
expect(health).toHaveBeenCalled();
expect(dispatch).toHaveBeenLastCalledWith(expect.objectContaining({ payload: expectedSelectedServer }));
2020-03-08 14:57:01 +03:00
});
it('dispatches error when server is not found', async () => {
const id = uuid();
2023-05-27 12:57:26 +03:00
const getState = vi.fn(() => fromPartial<ShlinkState>({ servers: {} }));
const expectedSelectedServer: NotFoundServer = { serverNotFound: true };
2020-03-08 14:57:01 +03:00
await selectServer(id)(dispatch, getState, {});
2020-03-08 14:57:01 +03:00
expect(getState).toHaveBeenCalled();
expect(health).not.toHaveBeenCalled();
expect(dispatch).toHaveBeenLastCalledWith(expect.objectContaining({ payload: expectedSelectedServer }));
});
2018-08-12 10:22:18 +03:00
});
});