Sha256: 778d4a9a0958910a8a9ee200ffcc7ef03b58db21210b889d2fa1731c9afe5ad6

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

require 'action_view/template/resolver'

module ActionView #:nodoc:
  # Use FixtureResolver in your tests to simulate the presence of files on the
  # file system. This is used internally by Rails' own test suite, and is
  # useful for testing extensions that have no way of knowing what the file
  # system will look like at runtime.
  class FixtureResolver < PathResolver
    attr_reader :hash

    def initialize(hash = {})
      super()
      @hash = hash
    end

  private

    def query(path, exts, formats)
      query = Regexp.escape(path)
      exts.each do |ext|
        query << '(' << ext.map {|e| e && Regexp.escape(".#{e}") }.join('|') << '|)'
      end

      templates = []
      @hash.each do |_path, source|
        next unless _path =~ /^#{query}$/
        handler, format = extract_handler_and_format(_path, formats)
        templates << Template.new(source, _path, handler,
          :virtual_path => _path, :format => format)
      end

      templates.sort_by {|t| -t.identifier.match(/^#{query}$/).captures.reject(&:blank?).size }
    end
  end

  class NullResolver < ActionView::PathResolver
    def query(path, exts, formats)
      handler, format = extract_handler_and_format(path, formats)
      [ActionView::Template.new("Template generated by Null Resolver", path, handler, :virtual_path => path, :format => format)]
    end
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
actionpack-3.0.20 lib/action_view/testing/resolvers.rb
actionpack-3.0.19 lib/action_view/testing/resolvers.rb
actionpack-3.0.18 lib/action_view/testing/resolvers.rb
actionpack-3.0.17 lib/action_view/testing/resolvers.rb
actionpack-3.0.16 lib/action_view/testing/resolvers.rb
actionpack-3.0.15 lib/action_view/testing/resolvers.rb
actionpack-3.0.14 lib/action_view/testing/resolvers.rb
actionpack-3.0.13 lib/action_view/testing/resolvers.rb
actionpack-3.0.13.rc1 lib/action_view/testing/resolvers.rb