2020-05-24 23:13:21 +05:30
|
|
|
import { InMemoryCache } from 'apollo-cache-inmemory';
|
|
|
|
import {
|
|
|
|
updateStoreAfterDesignsDelete,
|
|
|
|
updateStoreAfterAddImageDiffNote,
|
|
|
|
updateStoreAfterUploadDesign,
|
2021-01-29 00:20:46 +05:30
|
|
|
updateStoreAfterRepositionImageDiffNote,
|
2020-05-24 23:13:21 +05:30
|
|
|
} from '~/design_management/utils/cache_update';
|
|
|
|
import {
|
|
|
|
designDeletionError,
|
|
|
|
ADD_IMAGE_DIFF_NOTE_ERROR,
|
|
|
|
UPDATE_IMAGE_DIFF_NOTE_ERROR,
|
|
|
|
} from '~/design_management/utils/error_messages';
|
2021-01-29 00:20:46 +05:30
|
|
|
import createFlash from '~/flash';
|
2021-03-11 19:13:27 +05:30
|
|
|
import design from '../mock_data/design';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
jest.mock('~/flash.js');
|
|
|
|
|
|
|
|
describe('Design Management cache update', () => {
|
|
|
|
const mockErrors = ['code red!'];
|
|
|
|
|
|
|
|
let mockStore;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
mockStore = new InMemoryCache();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('error handling', () => {
|
|
|
|
it.each`
|
2021-11-18 22:05:49 +05:30
|
|
|
fnName | subject | errorMessage | extraArgs
|
|
|
|
${'updateStoreAfterDesignsDelete'} | ${updateStoreAfterDesignsDelete} | ${designDeletionError()} | ${[[design]]}
|
|
|
|
${'updateStoreAfterAddImageDiffNote'} | ${updateStoreAfterAddImageDiffNote} | ${ADD_IMAGE_DIFF_NOTE_ERROR} | ${[]}
|
|
|
|
${'updateStoreAfterUploadDesign'} | ${updateStoreAfterUploadDesign} | ${mockErrors[0]} | ${[]}
|
|
|
|
${'updateStoreAfterUpdateImageDiffNote'} | ${updateStoreAfterRepositionImageDiffNote} | ${UPDATE_IMAGE_DIFF_NOTE_ERROR} | ${[]}
|
2020-05-24 23:13:21 +05:30
|
|
|
`('$fnName handles errors in response', ({ subject, extraArgs, errorMessage }) => {
|
|
|
|
expect(createFlash).not.toHaveBeenCalled();
|
|
|
|
expect(() => subject(mockStore, { errors: mockErrors }, {}, ...extraArgs)).toThrow();
|
|
|
|
expect(createFlash).toHaveBeenCalledTimes(1);
|
2021-01-29 00:20:46 +05:30
|
|
|
expect(createFlash).toHaveBeenCalledWith({ message: errorMessage });
|
2020-05-24 23:13:21 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|