Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutations_spec.js « store « statistics_panel « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 179f38d2bc5437efe7e6703ab186bc9b6c1725eb (plain)
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
import mutations from '~/admin/statistics_panel/store/mutations';
import * as types from '~/admin/statistics_panel/store/mutation_types';
import getInitialState from '~/admin/statistics_panel/store/state';
import mockStatistics from '../mock_data';

describe('Admin statistics panel mutations', () => {
  let state;

  beforeEach(() => {
    state = getInitialState();
  });

  describe(`${types.REQUEST_STATISTICS}`, () => {
    it('sets isLoading to true', () => {
      mutations[types.REQUEST_STATISTICS](state);

      expect(state.isLoading).toBe(true);
    });
  });

  describe(`${types.RECEIVE_STATISTICS_SUCCESS}`, () => {
    it('updates the store with the with statistics', () => {
      mutations[types.RECEIVE_STATISTICS_SUCCESS](state, mockStatistics);

      expect(state.isLoading).toBe(false);
      expect(state.error).toBe(null);
      expect(state.statistics).toEqual(mockStatistics);
    });
  });

  describe(`${types.RECEIVE_STATISTICS_ERROR}`, () => {
    it('sets error and clears data', () => {
      const error = 500;
      mutations[types.RECEIVE_STATISTICS_ERROR](state, error);

      expect(state.isLoading).toBe(false);
      expect(state.error).toBe(error);
      expect(state.statistics).toEqual(null);
    });
  });
});