2008-10-27 07:47:01 +01:00
|
|
|
require 'abstract_unit'
|
|
|
|
|
2010-05-25 19:45:45 +02:00
|
|
|
class TranslationHelperTest < ActiveSupport::TestCase
|
2008-10-27 07:47:01 +01:00
|
|
|
include ActionView::Helpers::TagHelper
|
|
|
|
include ActionView::Helpers::TranslationHelper
|
2010-05-25 19:45:45 +02:00
|
|
|
|
2008-10-27 07:47:01 +01:00
|
|
|
attr_reader :request
|
2009-02-28 02:23:00 +01:00
|
|
|
def setup
|
|
|
|
end
|
2010-05-25 19:45:45 +02:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
def test_delegates_to_i18n_setting_the_raise_option
|
2010-05-25 19:45:45 +02:00
|
|
|
I18n.expects(:translate).with(['foo'], :locale => 'en', :raise => true).returns([""])
|
2009-02-28 02:23:00 +01:00
|
|
|
translate :foo, :locale => 'en'
|
|
|
|
end
|
2010-05-25 19:45:45 +02:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
def test_returns_missing_translation_message_wrapped_into_span
|
|
|
|
expected = '<span class="translation_missing">en, foo</span>'
|
|
|
|
assert_equal expected, translate(:foo)
|
|
|
|
end
|
|
|
|
|
2010-05-25 19:45:45 +02:00
|
|
|
def test_translation_returning_an_array
|
|
|
|
I18n.expects(:translate).with(["foo"], :raise => true).returns(["foo", "bar"])
|
|
|
|
assert_equal ["foo", "bar"], translate(:foo)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translation_of_an_array
|
|
|
|
assert_deprecated do
|
|
|
|
I18n.expects(:translate).with(["foo", "bar"], :raise => true).returns(["foo", "bar"])
|
|
|
|
assert_equal ["foo", "bar"], translate(["foo", "bar"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translation_of_an_array_returning_an_array
|
|
|
|
assert_deprecated do
|
|
|
|
I18n.expects(:translate).with(["foo", "bar"], :raise => true).returns(["foo", ["bar", "baz"]])
|
|
|
|
assert_equal ["foo", ["bar", "baz"]], translate(["foo", "bar"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translation_of_an_array_with_html
|
|
|
|
assert_deprecated do
|
|
|
|
translate_expected = ['<a href="#">foo</a>', '<a href="#">bar</a>', '<a href="#">baz</a>']
|
|
|
|
I18n.expects(:translate).with(["foo", "bar", "baz_html"], :raise => true).returns(translate_expected)
|
|
|
|
@view = ActionView::Base.new(ActionController::Base.view_paths, {})
|
|
|
|
expected = '<a href="#">foo</a>, <a href="#">bar</a>, <a href="#">baz</a>'
|
|
|
|
assert_equal expected, @view.render(:file => "test/array_translation")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
def test_delegates_localize_to_i18n
|
|
|
|
@time = Time.utc(2008, 7, 8, 12, 18, 38)
|
|
|
|
I18n.expects(:localize).with(@time)
|
|
|
|
localize @time
|
|
|
|
end
|
2010-05-25 19:45:45 +02:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
def test_scoping_by_partial
|
2010-05-25 19:45:45 +02:00
|
|
|
I18n.expects(:translate).with(["test.translation.helper"], :raise => true).returns(["helper"])
|
|
|
|
@view = ActionView::Base.new(ActionController::Base.view_paths, {})
|
|
|
|
assert_equal "helper", @view.render(:file => "test/translation")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_scoping_by_partial_of_an_array
|
|
|
|
assert_deprecated do
|
|
|
|
I18n.expects(:translate).with(["test.scoped_array_translation.foo", "test.scoped_array_translation.bar"], :raise => true).returns(["foo", "bar"])
|
|
|
|
@view = ActionView::Base.new(ActionController::Base.view_paths, {})
|
|
|
|
assert_equal "foo, bar", @view.render(:file => "test/scoped_array_translation")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translate_works_with_symbols
|
|
|
|
I18n.expects(:translate).with(["hello"], :raise => true).returns(["Hello World"])
|
|
|
|
assert_equal "Hello World", translate(:hello)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def test_translate_does_not_mark_plain_text_as_safe_html
|
|
|
|
I18n.expects(:translate).with(["hello"], :raise => true).returns(["Hello World"])
|
|
|
|
assert_equal false, translate("hello").html_safe?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translate_marks_translations_named_html_as_safe_html
|
|
|
|
I18n.expects(:translate).with(["html"], :raise => true).returns(["<a>Hello World</a>"])
|
|
|
|
assert translate("html").html_safe?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translate_marks_translations_with_a_html_suffix_as_safe_html
|
|
|
|
I18n.expects(:translate).with(["hello_html"], :raise => true).returns(["<a>Hello World</a>"])
|
|
|
|
assert translate("hello_html").html_safe?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_translation_returning_an_array_ignores_html_suffix
|
|
|
|
I18n.expects(:translate).with(["foo_html"], :raise => true).returns(["foo", "bar"])
|
|
|
|
assert_equal ["foo", "bar"], translate(:foo_html)
|
2008-10-27 07:47:01 +01:00
|
|
|
end
|
2009-02-28 02:23:00 +01:00
|
|
|
end
|