Sha256: b299c4c35a38e2a1c7b367e26ccbba2d90c1558c9a03aa425a3c4a0f17be813d

Contents?: true

Size: 1.58 KB

Versions: 95

Compression:

Stored size: 1.58 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
        @rows = nil
      end

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


      private
        def rows
          return @rows if @rows

          begin
            data = YAML.load(render(IO.read(@file)))
          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
          @rows = data ? validate(data).to_a : []
        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

95 entries across 91 versions & 8 rubygems

Version Path
activerecord-4.2.11.3 lib/active_record/fixture_set/file.rb
activerecord-4.2.11.2 lib/active_record/fixture_set/file.rb
activerecord-4.2.11.1 lib/active_record/fixture_set/file.rb
activerecord-4.2.11 lib/active_record/fixture_set/file.rb
activerecord-4.2.10 lib/active_record/fixture_set/file.rb
activerecord-4.2.10.rc1 lib/active_record/fixture_set/file.rb
activerecord-4.2.9 lib/active_record/fixture_set/file.rb
activerecord-4.2.9.rc2 lib/active_record/fixture_set/file.rb
activerecord-4.2.9.rc1 lib/active_record/fixture_set/file.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activerecord-4.2.8/lib/active_record/fixture_set/file.rb
activerecord-4.2.8 lib/active_record/fixture_set/file.rb
activerecord-4.2.8.rc1 lib/active_record/fixture_set/file.rb
activerecord-4.2.7.1 lib/active_record/fixture_set/file.rb
activerecord-4.2.7 lib/active_record/fixture_set/file.rb
activerecord-4.1.16 lib/active_record/fixture_set/file.rb
activerecord-4.1.16.rc1 lib/active_record/fixture_set/file.rb
activerecord-4.2.7.rc1 lib/active_record/fixture_set/file.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-4.2.6/lib/active_record/fixture_set/file.rb
activerecord-4.1.15 lib/active_record/fixture_set/file.rb
activerecord-4.2.6 lib/active_record/fixture_set/file.rb