Sha256: 297edd9e85af9993fc3b273e566593fd3e46d18308f7abf8194c4b729f88067c

Contents?: true

Size: 1.99 KB

Versions: 4

Compression:

Stored size: 1.99 KB

Contents

require 'erb'
require 'yaml'

module ActiveRecord
  class FixtureSet
    class File # :nodoc:
      include Enumerable

      ##
      # Open a fixture file named +file+.  When called with a block, the block
      # is called with the filehandle and the filehandle is automatically closed
      # when the block finishes.
      def self.open(file)
        x = new file
        block_given? ? yield(x) : x
      end

      def initialize(file)
        @file = file
      end

      def each(&block)
        rows.each(&block)
      end

      def model_class
        config_row['model_class']
      end

      private
        def rows
          @rows ||= raw_rows.reject { |fixture_name, _| fixture_name == '_fixture' }
        end

        def config_row
          @config_row ||= begin
            row = raw_rows.find { |fixture_name, _| fixture_name == '_fixture' }
            if row
              row.last
            else
              {'model_class': nil}
            end
          end
        end

        def raw_rows
          @raw_rows ||= begin
            data = YAML.load(render(IO.read(@file)))
            data ? validate(data).to_a : []
          rescue ArgumentError, Psych::SyntaxError => error
            raise Fixture::FormatError, "a YAML error occurred parsing #{@file}. Please note that YAML must be consistently indented using spaces. Tabs are not allowed. Please have a look at http://www.yaml.org/faq.html\nThe exact error was:\n  #{error.class}: #{error}", error.backtrace
          end
        end

        def render(content)
          context = ActiveRecord::FixtureSet::RenderContext.create_subclass.new
          ERB.new(content).result(context.get_binding)
        end

        # Validate our unmarshalled data.
        def validate(data)
          unless Hash === data || YAML::Omap === data
            raise Fixture::FormatError, 'fixture is not a hash'
          end

          raise Fixture::FormatError unless data.all? { |name, row| Hash === row }
          data
        end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-5.0.0.beta3 lib/active_record/fixture_set/file.rb
activerecord-5.0.0.beta2 lib/active_record/fixture_set/file.rb
activerecord-5.0.0.beta1.1 lib/active_record/fixture_set/file.rb
activerecord-5.0.0.beta1 lib/active_record/fixture_set/file.rb