web-dev-qa-db-fra.com

Comment changer la valeur de retour de Jasmine Spy?

J'utilise Jasmine pour créer un espion comme celui-ci:

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']);
}));

J'aimerais pouvoir changer ce qui est retourné par les différentes méthodes de authService.

Voici comment sont configurés les tests:

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()
    })
})

Voici comment le contrôleur est configuré:

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})
        });
    }]);

Essentiellement, j'aimerais pouvoir modifier la valeur de retour des méthodes espionnées. Cependant, je ne suis pas sûr d’aborder correctement le problème en utilisant jasmine.createSpyObj.

34

Essayez ceci à la place. L'API a changé pour Jasmine 2.0:

authService.currentUser.and.returnValue('bob');

Documentation:

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

58
sma