Mam modelu Invoice
które mogą zawierać pewną liczbę Items
, a także:Jak tworzyć obiekty testowe z zagnieżdżonymi atrybutami za pomocą FactoryGirl w Ruby on Rails?
class Invoice < ActiveRecord::Base
attr_accessible :number, :date, :recipient, :items_attributes
belongs_to :user
has_many :items
accepts_nested_attributes_for :items, :reject_if => :all_blank, :allow_destroy => true
end
próbuję przetestować to przy użyciu rspec:
describe InvoicesController do
describe 'user access' do
before :each do
@user = FactoryGirl.create(:user)
@invoice = @user.invoices.create(FactoryGirl.attributes_for(:invoice))
sign_in(@user)
end
it "renders the :show view" do
get :show
expect(response).to render_template :show
end
end
end
Niestety, ten test (i wszystkie inne) nie powiodło się z komunikatem o błędzie z RSpec:
Failure/Error: @invoice = @user.invoices.create(FactoryGirl.attributes_for(:invoice))
ActiveModel::MassAssignmentSecurity::Error:
Can't mass-assign protected attributes: items
Jak mogę utworzyć fakturę z przedmiotami, które przejdą moje testy?
Używam FactoryGirl do wytwarzania przedmiotów tak:
factory :invoice do
number { Random.new.rand(0..1000000) }
recipient { Faker::Name.name }
date { Time.now.to_date }
association :user
items { |i| [i.association(:item)] }
end
factory :item do
date { Time.now.to_date }
description { Faker::Lorem.sentences(1) }
price 50
quantity 2
end
OK, dziękuję, ale nie mogłem zmusić go do działania w ten sposób. – Tintin81