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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-24 15:09:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-24 15:09:00 +0300
commitae78b85a25cb0c19c3d6a2e4e6c7ca91ed50787d (patch)
treec53ad0fcdab26725814f1dc5267f6a04ebe4cf73 /spec/javascripts
parent38149afcf95e7669a7a99828c579d185b70c04dc (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/create_cluster/gke_cluster/helpers.js49
-rw-r--r--spec/javascripts/create_cluster/gke_cluster/stores/actions_spec.js139
2 files changed, 0 insertions, 188 deletions
diff --git a/spec/javascripts/create_cluster/gke_cluster/helpers.js b/spec/javascripts/create_cluster/gke_cluster/helpers.js
deleted file mode 100644
index 6df511e9157..00000000000
--- a/spec/javascripts/create_cluster/gke_cluster/helpers.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import {
- gapiProjectsResponseMock,
- gapiZonesResponseMock,
- gapiMachineTypesResponseMock,
-} from './mock_data';
-
-// eslint-disable-next-line import/prefer-default-export
-export const gapi = () => ({
- client: {
- cloudbilling: {
- projects: {
- getBillingInfo: () =>
- new Promise(resolve => {
- resolve({
- result: { billingEnabled: true },
- });
- }),
- },
- },
- cloudresourcemanager: {
- projects: {
- list: () =>
- new Promise(resolve => {
- resolve({
- result: { ...gapiProjectsResponseMock },
- });
- }),
- },
- },
- compute: {
- zones: {
- list: () =>
- new Promise(resolve => {
- resolve({
- result: { ...gapiZonesResponseMock },
- });
- }),
- },
- machineTypes: {
- list: () =>
- new Promise(resolve => {
- resolve({
- result: { ...gapiMachineTypesResponseMock },
- });
- }),
- },
- },
- },
-});
diff --git a/spec/javascripts/create_cluster/gke_cluster/stores/actions_spec.js b/spec/javascripts/create_cluster/gke_cluster/stores/actions_spec.js
deleted file mode 100644
index 7ceaeace82f..00000000000
--- a/spec/javascripts/create_cluster/gke_cluster/stores/actions_spec.js
+++ /dev/null
@@ -1,139 +0,0 @@
-import testAction from 'spec/helpers/vuex_action_helper';
-import * as actions from '~/create_cluster/gke_cluster/store/actions';
-import { createStore } from '~/create_cluster/gke_cluster/store';
-import { gapi } from '../helpers';
-import { selectedProjectMock, selectedZoneMock, selectedMachineTypeMock } from '../mock_data';
-
-describe('GCP Cluster Dropdown Store Actions', () => {
- let store;
-
- beforeEach(() => {
- store = createStore();
- });
-
- 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', done => {
- store
- .dispatch('fetchProjects')
- .then(() => {
- expect(store.state.projects[0].projectId).toEqual(selectedProjectMock.projectId);
- expect(store.state.projects[0].name).toEqual(selectedProjectMock.name);
-
- done();
- })
- .catch(done.fail);
- });
- });
-
- 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', done => {
- store
- .dispatch('fetchZones')
- .then(() => {
- expect(store.state.zones[0].name).toEqual(selectedZoneMock);
-
- done();
- })
- .catch(done.fail);
- });
- });
-
- describe('fetchMachineTypes', () => {
- it('fetches machine types from Google API', done => {
- store
- .dispatch('fetchMachineTypes')
- .then(() => {
- expect(store.state.machineTypes[0].name).toEqual(selectedMachineTypeMock);
-
- done();
- })
- .catch(done.fail);
- });
- });
- });
-});