2018-12-21 12:02:42 +03:00
|
|
|
import reducer, {
|
2020-01-31 22:12:22 +03:00
|
|
|
DELETE_SHORT_URL_ERROR,
|
2018-12-21 12:02:42 +03:00
|
|
|
DELETE_SHORT_URL_START,
|
|
|
|
RESET_DELETE_SHORT_URL,
|
|
|
|
SHORT_URL_DELETED,
|
|
|
|
resetDeleteShortUrl,
|
|
|
|
deleteShortUrl,
|
|
|
|
} from '../../../src/short-urls/reducers/shortUrlDeletion';
|
|
|
|
|
|
|
|
describe('shortUrlDeletionReducer', () => {
|
|
|
|
describe('reducer', () => {
|
|
|
|
it('returns loading on DELETE_SHORT_URL_START', () =>
|
|
|
|
expect(reducer(undefined, { type: DELETE_SHORT_URL_START })).toEqual({
|
|
|
|
shortCode: '',
|
|
|
|
loading: true,
|
|
|
|
error: false,
|
|
|
|
errorData: {},
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('returns default on RESET_DELETE_SHORT_URL', () =>
|
|
|
|
expect(reducer(undefined, { type: RESET_DELETE_SHORT_URL })).toEqual({
|
|
|
|
shortCode: '',
|
|
|
|
loading: false,
|
|
|
|
error: false,
|
|
|
|
errorData: {},
|
|
|
|
}));
|
|
|
|
|
2020-01-31 22:12:22 +03:00
|
|
|
it('returns shortCode on SHORT_URL_DELETED', () =>
|
|
|
|
expect(reducer(undefined, { type: SHORT_URL_DELETED, shortCode: 'foo' })).toEqual({
|
2018-12-21 12:02:42 +03:00
|
|
|
shortCode: 'foo',
|
|
|
|
loading: false,
|
|
|
|
error: false,
|
|
|
|
errorData: {},
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('returns errorData on DELETE_SHORT_URL_ERROR', () => {
|
|
|
|
const errorData = { foo: 'bar' };
|
|
|
|
|
|
|
|
expect(reducer(undefined, { type: DELETE_SHORT_URL_ERROR, errorData })).toEqual({
|
|
|
|
shortCode: '',
|
|
|
|
loading: false,
|
|
|
|
error: true,
|
|
|
|
errorData,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('resetDeleteShortUrl', () => {
|
|
|
|
it('returns expected action', () =>
|
|
|
|
expect(resetDeleteShortUrl()).toEqual({ type: RESET_DELETE_SHORT_URL }));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('deleteShortUrl', () => {
|
2019-04-19 13:41:59 +03:00
|
|
|
const dispatch = jest.fn();
|
|
|
|
const getState = jest.fn().mockReturnValue({ selectedServer: {} });
|
2018-12-21 12:02:42 +03:00
|
|
|
|
|
|
|
afterEach(() => {
|
2019-04-19 13:41:59 +03:00
|
|
|
dispatch.mockReset();
|
|
|
|
getState.mockClear();
|
2018-12-21 12:02:42 +03:00
|
|
|
});
|
|
|
|
|
2020-02-17 20:21:52 +03:00
|
|
|
it.each(
|
2020-08-22 09:10:31 +03:00
|
|
|
[[ undefined ], [ null ], [ 'example.com' ]],
|
2020-02-17 20:21:52 +03:00
|
|
|
)('dispatches proper actions if API client request succeeds', async (domain) => {
|
2018-12-21 12:02:42 +03:00
|
|
|
const apiClientMock = {
|
2019-04-19 13:41:59 +03:00
|
|
|
deleteShortUrl: jest.fn(() => ''),
|
2018-12-21 12:02:42 +03:00
|
|
|
};
|
|
|
|
const shortCode = 'abc123';
|
|
|
|
|
2020-02-08 11:57:18 +03:00
|
|
|
await deleteShortUrl(() => apiClientMock)(shortCode, domain)(dispatch, getState);
|
2018-12-21 12:02:42 +03:00
|
|
|
|
2019-04-19 13:52:55 +03:00
|
|
|
expect(dispatch).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatch).toHaveBeenNthCalledWith(1, { type: DELETE_SHORT_URL_START });
|
2020-02-08 12:46:11 +03:00
|
|
|
expect(dispatch).toHaveBeenNthCalledWith(2, { type: SHORT_URL_DELETED, shortCode, domain });
|
2018-12-21 12:02:42 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
expect(apiClientMock.deleteShortUrl).toHaveBeenCalledTimes(1);
|
2020-02-08 11:57:18 +03:00
|
|
|
expect(apiClientMock.deleteShortUrl).toHaveBeenCalledWith(shortCode, domain);
|
2018-12-21 12:02:42 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('dispatches proper actions if API client request fails', async () => {
|
|
|
|
const data = { foo: 'bar' };
|
|
|
|
const error = { response: { data } };
|
|
|
|
const apiClientMock = {
|
2019-04-19 13:41:59 +03:00
|
|
|
deleteShortUrl: jest.fn(() => Promise.reject(error)),
|
2018-12-21 12:02:42 +03:00
|
|
|
};
|
|
|
|
const shortCode = 'abc123';
|
|
|
|
|
|
|
|
try {
|
|
|
|
await deleteShortUrl(() => apiClientMock)(shortCode)(dispatch, getState);
|
|
|
|
} catch (e) {
|
|
|
|
expect(e).toEqual(error);
|
|
|
|
}
|
|
|
|
|
2019-04-19 13:52:55 +03:00
|
|
|
expect(dispatch).toHaveBeenCalledTimes(2);
|
|
|
|
expect(dispatch).toHaveBeenNthCalledWith(1, { type: DELETE_SHORT_URL_START });
|
|
|
|
expect(dispatch).toHaveBeenNthCalledWith(2, { type: DELETE_SHORT_URL_ERROR, errorData: data });
|
2018-12-21 12:02:42 +03:00
|
|
|
|
2019-04-19 13:41:59 +03:00
|
|
|
expect(apiClientMock.deleteShortUrl).toHaveBeenCalledTimes(1);
|
2020-02-08 11:57:18 +03:00
|
|
|
expect(apiClientMock.deleteShortUrl).toHaveBeenCalledWith(shortCode, undefined);
|
2018-12-21 12:02:42 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|