3 class I18nTest < ActiveSupport::TestCase
4 I18n.available_locales.each do |locale|
5 define_method("test_#{locale.to_s.underscore}".to_sym) do
6 plural_keys = plural_keys(locale)
8 translation_keys.each do |key|
11 default_value = I18n.t(key, :locale => I18n.default_locale)
13 if default_value.is_a?(Hash)
14 variables.push("count")
16 default_value.each do |_subkey, subvalue|
17 subvalue.scan(/%\{(\w+)\}/) do
22 default_value.scan(/%\{(\w+)\}/) do
27 if key =~ /^(active(model|record)\.)?errors\./
28 variables.push("attribute")
31 value = I18n.t(key, :locale => locale, :fallback => true)
34 value.each do |subkey, subvalue|
35 # assert plural_keys.include?(subkey), "#{key}.#{subkey} is not a valid plural key"
38 subvalue.scan(/%\{(\w+)\}/) do
39 assert variables.include?($1), "#{key}.#{subkey} uses unknown interpolation variable #{$1}"
44 assert value.is_a?(String), "#{key} is not a string"
46 value.scan(/%\{(\w+)\}/) do
47 assert variables.include?($1), "#{key} uses unknown interpolation variable #{$1}"
52 assert %w(ltr rtl).include?(I18n.t("html.dir", :locale => locale)), "html.dir must be ltr or rtl"
58 def translation_keys(scope = nil)
59 plural_keys = plural_keys(I18n.default_locale)
61 I18n.t(scope || ".", :locale => I18n.default_locale).map do |key, value|
62 scoped_key = scope ? "#{scope}.#{key}" : key
65 if value.keys - plural_keys == []
68 translation_keys(scoped_key)
70 elsif value.is_a?(String)
76 def plural_keys(locale)
77 I18n.t("i18n.plural.keys", :locale => locale, :raise => true) + [:zero]
78 rescue I18n::MissingTranslationData