我正在创建一个js小部件,第一部分是添加脚本宽度javascript,就像这样(来自谷歌分析的例子):
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
如何用茉莉花测试它(使用固定装置?)?
答案 0 :(得分:23)
为了在我的规范中设置HTML装置,我写了jasmine-fixture。有了它,你可以做这样的事情:
var $foo, $input;
beforeEach(function(){
$foo = affix('.foo');
# appends to the DOM <div class="foo"></div>
$input = $foo.affix('input[id="name"][value="Jim"]');
# appends <input id="name" value="Jim"/> beneath the .foo div
之后,它会在你之后清理干净。
对于DOM状态的期望,我使用jasmine-jquery。它提供了大量的匹配器,如下所示:
it('is named Jim', function(){
expect($input).toHaveValue("Jim");
});
答案 1 :(得分:4)
我想您可以执行操作,然后检查第一个脚本标记上的href,如下所示:
function addGA(){
var ga = document.createElement('script');
ga.type = 'text/javascript'; ga.async = true;
ga.src =
('https:' == document.location.protocol ? 'https://ssl' : 'http://www')
+ '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
};
Jasmine spec:
var href = 'http://www.google-analytics.com/ga.js';
expect(document.getElementsByTagName('script')[0].href).not.toEqual(href);
addGa();
expect(document.getElementsByTagName('script')[0].href).toEqual(href);
但是,有兴趣听一个更好的方法。使用Jasmine检查DOM总觉得有点hacky。
答案 2 :(得分:3)
使用Jasmine进行繁重的DOM测试,您可以使用Jasmine Headless WebKit。