summaryrefslogtreecommitdiff
path: root/spec/frontend/create_cluster/gke_cluster/stores/actions_spec.js
blob: c365cb6a9f4942ee7f9ae56a5cb8206079c30779 (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
import testAction from 'helpers/vuex_action_helper';
import * as actions from '~/create_cluster/gke_cluster/store/actions';
import * as types from '~/create_cluster/gke_cluster/store/mutation_types';
import createState from '~/create_cluster/gke_cluster/store/state';
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', () => {
      return testAction(
        actions.setProject,
        selectedProjectMock,
        { selectedProject: {} },
        [{ type: 'SET_PROJECT', payload: selectedProjectMock }],
        [],
      );
    });
  });

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

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

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

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

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

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

    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', () => {
        return 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 }],
        );
      });
    });

    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 }],
          [],
        );
      });
    });
  });
});