0

私の Article ファクトリで以下のテストの失敗を受け取りました。これは、私の Categories モデルと has_many through:, validates_presence_of の関係を持っています。カテゴリは記事が作成される前に存在する必要があるため、作成中の記事にいくつかのカテゴリを作成して関連付けるために before(:create), create_list フックを設定しましたが、次のエラーが発生します。関連付け(例: 関連付け :categories、factory: :category)も使用してみましたが、読んだ内容に基づいて、モデルが持っている関係 (have_many :through) では before(:create) フックを使用する必要があります。 . 私は何が欠けていますか?

Failures:

  1) Factory Girl article factory is valid
     **Failure/Error: expect(factory).to be_valid, lambda { factory.errors.full_messages.join("\n") }
       Categories can't be blank**
     # ./spec/support/factories_spec.rb:17:in `block (4 levels) in <top (required)>'

モデル

class User < ActiveRecord::Base
   ...
   has_many :articles
   ...
end

class Article < ActiveRecord::Base
  belongs_to :user

  has_many :article_categories
  has_many :categories, through: :article_categories

  validates_presence_of :categories
  ...
end

class Category < ActiveRecord::Base
  has_many :article_categories
  has_many :articles, through: :article_categories
  ...
end

class ArticleCategory < ActiveRecord::Base
  attr_accessor :article_id, :category_id

  belongs_to :article 
  belongs_to :category
end

工場

FactoryGirl.define do
  factory :user do
    name { Faker::Name.name }
    email { Faker::Internet.email }
    password 'GoodP@ssw0rd'
    password_confirmation 'GoodP@ssw0rd'
    user_name { Faker.bothify('??????????###') }

    after(:create) do |user, evaluator|
      create_list(:article, rand(1..3), user: user)
    end
  end
end

FactoryGirl.define do
  factory :article do
    title { Faker::Lorem.paragraph[0..(rand(11..63))] }
    content { Faker::Lorem.paragraph[0..(rand(150..5000))] }

    before(:create) do |article, evaluator|
      create_list(:category, rand(1..3), article: article)
    end
  end
end

FactoryGirl.define do
  factory :category do
    name { Faker::Lorem.characters(10) }
  end
end

FactoryGirl.define do
  factory :article_category do
  end
end
4

1 に答える 1

1

これは機能しますか?

FactoryGirl.define do
  factory :article do
    title { Faker::Lorem.paragraph[0..(rand(11..63))] }
    content { Faker::Lorem.paragraph[0..(rand(150..5000))] }
    categories { create_list(:category, rand(1..3)) }
  end
end
于 2014-09-30T04:43:17.830 に答える