考虑以下模型设置
class Template < ActiveRecord::Base
belongs_to :detail, polymorphic: true, dependent: :destroy
accepts_nested_attributes_for :detail
end
class EbayTitleTemplate < ActiveRecord::Base
has_one :template, as: :detail
end
这是一个工作工厂
FactoryGirl.define do
factory :template do
merchant
channel
trait :ebay_title do
association :detail, factory: :template_ebay_title
end
factory :ebay_title_template, traits: [:ebay_title]
end
factory :template_ebay_title, class: EbayTitleTemplate do
name "eBay Title Template"
title "Super Cool Hat"
sub_title "Keeps the sun away"
description "The best hat available!"
end
end
以下为我工作
create(:ebay_title_template) # creates both records, creating a new Merchant and Channel for me
create(:ebay_title_template, merchant: Merchant.first, channel: Channel.first) # creates both records with explicit channel and merchant
现在我还要做的是传递自定义属性来覆盖默认值。像这样:
create(:ebay_title_template, title: "Overwrite the title", sub_title: "Overwrite the subtitle")
最终发生的是我收到错误ArgumentError: Trait not registered: title
不知何故,FactoryGirl认为我传递了一个特征,或者模板工厂不认可title
作为属性。
我尝试使用瞬态来允许自定义args通过模板并使用:template_ebay_title
工厂中的回调将属性映射到模型列,如下所示:
transient do
custom_args nil
end
after(:create) do |record, evaluator|
evaluator.custom_args.each do |key, value|
record.key = value
end
end
然后我就这样创作:
create(:ebay_title_template, custom_args: {title: "Overwrite", sub_title: "Overwrite"})
这会导致#`
的错误NoMethodError: undefined method
custom_args'
所以要么有办法做到这一点,我做错了,或者我需要一种全新的方法。请记住,将有许多关联需要被定义为特征(或其他东西),因此我不可能指定要传递的特定瞬变。
如何实现创建创建父级和多态关联的工厂的目标,允许我传递多态关联的任意属性,并返回父对象?
答案 0 :(得分:1)
如果您想在单个哈希值中传递值,则需要像这样传递它们:
create(:ebay_title_template, custom_args: {title: "Overwrite the title", sub_title: "Overwrite the subtitle"})
否则,您可以创建新的瞬态值,并按照现在传递它们的方式传递它们:
transient do # use ignore with FactoryGirl/FactoryBot < v4.7
title nil
sub_title nil
end
当添加更多上述属性时,您可以迭代评估者的覆盖实例变量:
evaluator.instance_variable_get(:@overrides).each do |key, value|
puts key, value
end
希望有所帮助!