web-dev-qa-db-ja.com

JasmineのtoHaveBeenCalledWithメソッドでオブジェクトタイプを使用する

Jasmineを使い始めたばかりなので、初心者の質問はご容赦ください。しかし、toHaveBeenCalledWithを使用する際にオブジェクトタイプをテストすることは可能ですか?

expect(object.method).toHaveBeenCalledWith(instanceof String);

私はこれができることを知っていますが、それは引数ではなく戻り値をチェックしています。

expect(k instanceof namespace.Klass).toBeTruthy();
55
screenm0nkey

toHaveBeenCalledWithはスパイのメソッドです。 docs で説明されているように、スパイでのみ呼び出すことができます:

// your class to test
var Klass = function () {
};

Klass.prototype.method = function (arg) {
  return arg;
};


//the test
describe("spy behavior", function() {

  it('should spy on an instance method of a Klass', function() {
    // create a new instance
    var obj = new Klass();
    //spy on the method
    spyOn(obj, 'method');
    //call the method with some arguments
    obj.method('foo argument');
    //test the method was called with the arguments
    expect(obj.method).toHaveBeenCalledWith('foo argument');   
    //test that the instance of the last called argument is string 
    expect(obj.method.calls.mostRecent().args[0] instanceof String).toBeTruthy();
  });

});
51

jasmine.any() を使用して、よりクールなメカニズムを発見しました。これは、手動で引数を分解すると読みにくくなるためです。

CoffeeScriptの場合:

obj = {}
obj.method = (arg1, arg2) ->

describe "callback", ->

   it "should be called with 'world' as second argument", ->
     spyOn(obj, 'method')
     obj.method('hello', 'world')
     expect(obj.method).toHaveBeenCalledWith(jasmine.any(String), 'world')
95
Wolfram Arnold