magnum-ui/magnum_ui/static/dashboard/container-infra/cluster-templates/delete/delete.service.spec.js
yangle 9ebba6d43f Modify some spelling mistakes
Change-Id: I8f5e49f6378b437211520a7d28726b8b4d1c2aea
Co-Authored-By: Shu Muto <shu-mutou@rf.jp.nec.com>
2017-06-13 16:53:04 +09:00

144 lines
4.2 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.cluster-templates.delete.service', function() {
var service, $scope, deferredModal;
var deleteModalService = {
open: function () {
deferredModal.resolve({
pass: [{context: {id: 'a'}}],
fail: [{context: {id: 'b'}}]
});
return deferredModal.promise;
}
};
var magnumAPI = {
deleteClusterTemplate: function() {
return;
}
};
var policyAPI = {
ifAllowed: function() {
return {
success: function(callback) {
callback({allowed: true});
}
};
}
};
beforeEach(module('horizon.dashboard.container-infra.cluster-templates'));
beforeEach(module('horizon.app.core'));
beforeEach(module('horizon.app.core.images'));
beforeEach(module('horizon.framework'));
beforeEach(module('horizon.framework.widgets.modal', function($provide) {
$provide.value('horizon.framework.widgets.modal.deleteModalService', deleteModalService);
}));
beforeEach(module('horizon.app.core.openstack-service-api', function($provide) {
$provide.value('horizon.app.core.openstack-service-api.magnum', magnumAPI);
$provide.value('horizon.app.core.openstack-service-api.policy', policyAPI);
spyOn(policyAPI, 'ifAllowed').and.callThrough();
}));
beforeEach(inject(function($injector, _$rootScope_, $q) {
$scope = _$rootScope_.$new();
service = $injector.get('horizon.dashboard.container-infra.cluster-templates.delete.service');
deferredModal = $q.defer();
}));
function generateTemplate(count) {
var Template = [];
var data = {
name: 'delete_test',
id: '1',
coe: 'swarm',
network_driver: 'docker'
};
for (var index = 0; index < count; index++) {
var templates = angular.copy(data);
templates.id = index + 1;
Template.push(templates);
}
return Template;
}
describe('perform method', function() {
beforeEach(function() {
spyOn(deleteModalService, 'open').and.callThrough();
service.initAction(labelize);
});
function labelize(count) {
return {
title: ngettext('title', 'titles', count),
message: ngettext('message', 'messages', count),
submit: ngettext('submit', 'submits', count),
success: ngettext('success', 'successes', count),
error: ngettext('error', 'errors', count)
};
}
it('should open the delete modal and show correct labels', testSingleObject);
function testSingleObject() {
var templates = generateTemplate(1);
service.perform(templates[0]);
$scope.$apply();
expect(deleteModalService.open).toHaveBeenCalled();
}
it('should open the delete modal and show correct labels', testDoubleObject);
function testDoubleObject() {
var templates = generateTemplate(2);
service.perform(templates, $scope);
$scope.$apply();
expect(deleteModalService.open).toHaveBeenCalled();
}
it('should pass in a function that deletes an template', testMagnum);
function testMagnum() {
spyOn(magnumAPI, 'deleteClusterTemplate');
var templates = generateTemplate(1);
var template = templates[0];
service.perform(templates, $scope);
$scope.$apply();
var contextArg = deleteModalService.open.calls.argsFor(0)[2];
var deleteFunction = contextArg.deleteEntity;
deleteFunction(template.id);
}
});
});
})();