繁体   English   中英

Rspec测试在错误的环境中运行?

[英]Rspec tests running in wrong environment?

我有一个使用硒运行的积分测试。 在我之前我用solr构建了一些对象和索引。 我可以在subnsspot solr测试日志中看到该活动。 然后在我的测试中我执行搜索并得到错误,因为我的太阳黑子solr服务器没有运行。 那是因为它正在运行RAILS_ENV = test。

这是我之前的每一个:

before :each do
 Sunspot.remove_all!(Residential)
 Sunspot.commit

  @prop1 = FactoryGirl.create(:residential, { subdivision: "Steiner Ranch", street_name: "propone" })
  @prop1.index!
  @prop2 = FactoryGirl.create(:residential, { subdivision: "Jester Estates", street_name: "proptwo" })
  @prop2.index!
  @prop3 = FactoryGirl.create(:residential, { subdivision: "Cypress Ranch", street_name: "propthree" })
  @prop3.index!
end

这是我的测试:

it "single word", :js => true do
  visit '/'
  fill_in 'subdivision', :with => 'cypress'
  page.should_not have_content('propone')
  page.should_not have_content('proptwo')
  page.should have_content('propthree')
end

知道搜索在开发环境而不是测试环境中运行的原因吗? 我将ENV [“RAILS_ENV”] || ='test'作为spec_helper中的第一行。

我有同样的问题。 事实证明我运行的Rails应用程序实际上在配置文件中指定了ENV [“RAILS_ENV”] ='development'(因为我们使用乘客,所以是Apache配置文件)。

如果是这种情况,那么你可以更换

ENV["RAILS_ENV"] ||= 'test' 

ENV["RAILS_ENV"] = 'test'

在您的spec_helper中。

我这样做了

  1. 我们的生产机器上没有RSpec
  2. 我们不在生产中进行测试。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM