octavia-dashboard/octavia_dashboard/static/dashboard/project/lbaasv2/workflow/listener/listener.controller.spec.js

146 lines
4.7 KiB
JavaScript

/*
* Copyright 2015 IBM Corp.
*
* 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('Listener Details Step', function() {
beforeEach(module('horizon.framework.util.i18n'));
beforeEach(module('horizon.dashboard.project.lbaasv2'));
describe('ListenerDetailsController', function() {
var ctrl, workflow, listener, scope;
beforeEach(inject(function($controller) {
workflow = {
steps: [{ id: 'listener' }],
after: angular.noop,
remove: angular.noop
};
listener = {
protocol: null,
protocol_port: 80
};
scope = {
model: {
context: {
create_listener: true,
create_pool: true,
create_monitor: true
},
listenerPorts: [80],
members: [{port: ''}, {port: ''}],
spec: {
listener: listener,
members: [{port: ''}, {port: ''}]
}
},
workflow: workflow
};
ctrl = $controller('ListenerDetailsController', { $scope: scope });
}));
it('should define error messages for invalid fields', function() {
expect(ctrl.portNumberError).toBeDefined();
expect(ctrl.portUniqueError).toBeDefined();
});
it('should update port on protocol change to HTTP', function() {
ctrl.protocolChange('HTTP');
expect(listener.protocol_port).toBe(81);
});
it('should update port on protocol change to TERMINATED_HTTPS', function() {
ctrl.protocolChange('TERMINATED_HTTPS');
expect(listener.protocol_port).toBe(443);
});
it('should update port on protocol change to PROMETHEUS', function() {
ctrl.protocolChange('PROMETHEUS');
expect(listener.protocol_port).toBe(9100);
});
it('should update port on protocol change to TCP', function() {
ctrl.protocolChange('TCP');
expect(listener.protocol_port).toBeUndefined();
});
it('should update port on protocol change to UDP', function() {
ctrl.protocolChange('UDP');
expect(listener.protocol_port).toBeUndefined();
});
it('should update port on protocol change to SCTP', function() {
ctrl.protocolChange('SCTP');
expect(listener.protocol_port).toBeUndefined();
});
it('should update member ports on protocol change to TERMINATED_HTTPS', function() {
ctrl.protocolChange('TERMINATED_HTTPS');
scope.model.members.concat(scope.model.spec.members).forEach(function(member) {
expect(member.port).toBe(80);
});
});
it('should update member ports on protocol change to HTTP', function() {
ctrl.protocolChange('HTTP');
scope.model.members.concat(scope.model.spec.members).forEach(function(member) {
expect(member.port).toBe(80);
});
});
it('should update member ports on protocol change to TCP', function() {
ctrl.protocolChange('TCP');
scope.model.members.concat(scope.model.spec.members).forEach(function(member) {
expect(member.port).toBeUndefined();
});
});
it('should update member ports on protocol change to UDP', function() {
ctrl.protocolChange('UDP');
scope.model.members.concat(scope.model.spec.members).forEach(function(member) {
expect(member.port).toBeUndefined();
});
});
it('should update member ports on protocol change to SCTP', function() {
ctrl.protocolChange('SCTP');
scope.model.members.concat(scope.model.spec.members).forEach(function(member) {
expect(member.port).toBeUndefined();
});
});
it('should update create_pool and create_monitor flags', function() {
scope.model.context.create_listener = true;
ctrl.createChange();
expect(scope.model.context.create_pool).toBe(true);
expect(scope.model.context.create_monitor).toBe(true);
scope.model.context.create_listener = false;
ctrl.createChange();
expect(scope.model.context.create_pool).toBe(false);
expect(scope.model.context.create_monitor).toBe(false);
});
});
});
})();