使用Jasmine测试继承方法的最佳方法是什么?
我只对测试它是否被调用感兴趣,因为我已经为基类设置了单元测试。
示例是:
YUI().use('node', function (Y) {
function ObjectOne () {
}
ObjectOne.prototype.methodOne = function () {
console.log("parent method");
}
function ObjectTwo () {
ObjectTwo.superclass.constructor.apply(this, arguments);
}
Y.extend(ObjectTwo, ObjectOne);
ObjectTwo.prototype.methodOne = function () {
console.log("child method");
ObjectTwo.superclass.methodOne.apply(this, arguments);
}
})
我想测试ObjectTwo的继承方法是否已被调用。
提前致谢。
答案 0 :(得分:3)
要执行此操作,您可以在ObjectOne
。
spyOn(ObjectOne.prototype, "methodOne").andCallThrough();
obj.methodOne();
expect(ObjectOne.prototype.methodOne).toHaveBeenCalled();
这种方法唯一需要注意的是,它不会检查methodOne
对象上是否调用了obj
。如果您需要确保在obj
对象上调用它,则可以执行以下操作:
var obj = new ObjectTwo();
var callCount = 0;
// We add a spy to check the "this" value of the call. //
// This is the only way to know if it was called on "obj" //
spyOn(ObjectOne.prototype, "methodOne").andCallFake(function () {
if (this == obj)
callCount++;
// We call the function we are spying once we are done //
ObjectOne.prototype.methodOne.originalValue.apply(this, arguments);
});
// This will increment the callCount. //
obj.methodOne();
expect(callCount).toBe(1);
// This won't increment the callCount since "this" will be equal to "obj2". //
var obj2 = new ObjectTwo();
obj2.methodOne();
expect(callCount).toBe(1);