Sha256: bd97605e84a6c7e8adc41b5a0657c6ceeaf491dd7acad0f599175ef8092d6fc0

Contents?: true

Size: 1.2 KB

Versions: 17

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

require "active_record/fixture_set/table_row"
require "active_record/fixture_set/model_metadata"

module ActiveRecord
  class FixtureSet
    class TableRows # :nodoc:
      def initialize(table_name, model_class:, fixtures:, config:)
        @model_class = model_class

        # track any join tables we need to insert later
        @tables = Hash.new { |h, table| h[table] = [] }

        # ensure this table is loaded before any HABTM associations
        @tables[table_name] = nil

        build_table_rows_from(table_name, fixtures, config)
      end

      attr_reader :tables, :model_class

      def to_hash
        @tables.transform_values { |rows| rows.map(&:to_hash) }
      end

      def model_metadata
        @model_metadata ||= ModelMetadata.new(model_class)
      end

      private

        def build_table_rows_from(table_name, fixtures, config)
          now = config.default_timezone == :utc ? Time.now.utc : Time.now

          @tables[table_name] = fixtures.map do |label, fixture|
            TableRow.new(
              fixture,
              table_rows: self,
              label: label,
              now: now,
            )
          end
        end
    end
  end
end

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
activerecord-6.0.2.2 lib/active_record/fixture_set/table_rows.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/table_rows.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.2.1 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.2 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.2.rc2 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.2.rc1 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.1 lib/active_record/fixture_set/table_rows.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.1.rc1 lib/active_record/fixture_set/table_rows.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0.rc2 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0.rc1 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0.beta3 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0.beta2 lib/active_record/fixture_set/table_rows.rb
activerecord-6.0.0.beta1 lib/active_record/fixture_set/table_rows.rb