angularjs – 如何改变茉莉花间谍的回报值?

我正在使用茉莉花创建一个这样的间谍:
beforeEach(inject(function ($injector) {
    $rootScope = $injector.get('$rootScope');
    $state = $injector.get('$state');
    $controller = $injector.get('$controller');

    socket = new sockMock($rootScope);

    //this is the line of interest
    authService = jasmine.createSpyObj('authService',['login','logout','currentUser']);
}));

我想要更改authService的各种方法返回的内容.

以下是实际测试的设置:

function createController() {
    return $controller('UserMatchingController',{'$scope': $rootScope,'socket':socket,'authService': authService });
}

describe('on initialization',function(){
    it('socket should emit a match',function() {
        createController();

        expect(socket.emits['match'].length).toBe(1);
    });

    it('should transition to users.matched upon receiving matched',function(){

        //this line fails with "TypeError: undefined is not a function"
        authService.currentUser.andReturn('bob');

        createController();

        $state.expectTransitionTo('users.matched');
        socket.receive('matchedblah',{name: 'name'});

        expect(authService.currentUser).toHaveBeenCalled()
    })
})

控制器的设置方式如下:

lunchrControllers.controller('UserMatchingController',['$state','socket','authService',function ($state,socket,authService) {
        socket.emit('match',{user: authService.currentUser()});

        socket.on('matched' + authService.currentUser(),function (data) {
            $state.go('users.matched',{name: data.name})
        });
    }]);

从本质上讲,我希望能够更改间谍方法的返回值.但是,我不知道如果我正在使用jasmine.createSpyObj正确地解决了这个问题.

试试这个. Jasmine 2.0的API已更改:
authService.currentUser.and.returnValue('bob');

文档:

http://jasmine.github.io/2.0/introduction.html#section-Spies

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...