ruby-on-rails - 禁用 rake 数据库 :test:prepare while using cucumber rails

标签 ruby-on-rails testing ruby-on-rails-3.1 cucumber bdd

我正在使用 bundle exec rake cucumber 来运行我的功能文件,但是我需要对其进行自定义,以便即使在 cucumber 测试完成后,我的测试数据库也应该持续存在,因为我会将我的远程生产数据转储到我的本地测试数据库中。 我还删除了数据库清理器,因为默认情况下它会清理测试数据库..我试图查看 cucumber.rake 并找出它运行的这些行 test:prepare

namespace :cucumber do
    Cucumber::Rake::Task.new({:ok => 'test:prepare'}, 'Run features that should pass') do |t|
      t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
      t.fork = true # You may get faster startup if you set this to false
      t.profile = 'default'
      t.rcov = true
    end

我想在我的 cucumber/rspec 测试完成后禁止删除我的测试数据库。有什么办法吗,因为我尝试搜索但没有找到好的来源。此外,我将在测试数据库中转储数据。所以解决方案应该工作与测试数据库中的数据无关。

我的 gemfile

group :development, :test do
  gem 'capybara'
  gem 'annotate'
  gem "factory_girl_rails", "~> 1.1.rc1"
  gem "factory_girl_generator", ">= 0.0.3"
  gem "rspec-rails", ">= 2.6.0"
  gem 'rr'
  gem 'ruby-debug'
  gem 'haml-rails'
  gem 'rcov'
  ##removed database cleaner as i want to persist test data always
  ##gem 'database_cleaner'
  gem 'pry-rails'
  ##cucumber,mysql added for test database ONLY
  gem 'cucumber-rails', :require => false
  gem 'mysql'

结束

cucumber rake

# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
# It is recommended to regenerate this file in the future when you upgrade to a
# newer version of cucumber-rails. Consider adding your own code to a new file
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.


unless ARGV.any? {|a| a =~ /^gems/} # Don't load anything when running the gems:* tasks

vendored_cucumber_bin = Dir["#{Rails.root}/vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
$LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil?

begin
  require 'cucumber/rake/task'

  namespace :cucumber do
    Cucumber::Rake::Task.new({:ok => 'test:prepare'}, 'Run features that should pass') do |t|
      t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
      t.fork = true # You may get faster startup if you set this to false
      t.profile = 'default'
      t.rcov = true ##added to get coverage using rcov
    end

    Cucumber::Rake::Task.new({:wip => 'test:prepare'}, 'Run features that are being worked on') do |t|
      t.binary = vendored_cucumber_bin
      t.fork = true # You may get faster startup if you set this to false
      t.profile = 'wip'
      t.rcov = true ##added to get coverage using rcov
    end

    Cucumber::Rake::Task.new({:rerun => 'test:prepare'}, 'Record failing features and run only them if any exist') do |t|
      t.binary = vendored_cucumber_bin
      t.fork = true # You may get faster startup if you set this to false
      t.profile = 'rerun'
      t.rcov = true ##added to get coverage using rcov
    end

    desc 'Run all features'
    task :all => [:ok, :wip]

    task :statsetup do
      require 'rails/code_statistics'
      ::STATS_DIRECTORIES << %w(Cucumber\ features features) if File.exist?('features')
      ::CodeStatistics::TEST_TYPES << "Cucumber features" if File.exist?('features')
    end
  end
  desc 'Alias for cucumber:ok'
  task :cucumber => 'cucumber:ok'

  task :default => :cucumber

  task :features => :cucumber do
    STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
  end

  # In case we don't have the generic Rails test:prepare hook, append a no-op task that we can depend upon.
  task 'test:prepare' do
  end

  task :stats => 'cucumber:statsetup'
rescue LoadError
  desc 'cucumber rake task not available (cucumber not installed)'
  task :cucumber do
    abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
  end
end

end

最佳答案

好吧,我无法停止 test:db:prepare 但我能够保留测试数据 即使在通过将此配置设置为 False 运行 cucumber/rspec 之后在 env.rb

Cucumber::Rails::World.use_transactional_fixtures = false

--------希望它也能帮助到其他人。

关于ruby-on-rails - 禁用 rake 数据库 :test:prepare while using cucumber rails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22983617/

相关文章:

ruby-on-rails - 为什么 Rails 模型关联结果自然不是 ActiveRecord::Relations?

javascript - Rails - 禁用 js&css//=测试需要

ruby-on-rails - Ruby:使用正则表达式扫描后无法将字符串转换为符号

ruby-on-rails - Rails Rspec 测试 Controller 已触发 Websockets 事件

ruby-on-rails - rails : Sum in 3rd level of nested resource

ruby-on-rails - Rails.空白?在不应该的时候返回真

javascript - Heroku 和 Rails 4 : Heroku isn't finding my nested folder under assets/javascripts

java - Java 的免费/开源测试生成器?

Heroku 日志记录不起作用

node.js - 了解 'integration' 测试中的 Mocha 语法