Does Jasmine's toThrow matcher require the argument to be wrapped in an anonymous function?

不羁岁月 提交于 2019-12-28 05:36:08

问题


The documentation at https://github.com/pivotal/jasmine/wiki/Matchers includes the following:

expect(function(){fn();}).toThrow(e);

As discussed in this question, the following does not work because we want to pass a function object to expect rather than the result of calling fn()

expect(fn()).toThrow(e);

Question 1: Does the following work?

expect(fn).toThrow(e);

Question 2: If I've defined an object thing with a method doIt, does the following work?

expect(thing.doIt).toThrow(e);

(2a: if so, is there a way to pass arguments to the doIt method?)

Empirically the answer seems to be yes but I don't trust my understanding of js scoping quite enough to be sure.

Thanks!


回答1:


We can do away with the anonymous function wrapper by using Function.bind, which was introduced in ECMAScript 5. This works in the latest versions of browsers, and you can patch older browsers by defining the function yourself. An example definition is given at the Mozilla Developer Network.

Here's an example of how bind can be used with Jasmine.

describe('using bind with jasmine', function() {

    var f = function(x) {
        if(x === 2) {
            throw new Error();
        }
    }

    it('lets us avoid using an anonymous function', function() {
        expect(f.bind(null, 2)).toThrow();
    });

});

The first argument provided to bind is used as the this variable when f is called. Any additional arguments are passed to f when it is invoked. Here 2 is being passed as its first and only argument.




回答2:


Lets take a look at the Jasmine source code:

try {
  this.actual();
} catch (e) {
  exception = e;
}
if (exception) {
  result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected));
}

This is the core part of the toThrow method. So all the method does is to execute the method you want to expect and check if a exception was thrown. So in your examples fn or thing.doIt will be called in the Jasmine will check if a error was thrown and if the type of this error is the one you passed into toThrow.




回答3:


Sadly, it seems that if I need to test a function that takes parameters, then I will need to wrap it with a function.

I would rather have preferred,

expect(myTestFunction, arg1, arg2).toThrow();

But I am ok with explicitly doing

expect(function(){myTestFunction(arg1, arg2);}).toThrow("some error");

FYI note that we can also use regex match on error:

expect(function (){myTestFunction(arg1, arg2);}).toThrowError(/err/);



回答4:


If it is used like this:

expect(myTestFunction(arg)).toThrowAnyError(); // incorrect

Then the function myTestFunction(arg) is executed before expect(...) and throw an exception before Jasmine has any chance of doing anything and it crashes the test resulting in an automatic failure.

If the function myTestFunction(arg) is not throwing anything (i.e. the code is not working as expected), then Jasmine would only get the result of the function and check that for errors - which is incorrect.

To alleviate this, the code that is expected to throw an error is supposed to be wrapped in a function. This is passed to Jasmine which will execute it and check for the expected exception.

expect(() => myTestFunction(arg)).toThrowAnyError(); // correct



来源:https://stackoverflow.com/questions/9500586/does-jasmines-tothrow-matcher-require-the-argument-to-be-wrapped-in-an-anonymou

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!