5

使用 Javascript 时,我无法使请求规范正常工作。如果我在没有 Javascript 的情况下运行它们,我的规范就会通过(该页面是为使用或不使用 JS 而构建的)。

具体来说,当我执行诸如Post.should have(1).record. Capybara 只是不从数据库中获取记录,并且在运行之间没有清理数据库。

我已经尝试使用禁用事务固定装置的 DatabaseCleaner - 我猜这是常见的方法。没有骰子。

我还尝试过(并且最好更喜欢)在没有 DatabaseCleaner 的情况下运行,使用事务性固定装置并强制 AR 在线程之间共享相同的连接(José Valim 描述的补丁)。再次,没有骰子。

此外,我还尝试在 Capybara-webkit 和 Selenium 之间切换 - 问题仍然存在。

我已经建立了一个示例应用程序,其中只有一个基本的 Post 脚手架,它复制了这个问题:https ://github.com/cabgfx/js-specs 有一个带有事务性固定装置和 AR 共享连接的 spec_helper.rb,以及一个 spec_helper_database_cleaner。 rb 用于另一种情况。

我通常使用 Spork,但我在两个 spec_helper.rb 文件中都禁用了它,只是为了消除潜在的故障点(在两个应用程序中;“真实”应用程序和示例应用程序)。

我在 Macbook Air 上使用 Pow 进行本地开发,通过 RVM 运行 OS X 10.7.3 和 MRI 1.9.3。(我也试过 1.9.2)。

希望我说得通 -非常感谢任何指导/帮助/指针!

4

3 回答 3

3

马特 - 非常感谢您花时间帮助我!我尝试使用您的 spec_helper 设置它,使用 Selenium 作为 javascript 驱动程序。

规范仍然失败 - 但我可以看到在 Firefox 中执行的正确行为......然后我突然意识到问题可能是因为 Capybara 没有等待 AJAX 请求完成。

然后我恢复到我最初的 spec_helper(使用 Spork 而没有 DatabaseCleaner),并简单地使用 Capybara 的wait_until { page.has_content? "text I'm inserting with JS" }.

我更新了示例应用程序,并刚刚添加sleep 1到请求规范中,因此您可以自己查看。它现在可以在有和没有 Spork 的情况下使用,并且 AR 猴子补丁似乎可以完美地工作。

于 2012-04-03T22:42:44.250 回答
1

spec_helper.rb我已经使用下面列出的代码尝试了您的代码,并且测试通过了。请注意,触发数据库清理器的语法与您的spec_helper_database_cleaner.rb.

我们在生产中使用它,我们也尝试了 Jose Valim 建议的修改,但它对我们不起作用——确实如此。

require 'rubygems'
require 'spork'
#uncomment the following line to use spork with the debugger
#require 'spork/ext/ruby-debug'

Spork.prefork do
  # Loading more in this block will cause your tests to run faster. However,
  # if you change any configuration or code from libraries loaded here, you'll
  # need to restart spork for it take effect.

  # This file is copied to spec/ when you run 'rails generate rspec:install'
  ENV["RAILS_ENV"] ||= 'test'
  require File.expand_path("../../config/environment", __FILE__)
  require 'rspec/rails'
  require 'rspec/autorun'

  # Add this to load Capybara integration:
  require 'capybara/rspec'
  require 'capybara/rails'

  include Capybara::DSL

  # Requires supporting ruby files with custom matchers and macros, etc,
  # in spec/support/ and its subdirectories.
  Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}

  RSpec.configure do |config|
    # ## Mock Framework
    #
    # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
    #
    # config.mock_with :mocha
    # config.mock_with :flexmock
    # config.mock_with :rr

    # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
    config.fixture_path = "#{::Rails.root}/spec/fixtures"

    # If you're not using ActiveRecord, or you'd prefer not to run each of your
    # examples within a transaction, remove the following line or assign false
    # instead of true.
    config.use_transactional_fixtures = false

    # If true, the base class of anonymous controllers will be inferred
    # automatically. This will be the default behavior in future versions of
    # rspec-rails.
    config.infer_base_class_for_anonymous_controllers = false

    # Include sign_in & sign_out for tests
    # config.include Devise::TestHelpers, :type => :controller

    # Use database_cleaner to ensure a known good test db state as we can't use
    # transactional fixures due to selenium testing
    config.before(:suite) do
      DatabaseCleaner.strategy = :truncation
      DatabaseCleaner.clean_with(:truncation)
    end

    config.before(:each) do
      DatabaseCleaner.start
    end

    config.after(:each) do
      DatabaseCleaner.clean
    end
  end
end

Spork.each_run do
  # This code will be run each time you run your specs.
end
于 2012-04-03T13:24:35.970 回答
0

José 的建议对我有用,但在我使用 Spork 时无效。但是添加这个spec_helper.rb做:

Spork.prefork do
  RSpec.configure do |config|
    # Make it so poltergeist (out of thread) tests can work with transactional fixtures
    # http://www.opinionatedprogrammer.com/2011/02/capybara-and-selenium-with-rspec-and-rails-3/#post-441060846
    ActiveRecord::ConnectionAdapters::ConnectionPool.class_eval do
      def current_connection_id
        Thread.main.object_id
      end
    end
  end
end

资料来源:http ://www.opinionatedprogrammer.com/2011/02/capybara-and-selenium-with-rspec-and-rails-3/#post-441060846

于 2013-03-06T19:20:39.167 回答