如何使用 Jasmine 对链式方法进行单元测试

How to unit test a chained method using Jasmine(如何使用 Jasmine 对链式方法进行单元测试)
本文介绍了如何使用 Jasmine 对链式方法进行单元测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在对以下方法进行单元测试时遇到问题:

I'm having a problem unit testing the following method:

 $scope.changeLocation = function (url) {
        $location.path(url).search({ ref: "outline" });
    };

我编写了以下单元测试,但当前失败并出现此错误(TypeError: Cannot read property 'search' of undefined):

I've written the following unit test that currently fails with this error (TypeError: Cannot read property 'search' of undefined):

var $locationMock = { path: function () { }, search: function () { } };

it('changeLocation should update location correctly', function () {
        $controllerConstructor('CourseOutlineCtrl', { $scope: $scope, $location: $locationMock });

        var url = "/url/";
        spyOn($locationMock, "path");
        spyOn($locationMock, "search");

        $scope.changeLocation(url);

        expect($locationMock.search).toHaveBeenCalledWith({ ref: "outline" });
        expect($locationMock.path).toHaveBeenCalledWith(url);
    });

如果我将函数更改为以下,则测试通过:

If I change my function to the following, the test passes:

$scope.changeLocation = function (url) {
        $location.path(url);
        $location.search({ ref: "outline" });
    };

当我使用方法链接时,如何对这个方法进行单元测试?我需要以不同的方式设置我的 $locationMock 吗?对于我的生活,我无法弄清楚这一点.

How do I unit test this method when I'm using method chaining? Do I need to setup my $locationMock differently? For the life of me I cannot figure this out.

推荐答案

那是因为你的 mock 没有返回 location 对象以便能够链接.使用 Jasmine 2.0,您可以将模拟更改为:

That is because your mock does not return location object to be able to chain through. Using Jasmine 2.0 you can change your mock to:

var $locationMock = { path: function () { return $locationMock; }, 
                      search: function () { return $locationMock; } };

spyOn($locationMock, "path").and.callThrough();
spyOn($locationMock, "search").and.callThrough(); //if you are chaining from search

或添加:

spyOn($locationMock, "path").and.returnValue($locationMock);
spyOn($locationMock, "search").and.returnValue($locationMock); //if you are chaining from search

或者只是创建一个间谍对象(更少的代码):

Or just create a spy object (less code):

var $locationMock = jasmine.createSpyObj('locationMock', ['path', 'search']);

$locationMock.path.and.returnValue($locationMock);
$locationMock.search.and.returnValue($locationMock); //if you are chaining from search

这篇关于如何使用 Jasmine 对链式方法进行单元测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)