使用database_cleaner,mongoid和active_admin导致规范失败并使用ActiveRecord :: ConnectionNotEstablished

时间:2012-03-04 23:12:08

标签: ruby-on-rails rspec mongoid activeadmin

我有一个使用mongoid,database_cleaner和rspec的现有项目。我尝试使用active_admin patches available添加active_admin。 ActiveAdmin假设它位于ActiveRecord项目中,最重要的是通过它对meta_search gem的依赖。

当我去运行我的规格时,它们都会因以下错误而失败:

Failure/Error: Unable to find matching line from backtrace
ActiveRecord::ConnectionNotEstablished:
  ActiveRecord::ConnectionNotEstablished
# ./spec/support/database_cleaner.rb:12:in `block (2 levels) in <top (required)>'

相关库的gem版本如下:

  • activeadmin(0.4.2)
  • database_cleaner(0.7.1)
  • mongoid(2.4.5)
  • meta_search(1.1.3)
  • activerecord(3.2.1)

测试失败的文件spec/support/database_cleaner.rb

require 'database_cleaner'

RSpec.configure do |config|
  config.before(:suite) do
    DatabaseCleaner.strategy = :truncation
    DatabaseCleaner.orm = "mongoid"
  end

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

1 个答案:

答案 0 :(得分:14)

[移出问题]

似乎database_cleaner尝试在its initialization method

中自动检测可用的ORM

这可以通过更改spec/support/database_cleaner.rb文件来抢占:

RSpec.configure do |config|
  config.before(:suite) do
    DatabaseCleaner[:mongoid].strategy = :truncation
  end
end

调用configuration中的[]方法会覆盖自动检测,以便不再添加ActiveRecord。

另一种解决方法是重新添加一个带有sqlite3配置的config/database.yml文件,忽略应用程序的其余部分。谢天谢地,没必要。