这是我的密码
function guestDeviceManagerController(guestService, status) {
vm.initState = function() {
guestService.isUserAdmin(status.standardId).then(function(isAdmin) {
vm.isAdmin = isAdmin;
vm.template = vm.isAdmin ? vm.templates[0] : vm.templates[1];
}, function() {
//TODO: display user error
});
};
vm.initState();
}我想知道如何模拟这个请求,在SpyOn()中应该在哪里完成它,如果是的话,我需要测试响应是否返回为false和true。
作了以下修改:
describe('guestDeviceManagerController Tests', function() {
'use strict';
var scope,
controller,
statusService,
guestService,
q;
beforeEach(function() {
module('mainApp');
module('mobileDevicesModule');
inject(function($rootScope, $controller, $q, _statusService_, _guestService_) {
scope = $rootScope.$new();
statusService = _statusService_;
guestService = _guestService_;
q = $q;
controller = $controller('guestController', {
$scope: scope,
guestService: guestService
});
});
});
it('Assert view that should render for admin', function() {
spyOn(guestService, 'isUserAdmin').and.returnValue(q.when(true));
scope.$apply();
controller.initState();
expect(controller.template.url).toEqual('app/mobile-devices/guest/admin/guest.html');
});
});现在获得以下错误: error:意外请求:获取http://localhost:34327/guest//IsAdmin
发布于 2015-09-02 11:29:30
要用真正的isAdmin结果测试成功路径:
spyOn(guestService, 'isUserAdmin').andReturn($q.when(true));若要使用错误的isAdmin结果测试成功路径:
spyOn(guestService, 'isUserAdmin').andReturn($q.when(false));要测试错误路径:
spyOn(guestService, 'isUserAdmin').andReturn($q.reject());读$q文档。
请确保在需要时调用$rootScope.$apply()来实际解决/拒绝承诺。
例如:
// spy the service:
spyOn(guestService, 'isUserAdmin').andReturn($q.when(true));
// instantiate the controller:
$controller('guestDeviceManagerController');
// resolve/reject the promises. This will cause the callback functions to be called
$rootScope.$apply();
// now test that the callback has done what it's supposed to dohttps://stackoverflow.com/questions/32351870
复制相似问题