2018-09-07 21:41:21 +03:00
|
|
|
import reducer, {
|
2018-12-18 16:32:02 +03:00
|
|
|
getShortUrlDetail,
|
2018-09-07 21:41:21 +03:00
|
|
|
GET_SHORT_URL_DETAIL_START,
|
|
|
|
GET_SHORT_URL_DETAIL_ERROR,
|
|
|
|
GET_SHORT_URL_DETAIL,
|
|
|
|
} from '../../../src/visits/reducers/shortUrlDetail';
|
|
|
|
|
|
|
|
describe('shortUrlDetailReducer', () => {
|
|
|
|
describe('reducer', () => {
|
|
|
|
it('returns loading on GET_SHORT_URL_DETAIL_START', () => {
|
|
|
|
const state = reducer({ loading: false }, { type: GET_SHORT_URL_DETAIL_START });
|
|
|
|
const { loading } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('stops loading and returns error on GET_SHORT_URL_DETAIL_ERROR', () => {
|
|
|
|
const state = reducer({ loading: true, error: false }, { type: GET_SHORT_URL_DETAIL_ERROR });
|
|
|
|
const { loading, error } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(false);
|
|
|
|
expect(error).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('return short URL on GET_SHORT_URL_DETAIL', () => {
|
|
|
|
const actionShortUrl = { longUrl: 'foo', shortCode: 'bar' };
|
|
|
|
const state = reducer({ loading: true, error: false }, { type: GET_SHORT_URL_DETAIL, shortUrl: actionShortUrl });
|
|
|
|
const { loading, error, shortUrl } = state;
|
|
|
|
|
|
|
|
expect(loading).toEqual(false);
|
|
|
|
expect(error).toEqual(false);
|
|
|
|
expect(shortUrl).toEqual(actionShortUrl);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getShortUrlDetail', () => {
|
|
|
|
const buildApiClientMock = (returned) => ({
|
2019-04-19 13:41:59 +03:00
|
|
|
getShortUrl: jest.fn(() => returned),
|
2018-09-07 21:41:21 +03:00
|
|
|
});
|
2019-04-19 13:41:59 +03:00
|
|
|
const dispatchMock = jest.fn();
|
2018-12-18 12:23:09 +03:00
|
|
|
const getState = () => ({});
|
2018-09-07 21:41:21 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
beforeEach(() => dispatchMock.mockReset());
|
2018-09-07 21:41:21 +03:00
|
|
|
|
|
|
|
it('dispatches start and error when promise is rejected', async () => {
|
|
|
|
const ShlinkApiClient = buildApiClientMock(Promise.reject());
|
|
|
|
|
2018-12-18 16:32:02 +03:00
|
|
|
await getShortUrlDetail(() => ShlinkApiClient)('abc123')(dispatchMock, getState);
|
2018-09-07 21:41:21 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
expect(dispatchMock).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(1, { type: GET_SHORT_URL_DETAIL_START });
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(2, { type: GET_SHORT_URL_DETAIL_ERROR });
|
|
|
|
expect(ShlinkApiClient.getShortUrl).toHaveBeenCalledTimes(1);
|
2018-09-07 21:41:21 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('dispatches start and success when promise is resolved', async () => {
|
|
|
|
const resolvedShortUrl = { longUrl: 'foo', shortCode: 'bar' };
|
|
|
|
const ShlinkApiClient = buildApiClientMock(Promise.resolve(resolvedShortUrl));
|
|
|
|
|
2018-12-18 16:32:02 +03:00
|
|
|
await getShortUrlDetail(() => ShlinkApiClient)('abc123')(dispatchMock, getState);
|
2018-09-07 21:41:21 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
expect(dispatchMock).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(1, { type: GET_SHORT_URL_DETAIL_START });
|
|
|
|
expect(dispatchMock).toHaveBeenNthCalledWith(2, { type: GET_SHORT_URL_DETAIL, shortUrl: resolvedShortUrl });
|
|
|
|
expect(ShlinkApiClient.getShortUrl).toHaveBeenCalledTimes(1);
|
2018-09-07 21:41:21 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|