
+ Improve the launch work flow form. + Add REST endpoint for available ingress controllers + Add REST endpint for available addons Change-Id: Ic76d4d853bce0b1bfd107ca1bd6a7231939845df Depends-On: https://review.opendev.org/#/c/697000/
121 lines
3.9 KiB
JavaScript
121 lines
3.9 KiB
JavaScript
/**
|
|
* (c) Copyright 2016 NEC Corporation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License. You may obtain
|
|
* a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
describe('horizon.dashboard.container-infra.clusters.create.service', function() {
|
|
|
|
var service, $scope, $q, deferred, magnum, workflow, spinnerModal, modalConfig, configDeferred;
|
|
|
|
var model = {
|
|
id: 1,
|
|
labels: 'key1=value1,key2=value2',
|
|
auto_scaling_enabled: true,
|
|
templateLabels: {key1:'default value'},
|
|
override_labels: true,
|
|
master_count: 1,
|
|
create_network: true,
|
|
addons: [{labels:{}},{labels:{}}],
|
|
ingress_controller: {labels:{ingress_controller:''}},
|
|
DEFAULTS: {labels:''}
|
|
};
|
|
var modal = {
|
|
open: function(config) {
|
|
deferred = $q.defer();
|
|
deferred.resolve(config);
|
|
modalConfig = config;
|
|
|
|
return deferred.promise;
|
|
}
|
|
};
|
|
|
|
///////////////////
|
|
|
|
beforeEach(module('horizon.app.core'));
|
|
beforeEach(module('horizon.framework'));
|
|
beforeEach(module('horizon.dashboard.container-infra.clusters'));
|
|
|
|
beforeEach(module(function($provide) {
|
|
$provide.value('horizon.framework.widgets.form.ModalFormService', modal);
|
|
}));
|
|
|
|
beforeEach(inject(function($injector, _$rootScope_, _$q_) {
|
|
$q = _$q_;
|
|
$scope = _$rootScope_.$new();
|
|
service = $injector.get('horizon.dashboard.container-infra.clusters.create.service');
|
|
magnum = $injector.get('horizon.app.core.openstack-service-api.magnum');
|
|
workflow = $injector.get('horizon.dashboard.container-infra.clusters.workflow');
|
|
|
|
spinnerModal = $injector.get('horizon.framework.widgets.modal-wait-spinner.service');
|
|
spyOn(spinnerModal, 'showModalSpinner').and.callFake(function() {});
|
|
spyOn(spinnerModal, 'hideModalSpinner').and.callFake(function() {});
|
|
|
|
deferred = $q.defer();
|
|
deferred.resolve({data: {uuid: 1}});
|
|
|
|
configDeferred = $q.defer();
|
|
configDeferred.resolve({
|
|
title: 'Create New Cluster',
|
|
schema: {},
|
|
form: {},
|
|
model: model
|
|
});
|
|
|
|
spyOn(magnum, 'createCluster').and.returnValue(deferred.promise);
|
|
spyOn(workflow, 'init').and.returnValue(configDeferred.promise);
|
|
spyOn(modal, 'open').and.callThrough();
|
|
}));
|
|
|
|
it('should check the policy if the user is allowed to create cluster', function() {
|
|
var allowed = service.allowed();
|
|
expect(allowed).toBeTruthy();
|
|
});
|
|
|
|
it('should open the modal, hide the loading spinner and have valid ' +
|
|
'form model', inject(function($timeout) {
|
|
service.perform(null, $scope);
|
|
|
|
$timeout(function() {
|
|
expect(modal.open).toHaveBeenCalled();
|
|
expect(magnum.createCluster).toHaveBeenCalled();
|
|
// Check if the form's model skeleton is correct
|
|
expect(modalConfig.model).toBeDefined();
|
|
expect(modalConfig.schema).toBeDefined();
|
|
expect(modalConfig.form).toBeDefined();
|
|
expect(modalConfig.title).toEqual('Create New Cluster');
|
|
}, 0);
|
|
|
|
$timeout.flush();
|
|
$scope.$apply();
|
|
}));
|
|
|
|
it('should not crash unexpectedly with empty form model', inject(function($timeout) {
|
|
model.auto_scaling_enabled = null;
|
|
model.templateLabels = null;
|
|
model.override_labels = null;
|
|
model.create_network = null;
|
|
model.addons = null;
|
|
model.labels = 'invalid label';
|
|
|
|
service.perform(null, $scope);
|
|
|
|
$timeout.flush();
|
|
$scope.$apply();
|
|
}));
|
|
});
|
|
})();
|