
This patch updates the imported code to reflect octavia-dashboard. More work is required to make this work with the Octavia v2 API. This will be done in followup patches. Change-Id: I7363105a53642d0003036cada21c5b0cc25efc1a
81 lines
2.7 KiB
JavaScript
81 lines
2.7 KiB
JavaScript
/*
|
|
* Copyright 2016 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('LBaaS v2 Healthmonitor Detail Controller', function() {
|
|
var lbaasv2API, ctrl;
|
|
|
|
function fakeAPI() {
|
|
return {
|
|
success: function(callback) {
|
|
callback('foo');
|
|
}
|
|
};
|
|
}
|
|
|
|
function loadbalancerAPI() {
|
|
var loadbalancer = { provisioning_status: 'ACTIVE' };
|
|
return {
|
|
success: function(callback) {
|
|
callback(loadbalancer);
|
|
},
|
|
then: function(callback) {
|
|
callback({ data: loadbalancer });
|
|
}
|
|
};
|
|
}
|
|
|
|
///////////////////////
|
|
|
|
beforeEach(module('horizon.framework.util'));
|
|
beforeEach(module('horizon.framework.widgets'));
|
|
beforeEach(module('horizon.framework.conf'));
|
|
beforeEach(module('horizon.app.core.openstack-service-api'));
|
|
beforeEach(module('horizon.dashboard.project.lbaasv2'));
|
|
|
|
beforeEach(inject(function($injector) {
|
|
lbaasv2API = $injector.get('horizon.app.core.openstack-service-api.lbaasv2');
|
|
spyOn(lbaasv2API, 'getHealthMonitor').and.callFake(fakeAPI);
|
|
spyOn(lbaasv2API, 'getPool').and.callFake(fakeAPI);
|
|
spyOn(lbaasv2API, 'getListener').and.callFake(fakeAPI);
|
|
spyOn(lbaasv2API, 'getLoadBalancer').and.callFake(loadbalancerAPI);
|
|
var controller = $injector.get('$controller');
|
|
ctrl = controller('HealthMonitorDetailController', {
|
|
$routeParams: {
|
|
loadbalancerId: 'loadbalancerId',
|
|
listenerId: 'listenerId',
|
|
poolId: 'poolId',
|
|
healthmonitorId: 'healthmonitorId'
|
|
}
|
|
});
|
|
}));
|
|
|
|
it('should invoke lbaasv2 apis', function() {
|
|
expect(lbaasv2API.getHealthMonitor).toHaveBeenCalledWith('healthmonitorId');
|
|
expect(lbaasv2API.getPool).toHaveBeenCalledWith('poolId');
|
|
expect(lbaasv2API.getListener).toHaveBeenCalledWith('listenerId');
|
|
expect(lbaasv2API.getLoadBalancer).toHaveBeenCalledWith('loadbalancerId');
|
|
expect(ctrl.loadbalancer).toEqual({ provisioning_status: 'ACTIVE' });
|
|
expect(ctrl.listener).toBe('foo');
|
|
expect(ctrl.pool).toBe('foo');
|
|
expect(ctrl.healthmonitor).toBe('foo');
|
|
});
|
|
|
|
});
|
|
|
|
})();
|