0ef248a864
This patch move listFunction and urlFunction in module.js into service.js It is same as horizon's implementation and it will be able to add tests. This patch adds javascript tests for the following modules. - horizon.dashboard.container-infra.clusters.service - horizon.dashboard.container-infra.clusterTemplates.service Change-Id: I4388e2e45dfa39e177ccb92df714118f0008f982
52 lines
1.7 KiB
JavaScript
52 lines
1.7 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('cluster templates service', function() {
|
|
var service;
|
|
beforeEach(module('horizon.dashboard.container-infra.cluster-templates'));
|
|
beforeEach(inject(function($injector) {
|
|
service = $injector.get('horizon.dashboard.container-infra.clusters.service');
|
|
}));
|
|
|
|
describe('getClustersPromise', function() {
|
|
it("provides a promise", inject(function($q, $injector, $timeout) {
|
|
var magnum = $injector.get('horizon.app.core.openstack-service-api.magnum');
|
|
var deferred = $q.defer();
|
|
spyOn(magnum, 'getClusters').and.returnValue(deferred.promise);
|
|
var result = service.getClustersPromise({});
|
|
deferred.resolve({
|
|
data:{
|
|
items: [{id: 123, name: 'cluster1'}]
|
|
}
|
|
});
|
|
$timeout.flush();
|
|
expect(magnum.getClusters).toHaveBeenCalled();
|
|
expect(result.$$state.value.data.items[0].name).toBe('cluster1');
|
|
}));
|
|
});
|
|
|
|
describe('urlFunction', function() {
|
|
it("get url", inject(function() {
|
|
var result = service.urlFunction({id:"123abc"});
|
|
expect(result).toBe("project/ngdetails/OS::Magnum::Cluster/123abc");
|
|
}));
|
|
});
|
|
|
|
});
|
|
|
|
})();
|