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
|
# encoding: utf-8
$:.unshift(File.expand_path(File.dirname(__FILE__) + '/../')); $:.uniq!
require 'test_helper'
setup_active_record
class I18nBackendActiveRecordTest < Test::Unit::TestCase
def setup
I18n.backend = I18n::Backend::ActiveRecord.new
store_translations(:en, :foo => { :bar => 'bar', :baz => 'baz' })
end
def teardown
I18n::Backend::ActiveRecord::Translation.destroy_all
super
end
test "store_translations does not allow ambiguous keys (1)" do
I18n::Backend::ActiveRecord::Translation.delete_all
I18n.backend.store_translations(:en, :foo => 'foo')
I18n.backend.store_translations(:en, :foo => { :bar => 'bar' })
I18n.backend.store_translations(:en, :foo => { :baz => 'baz' })
translations = I18n::Backend::ActiveRecord::Translation.locale(:en).lookup('foo').all
assert_equal %w(bar baz), translations.map(&:value)
assert_equal({ :bar => 'bar', :baz => 'baz' }, I18n.t(:foo))
end
test "store_translations does not allow ambiguous keys (2)" do
I18n::Backend::ActiveRecord::Translation.delete_all
I18n.backend.store_translations(:en, :foo => { :bar => 'bar' })
I18n.backend.store_translations(:en, :foo => { :baz => 'baz' })
I18n.backend.store_translations(:en, :foo => 'foo')
translations = I18n::Backend::ActiveRecord::Translation.locale(:en).lookup('foo').all
assert_equal %w(foo), translations.map(&:value)
assert_equal 'foo', I18n.t(:foo)
end
test "can store translations with keys that are translations containing special chars" do
I18n.backend.store_translations(:es, :"Pagina's" => "Pagina's" )
assert_equal "Pagina's", I18n.t(:"Pagina's", :locale => :es)
end
with_mocha do
test "missing translations table does not cause an error in #available_locales" do
I18n::Backend::ActiveRecord::Translation.expects(:available_locales).raises(::ActiveRecord::StatementInvalid)
assert_equal [], I18n.backend.available_locales
end
end
def test_expand_keys
assert_equal %w(foo foo.bar foo.bar.baz), I18n.backend.send(:expand_keys, :'foo.bar.baz')
end
end if defined?(ActiveRecord)
|