我目前正在撰写Google Chrome扩展程序并使用Jasmine 1.3.0对其进行测试。扩展是一个相当简单的字典扩展,它接受用户双击以突出显示的单词,将其传递给后台,并使一些字典调用显示在弹出窗口中。现在我正在尝试测试背景确实接收到使用requireJS(http://requirejs.org/)从内容脚本传递的消息。我的第一个测试addListener
被调用,但是随后的测试失败了。这是background_spec.js:
describe("background message passing", function() {
beforeEach(function() {
chrome = {
runtime : {
onMessage : {
addListener : function() {}
}
}
}
spyOn(chrome.runtime.onMessage, 'addListener').andCallThrough();
});
it("should add a listener", function() {
runs(function() {
require(['background']);
});
waits(100);
runs(function() {
expect(chrome.runtime.onMessage.addListener).toHaveBeenCalled();
});
});
it("should call the listener with a function", function() {
runs(function() {
require(['background']);
});
waits(100);
runs(function() {
expect(chrome.runtime.onMessage.addListener).toHaveBeenCalledWith(
jasmine.any(Function));
});
});
it("should save the input", function() {
runs(function() {
require(['background']);
});
waits(100);
runs(function() {
var word;
listener = chrome.runtime.onMessage.addListener.mostRecentCall.args[0];
expect(listener).toBeDefined();
/*
listener({input: "foo"}, {}, function(){});
expect(word).toBeDefined();
expect(word).toEqual("foo");
*/
});
});
});
我称之为haveBeenCalledWith
的第二个规范表示根本没有调用addListener
。第三个规范报告mostRecentCall.args
未定义,并且无法访问未定义的属性0。 (进一步调试显示mostRecentCall
返回一个空对象。)
这是background.js,为了更好的衡量标准:
var word;
chrome.runtime.onMessage.addListener(
function(msg, sender, sendResponse) {
if (msg.input) {
word = msg.input;
sendResponse({success: "Message received"});
}
});
如果有人能看出我的错误,我会很感激。我是Jasmine和requireJS的新手,而且我已经没有想法了。
答案 0 :(得分:0)
我使用的是Jasmine 2.0.0,我所做的只是将var
添加到chrome对象:
var chrome ;
beforeEach(function(){
chrome = {
runtime : {
onMessage : {
addListener : function() {}
}
}
}
spyOn(chrome.runtime.onMessage, 'addListener').andCallThrough();
});