forked from rails/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslation_helper_test.rb
430 lines (352 loc) · 16.8 KB
/
translation_helper_test.rb
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# frozen_string_literal: true
require "abstract_unit"
module I18n
class CustomExceptionHandler
def self.call(exception, locale, key, options)
"from CustomExceptionHandler"
end
end
end
class TranslationHelperTest < ActiveSupport::TestCase
include ActionView::Helpers::TranslationHelper
attr_reader :request, :view
setup do
I18n.backend.store_translations(:en,
translations: {
templates: {
found: { foo: "Foo" },
found_yield_single_argument: { foo: "Foo" },
found_yield_block: { foo: "Foo" },
array: { foo: { bar: "Foo Bar" } },
default: { foo: "Foo" },
partial: { foo: "Partial foo" }
},
foo: "Foo",
hello: "<a>Hello World</a>",
html: "<a>Hello World</a>",
hello_html: "<a>Hello World</a>",
interpolated_html: "<a>Hello %{word}</a>",
array_html: %w(foo bar),
array: %w(foo bar),
count_html: {
one: "<a>One %{count}</a>",
other: "<a>Other %{count}</a>"
}
}
)
view_paths = ActionController::Base.view_paths
view_paths.each(&:clear_cache)
@view = ::ActionView::Base.with_empty_template_cache.with_view_paths(view_paths, {})
end
teardown do
I18n.backend.reload!
end
def test_delegates_setting_to_i18n
matcher_called = false
matcher = ->(key, options) do
matcher_called = true
assert_equal :foo, key
assert_equal "en", options[:locale]
end
I18n.stub(:translate, matcher) do
translate :foo, locale: "en"
end
assert matcher_called
end
def test_delegates_localize_to_i18n
@time = Time.utc(2008, 7, 8, 12, 18, 38)
assert_called_with(I18n, :localize, [@time], locale: "en") do
localize @time, locale: "en"
end
assert_equal "Tue, 08 Jul 2008 12:18:38 +0000", localize(@time, locale: "en")
end
def test_converts_key_to_string_as_necessary
key = Struct.new(:to_s).new("translations.foo")
assert_equal "Foo", translate(key)
assert_equal key, translate(:"translations.missing", default: key)
end
def test_returns_nil_for_nil_key_without_default
assert_nil translate(nil)
end
def test_returns_default_for_nil_key_with_default
assert_equal "Foo", translate(nil, default: "Foo")
assert_equal "Foo", translate(nil, default: :"translations.foo")
assert_predicate translate(nil, default: :"translations.html"), :html_safe?
end
def test_returns_missing_translation_message_without_span_wrap
old_value = ActionView::Base.debug_missing_translation
ActionView::Base.debug_missing_translation = false
expected = "translation missing: en.translations.missing"
assert_equal expected, translate(:"translations.missing")
ensure
ActionView::Base.debug_missing_translation = old_value
end
def test_returns_missing_translation_message_wrapped_into_span
expected = '<span class="translation_missing" title="translation missing: en.translations.missing">Missing</span>'
assert_equal expected, translate(:"translations.missing")
assert_equal true, translate(:"translations.missing").html_safe?
end
def test_returns_missing_translation_message_with_unescaped_interpolation
expected = '<span class="translation_missing" title="translation missing: en.translations.missing, name: Kir, year: 2015, vulnerable: &quot; onclick=&quot;alert()&quot;">Missing</span>'
assert_equal expected, translate(:"translations.missing", name: "Kir", year: "2015", vulnerable: %{" onclick="alert()"})
assert_predicate translate(:"translations.missing"), :html_safe?
end
def test_returns_missing_translation_message_does_filters_out_i18n_options
expected = '<span class="translation_missing" title="translation missing: en.translations.missing, year: 2015">Missing</span>'
assert_equal expected, translate(:"translations.missing", year: "2015", default: [])
expected = '<span class="translation_missing" title="translation missing: en.scoped.translations.missing, year: 2015">Missing</span>'
assert_equal expected, translate(:"translations.missing", year: "2015", scope: %i(scoped))
end
def test_raises_missing_translation_message_with_raise_config_option
ActionView::Helpers::TranslationHelper.raise_on_missing_translations = true
assert_raise(I18n::MissingTranslationData) do
translate("translations.missing")
end
ensure
ActionView::Helpers::TranslationHelper.raise_on_missing_translations = false
end
def test_raise_arg_overrides_raise_config_option
ActionView::Helpers::TranslationHelper.raise_on_missing_translations = true
expected = "translation missing: en.translations.missing"
assert_equal expected, translate(:"translations.missing", raise: false)
ensure
ActionView::Helpers::TranslationHelper.raise_on_missing_translations = false
end
def test_raises_missing_translation_message_with_raise_option
assert_raise(I18n::MissingTranslationData) do
translate(:"translations.missing", raise: true)
end
end
def test_uses_custom_exception_handler_when_specified
old_exception_handler = I18n.exception_handler
I18n.exception_handler = I18n::CustomExceptionHandler
assert_equal "from CustomExceptionHandler", translate(:"translations.missing", raise: false)
ensure
I18n.exception_handler = old_exception_handler
end
def test_uses_custom_exception_handler_when_specified_for_html
old_exception_handler = I18n.exception_handler
I18n.exception_handler = I18n::CustomExceptionHandler
assert_equal "from CustomExceptionHandler", translate(:"translations.missing_html", raise: false)
ensure
I18n.exception_handler = old_exception_handler
end
def test_translation_returning_an_array
expected = %w(foo bar)
assert_equal expected, translate(:"translations.array")
end
def test_finds_translation_scoped_by_partial
assert_equal "Foo", view.render(template: "translations/templates/found").strip
end
def test_finds_translation_scoped_by_partial_yielding_single_argument_block
assert_equal "Foo", view.render(template: "translations/templates/found_yield_single_argument").strip
end
def test_finds_lazy_translation_scoped_by_partial
assert_equal "Partial foo", view.render(template: "translations/templates/partial_lazy_translation").strip
end
def test_finds_lazy_translation_scoped_by_partial_with_block
assert_equal "Partial foo", view.render(template: "translations/templates/partial_lazy_translation_block").strip
end
def test_finds_translation_scoped_by_partial_yielding_translation_and_key
assert_equal "translations.templates.found_yield_block.foo: Foo", view.render(template: "translations/templates/found_yield_block").strip
end
def test_finds_array_of_translations_scoped_by_partial
assert_equal "Foo Bar", @view.render(template: "translations/templates/array").strip
end
def test_default_lookup_scoped_by_partial
assert_equal "Foo", view.render(template: "translations/templates/default").strip
end
def test_missing_translation_scoped_by_partial
expected = '<span class="translation_missing" title="translation missing: en.translations.templates.missing.missing">Missing</span>'
assert_equal expected, view.render(template: "translations/templates/missing").strip
end
def test_missing_translation_scoped_by_partial_yield_block
expected = 'translations.templates.missing_yield_block.missing: <span class="translation_missing" title="translation missing: en.translations.templates.missing_yield_block.missing">Missing</span>'
assert_equal expected, view.render(template: "translations/templates/missing_yield_block").strip
end
def test_missing_translation_scoped_by_partial_yield_block_without_debug_wrapper
old_debug_missing_translation = ActionView::Base.debug_missing_translation
ActionView::Base.debug_missing_translation = false
expected = "translations.templates.missing_yield_block.missing: translation missing: en.translations.templates.missing_yield_block.missing"
assert_equal expected, view.render(template: "translations/templates/missing_yield_block").strip
ensure
ActionView::Base.debug_missing_translation = old_debug_missing_translation
end
def test_missing_translation_with_default_scoped_by_partial_yield_block
expected = "translations.templates.missing_with_default_yield_block.missing: Default"
assert_equal expected, view.render(template: "translations/templates/missing_with_default_yield_block").strip
end
def test_missing_translation_scoped_by_partial_yield_single_argument_block
expected = '<span class="translation_missing" title="translation missing: en.translations.templates.missing_yield_single_argument_block.missing">Missing</span>'
assert_equal expected, view.render(template: "translations/templates/missing_yield_single_argument_block").strip
end
def test_missing_translation_with_default_scoped_by_partial_yield_single_argument_block
expected = "Default"
assert_equal expected, view.render(template: "translations/templates/missing_with_default_yield_single_argument_block").strip
end
def test_translate_does_not_mark_plain_text_as_safe_html
assert_equal false, translate(:'translations.hello').html_safe?
end
def test_translate_marks_translations_named_html_as_safe_html
assert_predicate translate(:'translations.html'), :html_safe?
end
def test_translate_marks_translations_with_a_html_suffix_as_safe_html
assert_predicate translate(:'translations.hello_html'), :html_safe?
end
def test_translate_escapes_interpolations_in_translations_with_a_html_suffix
word_struct = Struct.new(:to_s)
assert_equal "<a>Hello <World></a>", translate(:'translations.interpolated_html', word: "<World>")
assert_equal "<a>Hello <World></a>", translate(:'translations.interpolated_html', word: word_struct.new("<World>"))
end
def test_translate_with_html_count
assert_equal "<a>One 1</a>", translate(:'translations.count_html', count: 1)
assert_equal "<a>Other 2</a>", translate(:'translations.count_html', count: 2)
assert_equal "<a>Other <One></a>", translate(:'translations.count_html', count: "<One>")
end
def test_translate_marks_array_of_translations_with_a_html_safe_suffix_as_safe_html
translate(:'translations.array_html').tap do |translated|
assert_equal %w( foo bar ), translated
assert translated.all?(&:html_safe?)
end
end
def test_translate_with_default_and_raise_false
translation = translate(:"translations.missing", default: :"translations.foo", raise: false)
assert_equal "Foo", translation
end
def test_translate_with_default_named_html
translation = translate(:'translations.missing', default: :'translations.hello_html')
assert_equal "<a>Hello World</a>", translation
assert_equal true, translation.html_safe?
end
def test_translate_with_default_named_html_and_raise_false
translation = translate(:"translations.missing", default: :"translations.hello_html", raise: false)
assert_equal "<a>Hello World</a>", translation
assert_predicate translation, :html_safe?
end
def test_translate_with_missing_default
translation = translate(:"translations.missing", default: :also_missing)
expected = '<span class="translation_missing" title="translation missing: en.translations.missing">Missing</span>'
assert_equal expected, translation
assert_equal true, translation.html_safe?
end
def test_translate_with_missing_default_and_raise_option
assert_raise(I18n::MissingTranslationData) do
translate(:'translations.missing', default: :'translations.missing_html', raise: true)
end
end
def test_translate_with_html_key_and_missing_default_and_raise_option
assert_raise(I18n::MissingTranslationData) do
translate(:"translations.missing_html", default: :"translations.missing_html", raise: true)
end
end
def test_translate_with_two_defaults_named_html
translation = translate(:'translations.missing', default: [:'translations.missing_html', :'translations.hello_html'])
assert_equal "<a>Hello World</a>", translation
assert_equal true, translation.html_safe?
end
def test_translate_with_last_default_named_html
translation = translate(:'translations.missing', default: [:'translations.missing', :'translations.hello_html'])
assert_equal "<a>Hello World</a>", translation
assert_equal true, translation.html_safe?
end
def test_translate_with_last_default_not_named_html
translation = translate(:'translations.missing', default: [:'translations.missing_html', :'translations.foo'])
assert_equal "Foo", translation
assert_equal false, translation.html_safe?
end
def test_translate_does_not_mark_unsourced_string_default_as_html_safe
untrusted_string = "<script>alert()</script>"
translation = translate(:"translations.missing", default: [:"translations.missing_html", untrusted_string])
assert_equal untrusted_string, translation
assert_not_predicate translation, :html_safe?
end
def test_translate_with_string_default
translation = translate(:'translations.missing', default: "A Generic String")
assert_equal "A Generic String", translation
end
def test_translate_with_interpolated_string_default
translation = translate(:"translations.missing", default: "An %{kind} String", kind: "Interpolated")
assert_equal "An Interpolated String", translation
end
def test_translate_with_hash_default
hash = { one: "%{count} thing", other: "%{count} things" }
assert_equal hash, translate(:"translations.missing", default: hash)
end
def test_translate_with_hash_default_and_count
hash = { one: "%{count} thing", other: "%{count} things" }
assert_equal "1 thing", translate(:"translations.missing", default: hash, count: 1)
assert_equal "2 things", translate(:"translations.missing", default: hash, count: 2)
end
def test_translate_with_proc_default
translation = translate(:"translations.missing", default: Proc.new { "From Proc" })
assert_equal "From Proc", translation
end
def test_translate_with_object_default
translation = translate(:'translations.missing', default: 123)
assert_equal 123, translation
end
def test_translate_with_array_of_string_defaults
translation = translate(:'translations.missing', default: ["A Generic String", "Second generic string"])
assert_equal "A Generic String", translation
end
def test_translate_with_array_of_defaults_with_nil
translation = translate(:'translations.missing', default: [:'also_missing', nil, "A Generic String"])
assert_equal "A Generic String", translation
end
def test_translate_with_array_of_array_default
translation = translate(:'translations.missing', default: [[]])
assert_equal [], translation
end
def test_translate_with_false_default
translation = translate(:'translations.missing', default: false)
assert_equal false, translation
end
def test_translate_with_nil_default
translation = translate(:'translations.missing', default: nil)
assert_nil translation
end
def test_translate_bulk_lookup
translations = translate([:"translations.foo", :"translations.foo"])
assert_equal ["Foo", "Foo"], translations
end
def test_translate_bulk_lookup_with_default
translations = translate([:"translations.missing", :"translations.missing"], default: :"translations.foo")
assert_equal ["Foo", "Foo"], translations
end
def test_translate_bulk_lookup_html
translations = translate([:"translations.html", :"translations.hello_html"])
assert_equal ["<a>Hello World</a>", "<a>Hello World</a>"], translations
translations.each do |translation|
assert_predicate translation, :html_safe?
end
end
def test_translate_bulk_lookup_html_with_default
translations = translate([:"translations.missing", :"translations.missing"], default: :"translations.html")
assert_equal ["<a>Hello World</a>", "<a>Hello World</a>"], translations
translations.each do |translation|
assert_predicate translation, :html_safe?
end
end
def test_translate_does_not_change_options
options = {}
translate(:"translations.missing", **options)
assert_equal({}, options)
end
def test_translate_caching_backend
caching_backend = Class.new(I18n::Backend::Simple) do
include I18n::Backend::Cache
end
previous_backend = I18n.backend
previous_cache_store = I18n.cache_store
I18n.backend = caching_backend.new
I18n.backend.store_translations(:en, translations: { foo: "Foo" })
I18n.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
assert_equal "Foo", translate(:"translations.foo")
expected = '<span class="translation_missing" title="translation missing: en.translations.missing">Missing</span>'
assert_equal expected, translate(:"translations.missing")
assert_equal expected, translate(:"translations.missing") # returns cached translation
ensure
I18n.backend = previous_backend
I18n.cache_store = previous_cache_store
end
end