这是间歇性失败的测试:
context "as a regular_user" do
before :each do
@user = FactoryGirl.create(:user, :role => 'regular_user')
visit new_user_session_path unless current_path == new_user_session_path
fill_in "Email", :with => @user.email
fill_in "Password", :with => @user.password
click_button "Sign In"
end
it "removes thing from favorites while on thing index page" do
@things = FactoryGirl.create_list(:thing, 5)
@user.set_mark :favorite, @things.first
@user.reload.favorite_things
visit things_path unless current_path == things_path
expect{
first(:link, "Remove from favorites").click # Sometimes this fails
@user.reload.favorite_things
}.to change { @user.favorite_things.count }.by(-1)
page.should have_content("Sort by")
end
end
我正在使用 gem markable来提供收藏夹功能。
当我运行规范时,成功/失败似乎没有任何模式rspec
(它不像一旦失败它总是失败,反之亦然)。当规范运行guard
(spork
也正在使用)时可能存在一种模式,如果我开始guard
并且测试通过,那么它总是会在该实例guard
运行时通过......同样适用于失败 - 如果我开始guard
并且它失败,则该实例中的所有后续运行guard
也将失败。
刚才我跑去rspec spec/requests/users_spec.rb:148
运行那个规范,但它失败了:
1) Users as a regular_user removes thing from favorites while on thing index page
Failure/Error: click_link "Remove from favorites" # Sometimes this fails
Capybara::ElementNotFound:
Unable to find link "Remove from favorites"
# ./spec/requests/users_spec.rb:155:in `block (4 levels) in <top (required)>'
# ./spec/requests/users_spec.rb:153:in `block (3 levels) in <top (required)>'
在那之后我又跑了rspec spec/requests/users_spec.rb:148
一次,它成功了:
Finished in 0.83754 seconds
1 example, 0 failures
我尝试<% @things.each do |thing| %>
在视图文件的部分中添加“asdfasdf” index.html.erb
,并检查它,page.should have_content("asdfasdf")
但有时会失败。我尝试page.should have_selector('.favoritesblock', visible: true)
在块之前添加expect
(favoritesblock
存在于@things
视图中的同一块中),但有时会失败。<% @things.each do |thing| %>
但是,它永远不会在循环之外找到文本。
我save_and_open_page
在该行之前添加first(:link, "Remove from favorites").click # Sometimes this fails
,并且能够生成规范失败的实例。该页面仅包含两件事(我的FactoryGirl
电话应该是创建 5 个),并且它们都没有“从收藏夹中删除”链接(取决于该事物是否被收藏,它显示“添加到收藏夹”或“从收藏夹中删除” )。
基于此,我尝试稍微修改规范的前两行,但没有帮助(有时仍然失败):
5.times { FactoryGirl.create(:thing) }
@user.set_mark :favorite, Thing.first
我注意到的是,当它成功时,它确实会首先显示“从收藏夹中删除”链接,但并不总是显示所有 5 件事。
所以,我需要知道为什么这个规范会间歇性地失败,或者我还能做些什么来找出导致问题的原因。有任何想法吗?