aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/erb/helper.rb
blob: 727cc3dcf2122077aabf7b7003bee4c192a294c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

module ERBTest
  class ViewContext
    include ActionView::Helpers::UrlHelper
    include ActionView::Helpers::TagHelper
    include ActionView::Helpers::JavaScriptHelper
    include ActionView::Helpers::FormHelper

    attr_accessor :output_buffer, :controller

    def protect_against_forgery?() false end
  end

  class BlockTestCase < ActiveSupport::TestCase
    def render_content(start, inside, routes = nil)
      routes ||= ActionDispatch::Routing::RouteSet.new.tap do |rs|
        rs.draw { }
      end
      context = Class.new(ViewContext) {
        include routes.url_helpers
      }.new
      template = block_helper(start, inside)
      ActionView::Template::Handlers::ERB.erb_implementation.new(template).evaluate(context)
    end

    def block_helper(str, rest)
      "<%= #{str} do %>#{rest}<% end %>"
    end
  end
end