shlink-web-client/test/short-urls/reducers/shortUrlCreation.test.ts

101 lines
3.3 KiB
TypeScript
Raw Normal View History

import { Mock } from 'ts-mockery';
2018-11-01 16:55:30 +03:00
import reducer, {
CREATE_SHORT_URL_START,
CREATE_SHORT_URL_ERROR,
CREATE_SHORT_URL,
RESET_CREATE_SHORT_URL,
createShortUrl,
2018-11-01 16:55:30 +03:00
resetCreateShortUrl,
CreateShortUrlAction,
2018-11-01 16:55:30 +03:00
} from '../../../src/short-urls/reducers/shortUrlCreation';
import { ShortUrl } from '../../../src/short-urls/data';
import ShlinkApiClient from '../../../src/api/services/ShlinkApiClient';
import { ShlinkState } from '../../../src/container/types';
2018-11-01 16:55:30 +03:00
describe('shortUrlCreationReducer', () => {
const shortUrl = Mock.all<ShortUrl>();
2018-11-01 16:55:30 +03:00
describe('reducer', () => {
const action = (type: string, args: Partial<CreateShortUrlAction> = {}) => Mock.of<CreateShortUrlAction>(
{ type, ...args },
);
2018-11-01 16:55:30 +03:00
it('returns loading on CREATE_SHORT_URL_START', () => {
expect(reducer(undefined, action(CREATE_SHORT_URL_START))).toEqual({
result: null,
2018-11-01 16:55:30 +03:00
saving: true,
error: false,
});
});
it('returns error on CREATE_SHORT_URL_ERROR', () => {
expect(reducer(undefined, action(CREATE_SHORT_URL_ERROR))).toEqual({
result: null,
2018-11-01 16:55:30 +03:00
saving: false,
error: true,
});
});
it('returns result on CREATE_SHORT_URL', () => {
expect(reducer(undefined, action(CREATE_SHORT_URL, { result: shortUrl }))).toEqual({
result: shortUrl,
2018-11-01 16:55:30 +03:00
saving: false,
error: false,
});
});
it('returns default state on RESET_CREATE_SHORT_URL', () => {
expect(reducer(undefined, action(RESET_CREATE_SHORT_URL))).toEqual({
2018-11-01 16:55:30 +03:00
result: null,
saving: false,
error: false,
});
});
});
describe('resetCreateShortUrl', () => {
it('returns proper action', () => expect(resetCreateShortUrl()).toEqual({ type: RESET_CREATE_SHORT_URL }));
2018-11-01 16:55:30 +03:00
});
describe('createShortUrl', () => {
const createApiClientMock = (result: Promise<ShortUrl>) => Mock.of<ShlinkApiClient>({
createShortUrl: jest.fn().mockReturnValue(result),
2018-11-01 16:55:30 +03:00
});
2019-04-19 13:41:59 +03:00
const dispatch = jest.fn();
const getState = () => Mock.all<ShlinkState>();
2018-11-01 16:55:30 +03:00
afterEach(jest.resetAllMocks);
2018-11-01 16:55:30 +03:00
it('calls API on success', async () => {
const apiClientMock = createApiClientMock(Promise.resolve(shortUrl));
const dispatchable = createShortUrl(() => apiClientMock)({ longUrl: 'foo' });
2018-11-01 16:55:30 +03:00
2018-12-18 12:23:09 +03:00
await dispatchable(dispatch, getState);
2018-11-01 16:55:30 +03:00
2019-04-19 13:41:59 +03:00
expect(apiClientMock.createShortUrl).toHaveBeenCalledTimes(1);
expect(dispatch).toHaveBeenCalledTimes(2);
expect(dispatch).toHaveBeenNthCalledWith(1, { type: CREATE_SHORT_URL_START });
expect(dispatch).toHaveBeenNthCalledWith(2, { type: CREATE_SHORT_URL, result: shortUrl });
2018-11-01 16:55:30 +03:00
});
it('throws on error', async () => {
const error = 'Error';
const apiClientMock = createApiClientMock(Promise.reject(error));
const dispatchable = createShortUrl(() => apiClientMock)({ longUrl: 'foo' });
2018-11-01 16:55:30 +03:00
2020-04-10 19:42:08 +03:00
expect.assertions(5);
2018-11-01 16:55:30 +03:00
try {
2018-12-18 12:23:09 +03:00
await dispatchable(dispatch, getState);
2018-11-01 16:55:30 +03:00
} catch (e) {
expect(e).toEqual(error);
}
2019-04-19 13:41:59 +03:00
expect(apiClientMock.createShortUrl).toHaveBeenCalledTimes(1);
expect(dispatch).toHaveBeenCalledTimes(2);
expect(dispatch).toHaveBeenNthCalledWith(1, { type: CREATE_SHORT_URL_START });
expect(dispatch).toHaveBeenNthCalledWith(2, { type: CREATE_SHORT_URL_ERROR });
2018-11-01 16:55:30 +03:00
});
});
});