1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
import {
getGlobalAlerts,
setGlobalAlerts,
removeGlobalAlertById,
GLOBAL_ALERTS_SESSION_STORAGE_KEY,
} from '~/lib/utils/global_alerts';
describe('global alerts utils', () => {
describe('getGlobalAlerts', () => {
describe('when there are alerts', () => {
beforeEach(() => {
jest
.spyOn(Storage.prototype, 'getItem')
.mockImplementation(() => '[{"id":"foo","variant":"danger","message":"Foo"}]');
});
it('returns alerts from session storage', () => {
expect(getGlobalAlerts()).toEqual([{ id: 'foo', variant: 'danger', message: 'Foo' }]);
});
});
describe('when there are no alerts', () => {
beforeEach(() => {
jest.spyOn(Storage.prototype, 'getItem').mockImplementation(() => null);
});
it('returns empty array', () => {
expect(getGlobalAlerts()).toEqual([]);
});
});
});
});
describe('setGlobalAlerts', () => {
it('sets alerts in session storage', () => {
const setItemSpy = jest.spyOn(Storage.prototype, 'setItem').mockImplementation(() => {});
setGlobalAlerts([
{
id: 'foo',
variant: 'danger',
message: 'Foo',
},
{
id: 'bar',
variant: 'success',
message: 'Bar',
persistOnPages: ['dashboard:groups:index'],
dismissible: false,
},
]);
expect(setItemSpy).toHaveBeenCalledWith(
GLOBAL_ALERTS_SESSION_STORAGE_KEY,
'[{"dismissible":true,"persistOnPages":[],"id":"foo","variant":"danger","message":"Foo"},{"dismissible":false,"persistOnPages":["dashboard:groups:index"],"id":"bar","variant":"success","message":"Bar"}]',
);
});
});
describe('removeGlobalAlertById', () => {
beforeEach(() => {
jest
.spyOn(Storage.prototype, 'getItem')
.mockImplementation(
() =>
'[{"id":"foo","variant":"success","message":"Foo"},{"id":"bar","variant":"danger","message":"Bar"}]',
);
});
it('removes alert', () => {
const setItemSpy = jest.spyOn(Storage.prototype, 'setItem').mockImplementation(() => {});
removeGlobalAlertById('bar');
expect(setItemSpy).toHaveBeenCalledWith(
GLOBAL_ALERTS_SESSION_STORAGE_KEY,
'[{"id":"foo","variant":"success","message":"Foo"}]',
);
});
});
|