6

我已经与我的协会斗争了 3 天,不知道还能去哪里。我确信问题很简单,但我对 Ruby on Rails 还很陌生,这让我很困惑......

我创建了一个 User 模型,它包含所有用于 Devise 身份验证的登录凭据。我有另一个 Profile 模型,其中包含所有用户的设置(名字等)。最后,我有一个地址模型,它使用与配置文件关联的多态关联。

用户has_one配置文件。配置文件belongs_to用户和has_one地址。Address 是一个多态关联,它使我的应用程序中的其他模型能够具有与之关联的地址。

有一次,我的所有 FactoryGirl 定义都在工作,但我正在解决一个accepts_nested_attributes_for问题并添加了一个after_initialize回调来构建用户的配置文件和配置文件的地址。现在我的工厂之间有一个循环引用,我的 rspec 输出充满了:

stack level too deep

由于过去几天我对配置进行了如此多的修改,我觉得最好停下来寻求帮助。:) 这就是我在这里的原因。如果有人可以帮助我,我将不胜感激。

这是我的出厂配置:

用户工厂

FactoryGirl.define do
  sequence(:email) {|n| "person-#{n}@example.com"}
  factory :user do
    profile
    name 'Test User'
    email 
    password 'secret'
    password_confirmation 'secret'
    # required if the Devise Confirmable module is used
    confirmed_at Time.now
  end
end

型材厂

FactoryGirl.define do
  factory :profile do
    address
    company_name "My Company"
    first_name "First"
    last_name "Last"
  end
end

地址工厂

FactoryGirl.define do
  factory :address do
    association :addressable, factory: :profile
    address "123 Anywhere"
    city "Cooltown"
    state "CO"
    zip "12345"
    phone "(123) 555-1234"
    url "http://mysite.com"
    longitude 1.2
    latitude 9.99
  end
end

理想情况下,我希望能够独立地测试每个工厂。在我的用户模型测试中,我希望有一个像这样的有效工厂:

describe "user"
  it "should have a valid factory" do
    FactoryGirl.create(:user).should be_valid
  end
end

describe "profile"
  it "should have a valid factory" do
    FactoryGirl.create(:profile).should be_valid
  end
end

describe "address"
  it "should have a valid factory" do
    FactoryGirl.create(:address).should be_valid
  end
end

秘方是什么?我查看了 Factory Girl 的 wiki 和整个网络,但我担心我在搜索中没有使用正确的术语。此外,在我偶然发现的每个搜索结果中,似乎有 4 种不同的方法可以在 FactoryGirl 中使用混合语法来完成所有操作。

提前感谢您的任何见解...

更新:2012 年 12 月 26 日

我的个人资料/用户关联倒退了。我没有让 User 引用 Profile 工厂,而是将其翻转以让 Profile 引用 User 工厂。

这是最终的工厂实现:

用户工厂

FactoryGirl.define do
  sequence(:email) {|n| "person-#{n}@example.com"}
  factory :user do
    #profile <== REMOVED THIS!
    name 'Test User'
    email 
    password 'please'
    password_confirmation 'please'
    # required if the Devise Confirmable module is used
    confirmed_at Time.now
  end
end

型材厂

FactoryGirl.define do
  factory :profile do
    user # <== ADDED THIS!
    company_name "My Company"
    first_name "First"
    last_name "Last"
  end
end

地址工厂

FactoryGirl.define do
  factory :address do
    user
    association :addressable, factory: :profile
    address "123 Anywhere"
    city "Cooltown"
    state "CO"
    zip "90210"
    phone "(123) 555-1234"
    url "http://mysite.com"
    longitude 1.2
    latitude 9.99
  end
end

所有测试通过!

4

1 回答 1

2

根据提问者的要求,

profile留空了。为了链接用户和配置文件,您需要填写剩余的行并让 FactoryGirl 知道用户和配置文件已链接。

于 2012-12-22T06:53:58.523 回答