3

我已经阅读了这篇文章(和其他文章),但我无法让这个简单的单元测试工作。我正在使用 Jasmine 的第 2 版。我的工厂很简单:

angular.module('myApp')
    .factory('detectPath', function ($location, $rootScope) {
        'use strict';
        var locationPath = $location.path()
        function getPath () {
            if (locationPath === '/') {
                locationPath = 'home';
            } else {
                locationPath = '';
            }
            $rootScope.path = locationPath;
        }
        getPath();
        return locationPath;
    });

我的单元测试也很简单:

'use strict';
describe('Factory: detectPath', function () {
    var detectPath, $rootScope, $location;

    beforeEach(module('myApp'));
    beforeEach(inject(function (_detectPath_, _$rootScope_, _$location_) {
        detectPath = _detectPath_;
        $rootScope = _$rootScope_;
        $location = _$location_;
        spyOn($location, 'path').and.returnValue('/');
    }));

    it('should return pathName', function ($location) {
        expect($rootScope.path).toBe('home');
    });
});

这没有通过测试(我得到错误期望 false 是“家”)。

我做错了什么?有没有办法验证 spyOn 已被调用(仅一次)?

4

1 回答 1

10

您的代码有两个主要问题。

首先,您的getPath()函数在设置 spy 之前执行。您应该在之前设置间谍beforeEach或在测试中注入您的工厂(我选择了第二种解决方案)。

第二个问题(还没有影响测试)是你$location用测试的函数参数隐藏了你的变量——你将无法访问它,因为它总是未定义的。删除此参数后,我可以测试是否已使用expect(...).toHaveBeenCalled().

这是一个工作代码:

describe('Factory: detectPath', function () {
    var detectPath, $rootScope, $location;

    beforeEach(module('myApp'));
    beforeEach(inject(function (_$rootScope_, _$location_) {
        $rootScope = _$rootScope_;
        $location = _$location_;
        spyOn($location, 'path').and.returnValue('/');
    }));

    it('should return pathName', function () {
        inject(function (detectPath) {
            expect($location.path).toHaveBeenCalled();
            expect($rootScope.path).toBe('home');
        });
    });
});

还有JSFiddle(使用 Jasmine 1.3,但此示例中的唯一区别是您and.returnValue在 Jasmine 2 和returnValueJasmine 1.3 中调用)。

于 2015-05-02T10:26:03.367 回答