Sha256: 348389f6169abdf7d54ab001eb1d746236811e5fd7c5ec69027a311557600b3a

Contents?: true

Size: 1.5 KB

Versions: 14

Compression:

Stored size: 1.5 KB

Contents

module ActiveMocker
module Mock

  class HasMany < Association

    include Queries

    def self.new(collection, options = {})
      return Relation.new(collection) if options[:relation_class].nil?
      super(collection, options)
    end

    def initialize(collection, options={})
      @relation_class = options[:relation_class]
      @foreign_key    = options[:foreign_key]
      @foreign_id     = options[:foreign_id]
      @source         = options[:source]
      self.class.include "#{@relation_class.name}::Scopes".constantize
      super(collection)
      set_foreign_key
    end

    def set_foreign_key
      collection.each do |item|
        item.send(:write_attribute, foreign_key, foreign_id) if item.respond_to?("#{foreign_key}=")
      end
    end

    # @api private
    attr_reader :relation_class, :foreign_key, :foreign_id, :source

    def build(options={}, &block)
      new_record = relation_class.new(init_options.merge!(options), &block)

      def new_record._belongs_to(collection)
        @belongs_to_collection = collection
      end

      new_record._belongs_to(self)

      def new_record.save
        @belongs_to_collection << self
        super
      end

      new_record
    end

    def create(options={}, &block)
      created_record = relation_class.create(init_options.merge!(options), &block)
      collection << created_record
      created_record
    end

    alias_method :create!, :create

    # @api private
    def init_options
      {foreign_key => foreign_id}
    end

  end

end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
active_mocker-1.8.4 lib/active_mocker/mock/has_many.rb
active_mocker-1.8.3 lib/active_mocker/mock/has_many.rb
active_mocker-1.8.2 lib/active_mocker/mock/has_many.rb
active_mocker-1.8.1 lib/active_mocker/mock/has_many.rb
active_mocker-1.8 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.3 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.2 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.1 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.1rc lib/active_mocker/mock/has_many.rb
active_mocker-1.7 lib/active_mocker/mock/has_many.rb
active_mocker-1.7rc2 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.beta3 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.beta2 lib/active_mocker/mock/has_many.rb
active_mocker-1.7.beta1 lib/active_mocker/mock/has_many.rb