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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
# encoding: US-ASCII
# frozen_string_literal: true
require "abstract_unit"
require "logger"
class TestERBTemplate < ActiveSupport::TestCase
ERBHandler = ActionView::Template::Handlers::ERB.new
class LookupContext
def disable_cache
yield
end
def find_template(*args)
end
attr_accessor :formats
end
class Context < ActionView::Base
def initialize(*)
super
@output_buffer = "original"
@virtual_path = nil
end
def hello
"Hello"
end
def apostrophe
"l'apostrophe"
end
def partial
ActionView::Template.new(
"<%= @virtual_path %>",
"partial",
ERBHandler,
virtual_path: "partial",
format: :html,
locals: []
)
end
def lookup_context
@lookup_context ||= LookupContext.new
end
def logger
ActiveSupport::Logger.new(STDERR)
end
def my_buffer
@output_buffer
end
end
def new_template(body = "<%= hello %>", details = {})
details = { format: :html, locals: [] }.merge details
ActionView::Template.new(body.dup, "hello template", details.delete(:handler) || ERBHandler, **{ virtual_path: "hello" }.merge!(details))
end
def render(locals = {})
@template.render(@context, locals)
end
def setup
@context = Context.with_empty_template_cache.empty
super
end
def test_basic_template
@template = new_template
assert_equal "Hello", render
end
def test_basic_template_does_html_escape
@template = new_template("<%= apostrophe %>")
assert_equal "l'apostrophe", render
end
def test_text_template_does_not_html_escape
@template = new_template("<%= apostrophe %> <%== apostrophe %>", format: :text)
assert_equal "l'apostrophe l'apostrophe", render
end
def test_raw_template
@template = new_template("<%= hello %>", handler: ActionView::Template::Handlers::Raw.new)
assert_equal "<%= hello %>", render
end
def test_template_does_not_lose_its_source_after_rendering
@template = new_template
render
assert_equal "<%= hello %>", @template.source
end
def test_template_does_not_lose_its_source_after_rendering_if_it_does_not_have_a_virtual_path
@template = new_template("Hello", virtual_path: nil)
render
assert_equal "Hello", @template.source
end
def test_locals
@template = new_template("<%= my_local %>", locals: [:my_local])
assert_equal "I am a local", render(my_local: "I am a local")
end
def test_restores_buffer
@template = new_template
assert_equal "Hello", render
assert_equal "original", @context.my_buffer
end
def test_virtual_path
@template = new_template("<%= @virtual_path %>" \
"<%= partial.render(self, {}) %>" \
"<%= @virtual_path %>")
assert_equal "hellopartialhello", render
end
def test_resulting_string_is_utf8
@template = new_template
assert_equal Encoding::UTF_8, render.encoding
end
def test_no_magic_comment_word_with_utf_8
@template = new_template("hello \u{fc}mlat")
assert_equal Encoding::UTF_8, render.encoding
assert_equal "hello \u{fc}mlat", render
end
# This test ensures that if the default_external
# is set to something other than UTF-8, we don't
# get any errors and get back a UTF-8 String.
def test_default_external_works
with_external_encoding "ISO-8859-1" do
@template = new_template("hello \xFCmlat")
assert_equal Encoding::UTF_8, render.encoding
assert_equal "hello \u{fc}mlat", render
end
end
def test_encoding_can_be_specified_with_magic_comment
@template = new_template("# encoding: ISO-8859-1\nhello \xFCmlat")
assert_equal Encoding::UTF_8, render.encoding
assert_equal "\nhello \u{fc}mlat", render
end
# TODO: This is currently handled inside ERB. The case of explicitly
# lying about encodings via the normal Rails API should be handled
# inside Rails.
def test_lying_with_magic_comment
assert_raises(ActionView::Template::Error) do
@template = new_template("# encoding: UTF-8\nhello \xFCmlat", virtual_path: nil)
render
end
end
def test_encoding_can_be_specified_with_magic_comment_in_erb
with_external_encoding Encoding::UTF_8 do
@template = new_template("<%# encoding: ISO-8859-1 %>hello \xFCmlat", virtual_path: nil)
assert_equal Encoding::UTF_8, render.encoding
assert_equal "hello \u{fc}mlat", render
end
end
def test_error_when_template_isnt_valid_utf8
e = assert_raises ActionView::Template::Error do
@template = new_template("hello \xFCmlat", virtual_path: nil)
render
end
# Hack: We write the regexp this way because the parser of RuboCop
# errs with /\xFC/.
assert_match(Regexp.new("\xFC"), e.message)
end
def test_template_is_marshalable
template = new_template
serialized = Marshal.load(Marshal.dump(template))
assert_equal template.identifier, serialized.identifier
assert_equal template.source, serialized.source
end
def with_external_encoding(encoding)
old = Encoding.default_external
Encoding::Converter.new old, encoding if old != encoding
silence_warnings { Encoding.default_external = encoding }
yield
ensure
silence_warnings { Encoding.default_external = old }
end
def test_short_identifier
@template = new_template("hello")
assert_equal "hello template", @template.short_identifier
end
def test_template_inspect
@template = new_template("hello")
assert_equal "#<ActionView::Template hello template locals=[]>", @template.inspect
end
end
|