
This patch breaks up launc-instance.js into small pieces according to Horizon code style. Change-Id: I852943a5223289391b1b8a315be80a48dcd39fb6 Partially-Implements: blueprint jscs-cleanup
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
/*
|
|
* (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
*
|
|
* 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('LaunchInstanceWizardController tests', function() {
|
|
var ctrl;
|
|
var model = {
|
|
createInstance: function() {
|
|
return 'created';
|
|
},
|
|
initialize: angular.noop
|
|
};
|
|
var scope = {};
|
|
|
|
beforeEach(module('hz.dashboard'));
|
|
beforeEach(module(function ($provide) {
|
|
$provide.value('serviceCatalog', {});
|
|
$provide.value('launchInstanceModel', model);
|
|
$provide.value('hz.dashboard.launch-instance.workflow', { thing: true });
|
|
}));
|
|
beforeEach(inject(function ($controller) {
|
|
spyOn(model, 'initialize');
|
|
var locals = {
|
|
$scope: scope
|
|
};
|
|
ctrl = $controller('LaunchInstanceWizardController', locals);
|
|
}));
|
|
|
|
it('defines the controller', function() {
|
|
expect(ctrl).toBeDefined();
|
|
});
|
|
|
|
it('calls initialize on the given model', function() {
|
|
expect(scope.model.initialize).toHaveBeenCalled();
|
|
});
|
|
|
|
it('sets scope.workflow to the given workflow', function() {
|
|
expect(scope.workflow).toEqual({ thing: true });
|
|
});
|
|
|
|
it('defines scope.submit', function() {
|
|
expect(scope.submit).toBeDefined();
|
|
expect(scope.submit()).toBe('created');
|
|
});
|
|
});
|
|
|
|
})();
|