1

私の人生では、時々ランダムなエラーをスローしないように rspec/capybara をセットアップすることはできないようです。私の最も一般的なエラー (ただし一貫性はありません) は、次のようなものです。

An error occurred in an after hook
  ActiveRecord::RecordNotFound: Couldn't find Post with id=1
  occurred at [...]/gems/activerecord-3.2.11/lib/active_record/relation/finder_methods.rb:341:in `find_one'

近い秒は、仕様内で作成され、後で見つからないモデル オブジェクトを期待することに関連するものです。たとえば、次のようなもの

Sorter should populate featured_posts with appropriate posts
Failure/Error: Sorter.top_4.map(&:id).should eq(([best_new_post, best_old_post] + new_posts.last(2).reverse).map(&:id))

   expected: [2, 1, 40, 38]
        got: []

これらのテストは、個別に実行すると常に成功し、スイートで実行すると常に失敗するとは限りません。スレッドとデータベースの設定方法に何らかの問題があると想定していますが、それを理解できないようです。

spec_helper.rbはさまざまなソースからのアドバイスの寄せ集めです:

require 'rubygems'
require 'spork'

Spork.prefork do
  ENV["RAILS_ENV"] ||= 'test'
  require File.expand_path("../../config/environment", __FILE__)
  require 'rspec/rails'
  require 'rspec/autorun'
  require 'capybara/rspec'
  require 'capybara/email/rspec'
  include ApplicationHelper

  Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}

  include Warden::Test::Helpers
  Warden.test_mode!

  ActionController::Base.asset_host = "http://localhost:3000"

  RSpec.configure do |config|
    config.include Rails.application.routes.url_helpers

    config.use_transactional_fixtures = false
    config.use_transactional_examples = false #factoryGirl

    # From http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html
    config.before(:suite) do
      DatabaseCleaner.strategy = :truncation
      DatabaseCleaner.clean_with(:truncation)
    end
    config.before(:each) { DatabaseCleaner.start }
    config.after(:each) { DatabaseCleaner.clean }
    #

    config.infer_base_class_for_anonymous_controllers = false

    ## Setting up email helpers
    config.include MailerMacros
    config.before(:each) { reset_email }

    ## Setting up test and login helpers for Devise testing
    config.include Devise::TestHelpers, type: :controller
    config.extend ControllerMacros, type: :controller

    # From http://railscasts.com/episodes/413-fast-tests
    config.order = "random"

    config.include FactoryGirl::Syntax::Methods

    config.treat_symbols_as_metadata_keys_with_true_values = true
    config.filter_run focus: true
    config.run_all_when_everything_filtered = true

    config.filter_run_excluding :slow unless ENV["SLOW_SPECS"]

    config.before(:all) { DeferredGarbageCollection.start }
    config.after(:all) { DeferredGarbageCollection.reconsider }
  end
end

Spork.each_run do  
  Rails.cache.clear
  Warden.test_reset!
  FactoryGirl.reload
end

トラブルシューティングのために部品を削除しようとしましたが、エラーが散発的であるため、何かが解決したかどうかを判断するのは困難です.

上記のエラーの明らかな理由として際立っているものはありますか、またはこれをトラブルシューティングする方法に関するアドバイスはありますか?

4

1 に答える 1

1

あなたのspec_helper.rbで、設定してみてください

config.use_transactional_fixtures = true
于 2013-08-06T06:53:34.710 に答える