3

这是间歇性失败的测试:

  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(它不像一旦失败它总是失败,反之亦然)。当规范运行guardspork也正在使用)时可能存在一种模式,如果我开始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)在块之前添加expectfavoritesblock存在于@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 件事。

所以,我需要知道为什么这个规范会间歇性地失败,或者我还能做些什么来找出导致问题的原因。有任何想法吗?

4

1 回答 1

1

我设置工厂的方式是间歇性 rspec 失败的原因。

该项目有一个布尔字段 ,active它要么在站点上显示该事物(如果它是true),要么不在站点上显示该事物(如果它是false)。

我的工厂很聪明,并将该字段设置为f.active { [true, false].sample }. 所以,工厂有时会创造活动的东西,有时会创造不活动的东西。我故意创建我的工厂以这种方式运行,因为我希望默认工厂创建尽可能广泛的现实世界事物选择。我只需要记住,有时需要手动设置某些方面——比如在这种情况下,我只需要创建活动的东西。

解决方法是将我的规范更改为仅创建活动的东西:

@things = FactoryGirl.create_list(:thing, 5, :active => true)
于 2013-02-18T01:16:59.833 回答