我有一个系统规范,其中我称3家工厂: 公司has_many商店has_many货架
在下面的代码中,我在规范和ApplicationController中都放置了一个调试器。从规范中调用时,将按预期创建所有工厂。然后,当我访问root_url时,找不到相同的记录(或根本找不到任何记录): -Company.count返回0 -Shop(find_by:id)返回nil(使用工厂创建的商店的ID)
当我将相同的工厂提供给seed.rb并在开发环境中将其拉起时,它将正确呈现页面和数据。
是什么原因导致控制器无法看到此规范中的数据?
规范:
RSpec.describe "changing the current shop", type: :system do
let(:company) { create(:company, name: "Test co") }
let(:first_shop) { create(:shop_with_shelves, name: "seeded shop", company: company) }
let(:last_shelf) { create(:standby_shelf, name: "Cool Shelf", shop: first_shop) }
it "displays the name of the current shop" do
first_shop
last_shelf
# debugger here identifies all models created as expected
visit root_path
end
helper_method:
class ApplicationController < ActionController::Base
helper_method :current_shop
def current_shop
# debugger here is unable to find any models Company.count = 0
@current_shop ||= Company.first.current_shop
end
end
在视图中是:
<%= current_shop.name %>
失败/错误:@current_shop || = Company.first.current_shop
NoMethodError:
undefined method `current_shop' for nil:NilClass
如果进行进一步的测试,我能够看到系统规格会引发此错误,但功能规格却不符合以下要求:
RSpec.describe "trying a system spec (this fails)", type: :system do
let!(:company) { create(:company) }
let!(:shop) { create(:shop, company: company, is_current: true) }
it "gets to the shops page" do
visit shops_path
end
end
RSpec.feature "trying a feature spec (this passes)", type: :feature do
let!(:company) { create(:company) }
let!(:shop) { create(:shop, company: company, is_current: true) }
scenario "gets to the shops page" do
visit shops_path
end
end
答案 0 :(得分:0)
您的应用程序和测试均具有自己的数据库连接。假设您正在使用现代版本的Rails(5.1+),则需要启用事务测试并在应用程序和测试之间共享数据库连接。