horizon/openstack_dashboard/dashboards/identity/static/dashboard/identity/users/table/table.controller.spec.js

105 lines
3.2 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('Identity users table controller', function() {
var policy = { allowed: true };
function fakePolicy() {
return {
success: function(callback) {
callback(policy);
}
};
};
function fakePromise() {
return {
success: function() {}
};
};
function fakeToast() {
return {
add: function(type, msg) {}
};
};
var controller;
var toastService;
var policyAPI;
var keystoneAPI;
var staticUrl;
///////////////////////
beforeEach(module('horizon.framework.util.http'));
beforeEach(module('horizon.framework.util.i18n'));
beforeEach(module('horizon.framework.widgets.toast'));
beforeEach(module('horizon.openstack-service-api'));
beforeEach(module('hz.dashboard'));
beforeEach(module('hz.dashboard.identity'));
beforeEach(module('hz.dashboard.identity.users'));
beforeEach(inject(function($injector){
toastService = $injector.get('horizon.framework.widgets.toast.service');
policyAPI = $injector.get('horizon.openstack-service-api.policy');
keystoneAPI = $injector.get('horizon.openstack-service-api.keystone');
controller = $injector.get('$controller');
staticUrl = $injector.get('$window').STATIC_URL;
spyOn(toastService, 'add').and.callFake(fakeToast);
spyOn(policyAPI, 'check').and.callFake(fakePolicy);
spyOn(keystoneAPI, 'getUsers').and.callFake(fakePromise);
spyOn(keystoneAPI, 'getCurrentUserSession').and.callFake(fakePromise);
}));
function createController(){
return controller('identityUsersTableController', {
toast: toastService,
policyAPI: policyAPI,
keystoneAPI: keystoneAPI
});
}
it('should set path properly', function() {
var path = staticUrl + 'dashboard/identity/users/table/';
expect(createController().path).toEqual(path);
});
it('should invoke keystone apis if policy passes', function() {
policy.allowed = true;
createController();
expect(policyAPI.check).toHaveBeenCalled();
expect(keystoneAPI.getUsers).toHaveBeenCalled();
expect(keystoneAPI.getCurrentUserSession).toHaveBeenCalled();
});
it('should not invoke keystone apis if policy fails', function() {
policy.allowed = false;
createController();
expect(policyAPI.check).toHaveBeenCalled();
expect(toastService.add).toHaveBeenCalled();
expect(keystoneAPI.getUsers).not.toHaveBeenCalled();
expect(keystoneAPI.getCurrentUserSession).not.toHaveBeenCalled();
});
});
})();