1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import {
- updateDateTime,
- updateEnvironments,
- updateProjects,
- } from 'app/actionCreators/globalSelection';
- import GlobalSelectionStore from 'app/stores/globalSelectionStore';
- jest.mock('app/utils/localStorage', () => ({
- getItem: () => JSON.stringify({projects: [5], environments: ['staging']}),
- setItem: jest.fn(),
- }));
- describe('GlobalSelectionStore', function () {
- afterEach(function () {
- GlobalSelectionStore.reset();
- });
- it('get()', function () {
- expect(GlobalSelectionStore.get()).toEqual({
- isReady: false,
- selection: {
- projects: [],
- environments: [],
- datetime: {period: '14d', start: null, end: null, utc: null},
- },
- });
- });
- it('updateProjects()', async function () {
- expect(GlobalSelectionStore.get().selection.projects).toEqual([]);
- updateProjects([1]);
- await tick();
- expect(GlobalSelectionStore.get().selection.projects).toEqual([1]);
- });
- it('updateDateTime()', async function () {
- expect(GlobalSelectionStore.get().selection.datetime).toEqual({
- period: '14d',
- start: null,
- end: null,
- utc: null,
- });
- updateDateTime({period: '2h', start: null, end: null});
- await tick();
- expect(GlobalSelectionStore.get().selection.datetime).toEqual({
- period: '2h',
- start: null,
- end: null,
- });
- updateDateTime({
- period: null,
- start: '2018-08-08T00:00:00',
- end: '2018-09-08T00:00:00',
- utc: true,
- });
- await tick();
- expect(GlobalSelectionStore.get().selection.datetime).toEqual({
- period: null,
- start: '2018-08-08T00:00:00',
- end: '2018-09-08T00:00:00',
- utc: true,
- });
- updateDateTime({
- period: null,
- start: null,
- end: null,
- utc: null,
- });
- await tick();
- expect(GlobalSelectionStore.get().selection.datetime).toEqual({
- period: null,
- start: null,
- end: null,
- utc: null,
- });
- });
- it('updateEnvironments()', async function () {
- expect(GlobalSelectionStore.get().selection.environments).toEqual([]);
- updateEnvironments(['alpha']);
- await tick();
- expect(GlobalSelectionStore.get().selection.environments).toEqual(['alpha']);
- });
- });
|