summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/explorer/stores/mutations_spec.js
blob: 1908d3f035029c0fd1b8a598cb44ecf776258ccf (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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import mutations from '~/registry/explorer/stores/mutations';
import * as types from '~/registry/explorer/stores/mutation_types';

describe('Mutations Registry Explorer Store', () => {
  let mockState;

  beforeEach(() => {
    mockState = {};
  });

  describe('SET_INITIAL_STATE', () => {
    it('should set the initial state', () => {
      const payload = {
        endpoint: 'foo',
        isGroupPage: '',
        expirationPolicy: { foo: 'bar' },
        isAdmin: '',
      };
      const expectedState = {
        ...mockState,
        config: { ...payload, isGroupPage: false, isAdmin: false },
      };
      mutations[types.SET_INITIAL_STATE](mockState, {
        ...payload,
        expirationPolicy: JSON.stringify(payload.expirationPolicy),
      });

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_IMAGES_LIST_SUCCESS', () => {
    it('should set the images list', () => {
      const images = [{ name: 'foo' }, { name: 'bar' }];
      const defaultStatus = { deleting: false, failedDelete: false };
      const expectedState = {
        ...mockState,
        images: [{ name: 'foo', ...defaultStatus }, { name: 'bar', ...defaultStatus }],
      };
      mutations[types.SET_IMAGES_LIST_SUCCESS](mockState, images);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('UPDATE_IMAGE', () => {
    it('should update an image', () => {
      mockState.images = [{ id: 1, name: 'foo' }, { id: 2, name: 'bar' }];
      const payload = { id: 1, name: 'baz' };
      const expectedState = {
        ...mockState,
        images: [payload, { id: 2, name: 'bar' }],
      };
      mutations[types.UPDATE_IMAGE](mockState, payload);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_TAGS_LIST_SUCCESS', () => {
    it('should set the tags list', () => {
      const tags = [1, 2, 3];
      const expectedState = { ...mockState, tags };
      mutations[types.SET_TAGS_LIST_SUCCESS](mockState, tags);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_MAIN_LOADING', () => {
    it('should set the isLoading', () => {
      const expectedState = { ...mockState, isLoading: true };
      mutations[types.SET_MAIN_LOADING](mockState, true);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_SHOW_GARBAGE_COLLECTION_TIP', () => {
    it('should set the showGarbageCollectionTip', () => {
      const expectedState = { ...mockState, showGarbageCollectionTip: true };
      mutations[types.SET_SHOW_GARBAGE_COLLECTION_TIP](mockState, true);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_PAGINATION', () => {
    const generatePagination = () => [
      {
        'X-PAGE': '1',
        'X-PER-PAGE': '20',
        'X-TOTAL': '100',
        'X-TOTAL-PAGES': '5',
        'X-NEXT-PAGE': '2',
        'X-PREV-PAGE': '0',
      },
      {
        page: 1,
        perPage: 20,
        total: 100,
        totalPages: 5,
        nextPage: 2,
        previousPage: 0,
      },
    ];

    it('should set the images pagination', () => {
      const [headers, expectedResult] = generatePagination();
      const expectedState = { ...mockState, pagination: expectedResult };
      mutations[types.SET_PAGINATION](mockState, headers);

      expect(mockState).toEqual(expectedState);
    });

    it('should set the tags pagination', () => {
      const [headers, expectedResult] = generatePagination();
      const expectedState = { ...mockState, tagsPagination: expectedResult };
      mutations[types.SET_TAGS_PAGINATION](mockState, headers);

      expect(mockState).toEqual(expectedState);
    });
  });

  describe('SET_IMAGE_DETAILS', () => {
    it('should set imageDetails', () => {
      const expectedState = { ...mockState, imageDetails: { foo: 'bar' } };
      mutations[types.SET_IMAGE_DETAILS](mockState, { foo: 'bar' });

      expect(mockState).toEqual(expectedState);
    });
  });
});