对流星,速度和茉莉很新,所以不确定我做错了什么,使用Jasmine做的不是它的设计,或者这只是它的工作方式。
我发现我需要为我的几乎所有测试设置超时才能让它们通过。应该是这种情况还是我做错了什么?
例如我正在运行的一些测试来检查验证消息:
describe("add quote validation", function() {
beforeEach(function (done) {
Router.go('addQuote');
Tracker.afterFlush(function(){
done();
});
});
beforeEach(waitForRouter);
it("should show validation when Quote is missing", function(done) {
$('#quote').val('');
$('#author').val('Some author');
Meteor.setTimeout(function(){
$('#addQuoteBtn').click();
}, 500);
Meteor.setTimeout(function(){
expect($('.parsley-custom-error-message').text()).toEqual("Quote can't be empty.");
done();
}, 500);
});
}
答案 0 :(得分:5)
好的,我们已经遇到了同样的问题并设计了一个非常优雅的解决方案,它不需要超时,是运行测试的最快方法。基本上,我们使用两种策略中的一种,具体取决于您正在等待的屏幕元素。
所有代码都进入tests / mocha / client / lib.coffee,而不是100%的Jasmine等价物,但它应该可用于所有客户端测试代码。我把它留在了Coffeescript中,但你可以在coffeescript.org上将它编译成Javascript,它也可以正常工作。
如果您执行的任何操作(路由或其他更改反应变量等)导致Template
(重新)渲染,您可以使用Template.<your_template>.rendered
挂钩检测何时完成渲染。因此,我们在lib.coffee中添加了以下功能:
@afterRendered = (template,f)->
cb = template.rendered
template.rendered = ->
cb?()
template.rendered = cb
f?()
return
return
它做什么?它基本上记得&#34;原始rendered
回调和暂时将其替换为在呈现template
并调用原始回调之后调用额外函数的回调。它需要做这种内务管理,以避免破坏任何可能依赖于rendered
回调的代码,因为你基本上直接搞乱了Meteor代码。
在测试中,您可以执行以下操作:
it.only "should check stuff after routing", (done)->
try
Router.go "<somewhere>"
afterRendered Template.<expected_template>, ->
<your tests here>
done()
catch e
done(e)
我也建议尝试使用try-catch,因为我注意到异步错误并不总是进入速度系统,只是给你超时失败。
好的,那么有些东西实际上并没有重新渲染,而是通过JS或某种&#34;显示/隐藏&#34;生成的。机制。为此,您确实需要某种超时,但您可以减少&#34;时间成本&#34;使用轮询机制的超时时间。
# evaluates if a JQuery element is visible or not
$.fn.visible = -> this.length > 0 and this.css('display') isnt 'none'
# This superduper JQuery helper function will trigger a function when an element becomes visible (display != none). If the element is already visible, it triggers immediately.
$.fn.onVisible = (fn,it)->
sel = this.selector
if this.visible()
console.log "Found immediately"
fn?(this)
else
counter = 0
timer = setInterval ->
counter++
el = $(sel)
if el.visible()
fn?(el)
clearInterval timer
console.log "Found on iteration #{counter}"
else
it?(el)
, 50
如果您愿意,可以删除控制台日志记录和辅助it
迭代器功能,它们并不重要。这允许您在测试中执行以下操作:
$('#modalId').onVisible (el)->
<tests here>
done()
, (el)->
console.log "Waiting for #{el.selector}"
如果需要,可以删除第二个函数,它是上面提到的it
迭代器函数。但请注意,此特定代码适用于&#34; display:hidden&#34;作为隐身的标记(Bootstrap这样做)。如果您的代码使用其他机制隐藏/显示部件,请更改它。
对我们来说就像一个魅力!