mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
81 lines
2.7 KiB
Ruby
81 lines
2.7 KiB
Ruby
require 'abstract_unit'
|
|
|
|
class TranslationHelperTest < ActiveSupport::TestCase
|
|
include ActionView::Helpers::TagHelper
|
|
include ActionView::Helpers::TranslationHelper
|
|
|
|
attr_reader :request, :view
|
|
|
|
def setup
|
|
I18n.backend.store_translations(:en,
|
|
:translations => {
|
|
:templates => {
|
|
:found => { :foo => 'Foo' },
|
|
:array => { :foo => { :bar => 'Foo Bar' } }
|
|
},
|
|
:foo => 'Foo',
|
|
:hello => '<a>Hello World</a>',
|
|
:html => '<a>Hello World</a>',
|
|
:hello_html => '<a>Hello World</a>',
|
|
:array_html => %w(foo bar),
|
|
:array => %w(foo bar)
|
|
}
|
|
)
|
|
@view = ::ActionView::Base.new(ActionController::Base.view_paths, {})
|
|
end
|
|
|
|
def test_delegates_to_i18n_setting_the_rescue_format_option_to_html
|
|
I18n.expects(:translate).with(:foo, :locale => 'en', :rescue_format => :html).returns("")
|
|
translate :foo, :locale => 'en'
|
|
end
|
|
|
|
def test_delegates_localize_to_i18n
|
|
@time = Time.utc(2008, 7, 8, 12, 18, 38)
|
|
I18n.expects(:localize).with(@time)
|
|
localize @time
|
|
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")
|
|
end
|
|
|
|
def test_returns_missing_translation_message_using_nil_as_rescue_format
|
|
expected = 'translation missing: en.translations.missing'
|
|
assert_equal expected, translate(:"translations.missing", :rescue_format => nil)
|
|
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(:file => 'translations/templates/found').strip
|
|
end
|
|
|
|
def test_finds_array_of_translations_scoped_by_partial
|
|
assert_equal 'Foo Bar', @view.render(:file => 'translations/templates/array').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(:file => 'translations/templates/missing').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 translate(:'translations.html').html_safe?
|
|
end
|
|
|
|
def test_translate_marks_translations_with_a_html_suffix_as_safe_html
|
|
assert translate(:'translations.hello_html').html_safe?
|
|
end
|
|
|
|
def test_translation_returning_an_array_ignores_html_suffix
|
|
assert_equal ["foo", "bar"], translate(:'translations.array_html')
|
|
end
|
|
end
|