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

actions_spec.js « stores « gke_cluster « create_cluster « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1ac384113623be263c783b7b2e58b408abd8165 (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
134
135
136
137
138
139
140
141
142
143
144
import testAction from 'helpers/vuex_action_helper';
import createState from '~/create_cluster/gke_cluster/store/state';
import * as types from '~/create_cluster/gke_cluster/store/mutation_types';
import * as actions from '~/create_cluster/gke_cluster/store/actions';
import gapi from '../helpers';
import {
  selectedProjectMock,
  selectedZoneMock,
  selectedMachineTypeMock,
  gapiProjectsResponseMock,
  gapiZonesResponseMock,
  gapiMachineTypesResponseMock,
} from '../mock_data';

describe('GCP Cluster Dropdown Store Actions', () => {
  describe('setProject', () => {
    it('should set project', done => {
      testAction(
        actions.setProject,
        selectedProjectMock,
        { selectedProject: {} },
        [{ type: 'SET_PROJECT', payload: selectedProjectMock }],
        [],
        done,
      );
    });
  });

  describe('setZone', () => {
    it('should set zone', done => {
      testAction(
        actions.setZone,
        selectedZoneMock,
        { selectedZone: '' },
        [{ type: 'SET_ZONE', payload: selectedZoneMock }],
        [],
        done,
      );
    });
  });

  describe('setMachineType', () => {
    it('should set machine type', done => {
      testAction(
        actions.setMachineType,
        selectedMachineTypeMock,
        { selectedMachineType: '' },
        [{ type: 'SET_MACHINE_TYPE', payload: selectedMachineTypeMock }],
        [],
        done,
      );
    });
  });

  describe('setIsValidatingProjectBilling', () => {
    it('should set machine type', done => {
      testAction(
        actions.setIsValidatingProjectBilling,
        true,
        { isValidatingProjectBilling: null },
        [{ type: 'SET_IS_VALIDATING_PROJECT_BILLING', payload: true }],
        [],
        done,
      );
    });
  });

  describe('async fetch methods', () => {
    let originalGapi;

    beforeAll(() => {
      originalGapi = window.gapi;
      window.gapi = gapi;
    });

    afterAll(() => {
      window.gapi = originalGapi;
    });

    describe('fetchProjects', () => {
      it('fetches projects from Google API', () => {
        const state = createState();

        return testAction(
          actions.fetchProjects,
          null,
          state,
          [{ type: types.SET_PROJECTS, payload: gapiProjectsResponseMock.projects }],
          [],
        );
      });
    });

    describe('validateProjectBilling', () => {
      it('checks project billing status from Google API', done => {
        testAction(
          actions.validateProjectBilling,
          true,
          {
            selectedProject: selectedProjectMock,
            selectedZone: '',
            selectedMachineType: '',
            projectHasBillingEnabled: null,
          },
          [
            { type: 'SET_ZONE', payload: '' },
            { type: 'SET_MACHINE_TYPE', payload: '' },
            { type: 'SET_PROJECT_BILLING_STATUS', payload: true },
          ],
          [{ type: 'setIsValidatingProjectBilling', payload: false }],
          done,
        );
      });
    });

    describe('fetchZones', () => {
      it('fetches zones from Google API', () => {
        const state = createState();

        return testAction(
          actions.fetchZones,
          null,
          state,
          [{ type: types.SET_ZONES, payload: gapiZonesResponseMock.items }],
          [],
        );
      });
    });

    describe('fetchMachineTypes', () => {
      it('fetches machine types from Google API', () => {
        const state = createState();

        return testAction(
          actions.fetchMachineTypes,
          null,
          state,
          [{ type: types.SET_MACHINE_TYPES, payload: gapiMachineTypesResponseMock.items }],
          [],
        );
      });
    });
  });
});