2

これは私を狂わせています。FactoryGirlは動作を停止しましたが、理由や方法がわかりません。おそらく、gemの更新で私が参加したのでしょうか。最初に問題、次に詳細:

>>> c = FactoryGirl.create(:client)
=> #<Client id: 3, name: "name3", email: "client3@example.com", password_digest: "$2a$10$iSqct/0DIQbL.OcRrYOiPuiKijbAXggLxcMevS3TmVIV...", created_at: "2012-08-14 23:25:22", updated_at: "2012-08-14 23:25:22">
>>> a = FactoryGirl.create(:admin)
ActiveRecord::RecordNotSaved: You cannot call create unless the parent is saved
        from /.../usr/lib/ruby/gems/1.9.1/gems/activerecord-3.2.1/lib/active_record/associations/collection_association.rb:425:in `create_record'

printステートメントをデバッグすると、:adminはnew_record?であることがわかります。そのため、当然、:adminとの関連付けを形成することはできません。これがクライアントファクトリーです。管理者は、管理者権限が割り当てられた単なるクライアントであるという考え方です。

FactoryGirl.define do
  factory :client do
    sequence(:name) {|n| "name#{n}"}
    sequence(:email) {|n| "client#{n}@example.com" }
    password "password"

    factory :admin do
      after_create {|admin| 
        admin.assign_admin
      }
    end

  end

end

FactoryGirlが実行している(または実行する必要がある)ことをコンソールで複製すると、すべてが正常に機能します。

>>> a = FactoryGirl.create(:client)
=> #<Client id: 4, name: "name5", email: "client5@example.com", password_digest: "$2a$10$vFsW6VfmNMKWBifPY3vcHe6Q2.vCCLEq3RqPYRxdMo0m...", created_at: "2012-08-14 23:37:11", updated_at: "2012-08-14 23:37:11">
>>> a.assign_admin
=> #<ClientRole id: 2, client_id: 4, role: 1, created_at: "2012-08-14 23:37:28", updated_at: "2012-08-14 23:37:28">
>>> a.admin?
=> true

クライアントモデルは次のとおりです。

class Client < ActiveRecord::Base
  attr_accessible :name, :email, :password, :password_confirmation
  has_secure_password
  validates_presence_of :name, :email, :password, :on => :create
  validates :name, :email, :uniqueness => true
  has_many :sites, :dependent => :destroy
  has_many :client_roles, :dependent => :destroy
  # roles

  def has_role?(role)
    client_roles.where(:role => role).exists?
  end

  def assign_role(role)
    client_roles.create(:role => role) unless has_role?(role)
  end

  def revoke_role(role)
    client_roles.where(:role => role).destroy_all
  end

  def assign_admin
    assign_role(ClientRole::ADMIN)
  end

  def admin?
    has_role?(ClientRole::ADMIN)
  end

end

そして完全を期すために、ClientRoleモデルは次のとおりです。

class ClientRole < ActiveRecord::Base
  belongs_to :client

  # values for #role
  ADMIN = 1

end

そして最後に、Gemfile.lockからのバージョンと依存関係の情報:

factory_girl (4.0.0)
  activesupport (>= 3.0.0)
factory_girl_rails (4.0.0)
  factory_girl (~> 4.0.0)
  railties (>= 3.0.0)
4

1 に答える 1

9

解決しました。FGの最新バージョンで何かが変更されました。次のファクトリ メソッドが機能していました。

factory :admin do
  after_create {|admin| 
    admin.assign_admin
  }
end

しかし、最新のドキュメントによると、構文は次のようになりました。

factory :admin do
  after(:create) {|admin| 
    admin.assign_admin
  }
end

それを変更すると、すべてが機能します。 ふぅ

于 2012-08-15T01:49:27.157 に答える