fabrication gem: trouble with association used with attributes

546 Views Asked by At

I'm in a middle of upgrading a rails app from version 3.2.x to 4.0.8, I had a trouble with fabrication (version 2.11.3) on an ar class (Location) belongs to a Category (but also HMBT Categories), in turn a category is belongs to Typology,

class Location
    belongs_to :category
    has_many :location_categories
    has_many :categories, through: :location_categories

    validates :title, :presence => true
    validates :address_city, :presence => true
    validates :nation_id, :presence => true
    validates :phone, :phone_format => true
    validates :mobile, :phone_format => true
    validates :fax, :phone_format => true
    validates :email, :email_format => true
    validates :url, :url_format => true, :allow_blank => true
    validate :validate_category_default
    validates_attachment :logo, size: { in: 0..1.megabytes }, content_type: { content_type: [ 'image/jpg', 'image/jpeg', 'image/png', 'image/gif' ]}, if: Proc.new {|a| a.logo.present? }
    validates_with VersionValidator, :on => :update

    private


    def validate_category_default
        errors.add(:category_ids, I18n.t('activerecord.errors.messages.location.category_default')) unless category_ids.detect{|category| category == category_id }
    end

    # other stuff...
end


class Category
    belongs_to :typology

    validates :typology_id, :uniqueness => { :scope => :site_id }
    validates :title, :presence => true, :uniqueness => { :scope => :site_id }
    validates_with VersionValidator, :on => :update

    # other stuff...
end


class Typology

    validates :logic_title, :presence => true, :uniqueness => true
    validates_attachment :image, size: { in: 0..1.megabytes }, content_type: { content_type: [ 'image/jpg', 'image/jpeg', 'image/png', 'image/gif' ]}, if: Proc.new {|a| a.image.present? }
    validates_with VersionValidator, :on => :update

    # other stuff...
end

then on the fabricator relative to Location, when an object is created it trig also creation of Category and a Typology related :

Fabricator(:location) do
    category(fabricator: :category)
    category_ids { |attrs| [ attrs[:category][:id] ] }
    # other stuff...
end


Fabricator(:category) do
    typology(fabricator: :typology)
    # other stuff...
end

Fabricator(:typology) do
    # other stuff...
end

the situation now is that I detect a problem in the creation of location on rails 4 (on rails 3 worked fine), this is the stack trace:

from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/validations.rb:57:in `save!'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/attribute_methods/dirty.rb:41:in `save!'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/transactions.rb:275:in `block in save!'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/transactions.rb:330:in `block in with_transaction_returning_status'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `block in transaction'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `within_new_transaction'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/connection_adapters/abstract/database_statements.rb:203:in `transaction'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/transactions.rb:209:in `transaction'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/transactions.rb:327:in `with_transaction_returning_status'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/activerecord-4.0.8/lib/active_record/transactions.rb:275:in `save!'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication/generator/base.rb:94:in `persist'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication/generator/base.rb:26:in `create'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication/schematic/definition.rb:75:in `block in fabricate'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication/schematic/definition.rb:74:in `instance_eval'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication/schematic/definition.rb:74:in `fabricate'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabricate.rb:29:in `create'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/fabrication-2.11.3/lib/fabrication.rb:62:in `Fabricate'
from (irb):18
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/railties-4.0.8/lib/rails/commands/console.rb:90:in `start'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/railties-4.0.8/lib/rails/commands/console.rb:9:in `start'
from /Users/my_user/.rvm/gems/ruby-2.1.0/gems/railties-4.0.8/lib/rails/commands.rb:62:in `<top (required)>'
from script/rails:6:in `require'

But i don't understand what causes it.

0

There are 0 best solutions below