senlin-dashboard/senlin_dashboard/static/app/core/receivers/receivers.service.spec.js

60 lines
2.2 KiB
JavaScript

/*
* 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('receiver service', function() {
var service, $scope, detailRoute;
beforeEach(module('horizon.app.core'));
beforeEach(module('horizon.cluster'));
beforeEach(inject(function($injector, _$rootScope_) {
service = $injector.get('horizon.cluster.receivers.service');
detailRoute = $injector.get('horizon.app.core.detailRoute');
$scope = _$rootScope_.$new();
}));
it("getDetailsPath creates urls using the item's ID", function() {
var myItem = {id: "666"};
expect(service.getDetailsPath(myItem)).toBe(detailRoute + 'OS::Senlin::Receiver/666');
});
describe('getReceiverPromise', function() {
it("get receiver promise", inject(function($q, $injector) {
var senlin = $injector.get('horizon.app.core.openstack-service-api.senlin');
var deferred = $q.defer();
spyOn(senlin, 'getReceiver').and.returnValue(deferred.promise);
var result = service.getReceiverPromise({});
deferred.resolve({id: 1, name: 'test-receiver'});
$scope.$apply();
expect(result.$$state.value.id).toBe(1);
}));
});
describe('getReceiversPromise', function() {
it("get receivers promise", inject(function($q, $injector) {
var senlin = $injector.get('horizon.app.core.openstack-service-api.senlin');
var deferred = $q.defer();
spyOn(senlin, 'getReceivers').and.returnValue(deferred.promise);
var result = service.getReceiversPromise({});
deferred.resolve({data: {items: [{id: 1, name: 'test-receiver'}]}});
$scope.$apply();
expect(result.$$state.value.data.items[0].name).toBe('test-receiver');
}));
});
});
})();