sayso-i18n 0.5.0.001

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/CHANGELOG.textile +152 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.textile +103 -0
  4. data/ci/Gemfile.no-rails +5 -0
  5. data/ci/Gemfile.no-rails.lock +14 -0
  6. data/ci/Gemfile.rails-2.3.x +9 -0
  7. data/ci/Gemfile.rails-2.3.x.lock +23 -0
  8. data/ci/Gemfile.rails-3.x +9 -0
  9. data/ci/Gemfile.rails-3.x.lock +23 -0
  10. data/lib/i18n.rb +324 -0
  11. data/lib/i18n/backend.rb +19 -0
  12. data/lib/i18n/backend/base.rb +174 -0
  13. data/lib/i18n/backend/cache.rb +102 -0
  14. data/lib/i18n/backend/cascade.rb +53 -0
  15. data/lib/i18n/backend/chain.rb +80 -0
  16. data/lib/i18n/backend/fallbacks.rb +70 -0
  17. data/lib/i18n/backend/flatten.rb +113 -0
  18. data/lib/i18n/backend/flatten_yml.rb +70 -0
  19. data/lib/i18n/backend/gettext.rb +71 -0
  20. data/lib/i18n/backend/interpolation_compiler.rb +121 -0
  21. data/lib/i18n/backend/key_value.rb +100 -0
  22. data/lib/i18n/backend/memoize.rb +46 -0
  23. data/lib/i18n/backend/metadata.rb +65 -0
  24. data/lib/i18n/backend/pluralization.rb +55 -0
  25. data/lib/i18n/backend/simple.rb +87 -0
  26. data/lib/i18n/backend/transliterator.rb +98 -0
  27. data/lib/i18n/config.rb +86 -0
  28. data/lib/i18n/core_ext/hash.rb +29 -0
  29. data/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
  30. data/lib/i18n/core_ext/string/interpolate.rb +105 -0
  31. data/lib/i18n/exceptions.rb +88 -0
  32. data/lib/i18n/gettext.rb +25 -0
  33. data/lib/i18n/gettext/helpers.rb +64 -0
  34. data/lib/i18n/gettext/po_parser.rb +329 -0
  35. data/lib/i18n/interpolate/ruby.rb +31 -0
  36. data/lib/i18n/locale.rb +6 -0
  37. data/lib/i18n/locale/fallbacks.rb +96 -0
  38. data/lib/i18n/locale/tag.rb +28 -0
  39. data/lib/i18n/locale/tag/parents.rb +22 -0
  40. data/lib/i18n/locale/tag/rfc4646.rb +74 -0
  41. data/lib/i18n/locale/tag/simple.rb +39 -0
  42. data/lib/i18n/tests.rb +12 -0
  43. data/lib/i18n/tests/basics.rb +54 -0
  44. data/lib/i18n/tests/defaults.rb +40 -0
  45. data/lib/i18n/tests/interpolation.rb +133 -0
  46. data/lib/i18n/tests/link.rb +56 -0
  47. data/lib/i18n/tests/localization.rb +19 -0
  48. data/lib/i18n/tests/localization/date.rb +84 -0
  49. data/lib/i18n/tests/localization/date_time.rb +77 -0
  50. data/lib/i18n/tests/localization/procs.rb +116 -0
  51. data/lib/i18n/tests/localization/time.rb +76 -0
  52. data/lib/i18n/tests/lookup.rb +74 -0
  53. data/lib/i18n/tests/pluralization.rb +35 -0
  54. data/lib/i18n/tests/procs.rb +55 -0
  55. data/lib/i18n/version.rb +3 -0
  56. data/test/all.rb +8 -0
  57. data/test/api/all_features_test.rb +58 -0
  58. data/test/api/cascade_test.rb +28 -0
  59. data/test/api/chain_test.rb +24 -0
  60. data/test/api/fallbacks_test.rb +30 -0
  61. data/test/api/flatten_yml_test.rb +32 -0
  62. data/test/api/key_value_test.rb +28 -0
  63. data/test/api/memoize_test.rb +60 -0
  64. data/test/api/pluralization_test.rb +30 -0
  65. data/test/api/simple_test.rb +28 -0
  66. data/test/backend/cache_test.rb +83 -0
  67. data/test/backend/cascade_test.rb +85 -0
  68. data/test/backend/chain_test.rb +72 -0
  69. data/test/backend/exceptions_test.rb +23 -0
  70. data/test/backend/fallbacks_test.rb +120 -0
  71. data/test/backend/flatten_yml_test.rb +49 -0
  72. data/test/backend/interpolation_compiler_test.rb +102 -0
  73. data/test/backend/key_value_test.rb +46 -0
  74. data/test/backend/memoize_test.rb +47 -0
  75. data/test/backend/metadata_test.rb +67 -0
  76. data/test/backend/pluralization_test.rb +44 -0
  77. data/test/backend/simple_test.rb +83 -0
  78. data/test/backend/transliterator_test.rb +81 -0
  79. data/test/core_ext/hash_test.rb +30 -0
  80. data/test/core_ext/string/interpolate_test.rb +99 -0
  81. data/test/gettext/api_test.rb +206 -0
  82. data/test/gettext/backend_test.rb +93 -0
  83. data/test/i18n/exceptions_test.rb +116 -0
  84. data/test/i18n/interpolate_test.rb +61 -0
  85. data/test/i18n/load_path_test.rb +26 -0
  86. data/test/i18n_test.rb +236 -0
  87. data/test/locale/fallbacks_test.rb +124 -0
  88. data/test/locale/tag/rfc4646_test.rb +142 -0
  89. data/test/locale/tag/simple_test.rb +32 -0
  90. data/test/run_all.rb +21 -0
  91. data/test/test_data/locales/de.po +72 -0
  92. data/test/test_data/locales/en.rb +3 -0
  93. data/test/test_data/locales/en.yml +3 -0
  94. data/test/test_data/locales/invalid/empty.yml +1 -0
  95. data/test/test_data/locales/plurals.rb +113 -0
  96. data/test/test_helper.rb +56 -0
  97. metadata +194 -0
@@ -0,0 +1,31 @@
1
+ # heavily based on Masao Mutoh's gettext String interpolation extension
2
+ # http://github.com/mutoh/gettext/blob/f6566738b981fe0952548c421042ad1e0cdfb31e/lib/gettext/core_ext/string.rb
3
+
4
+ module I18n
5
+ INTERPOLATION_PATTERN = Regexp.union(
6
+ /%%/,
7
+ /%\{(\w+)\}/, # matches placeholders like "%{foo}"
8
+ /%<(\w+)>(.*?\d*\.?\d*[bBdiouxXeEfgGcps])/ # matches placeholders like "%<foo>.d"
9
+ )
10
+
11
+ class << self
12
+ def interpolate(string, values)
13
+ raise ReservedInterpolationKey.new($1.to_sym, string) if string =~ RESERVED_KEYS_PATTERN
14
+ raise ArgumentError.new('Interpolation values must be a Hash.') unless values.kind_of?(Hash)
15
+ interpolate_hash(string, values)
16
+ end
17
+
18
+ def interpolate_hash(string, values)
19
+ string.gsub(INTERPOLATION_PATTERN) do |match|
20
+ if match == '%%'
21
+ '%'
22
+ else
23
+ key = ($1 || $2).to_sym
24
+ value = values.key?(key) ? values[key] : raise(MissingInterpolationArgument.new(values, string))
25
+ value = value.call(values) if value.respond_to?(:call)
26
+ $3 ? sprintf("%#{$3}", value) : value
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,6 @@
1
+ module I18n
2
+ module Locale
3
+ autoload :Fallbacks, 'i18n/locale/fallbacks'
4
+ autoload :Tag, 'i18n/locale/tag'
5
+ end
6
+ end
@@ -0,0 +1,96 @@
1
+ # Locale Fallbacks
2
+ #
3
+ # Extends the I18n module to hold a fallbacks instance which is set to an
4
+ # instance of I18n::Locale::Fallbacks by default but can be swapped with a
5
+ # different implementation.
6
+ #
7
+ # Locale fallbacks will compute a number of fallback locales for a given locale.
8
+ # For example:
9
+ #
10
+ # <pre><code>
11
+ # I18n.fallbacks[:"es-MX"] # => [:"es-MX", :es, :en] </code></pre>
12
+ #
13
+ # Locale fallbacks always fall back to
14
+ #
15
+ # * all parent locales of a given locale (e.g. :es for :"es-MX") first,
16
+ # * the current default locales and all of their parents second
17
+ #
18
+ # The default locales are set to [I18n.default_locale] by default but can be
19
+ # set to something else.
20
+ #
21
+ # One can additionally add any number of additional fallback locales manually.
22
+ # These will be added before the default locales to the fallback chain. For
23
+ # example:
24
+ #
25
+ # # using the default locale as default fallback locale
26
+ #
27
+ # I18n.default_locale = :"en-US"
28
+ # I18n.fallbacks = I18n::Fallbacks.new(:"de-AT" => :"de-DE")
29
+ # I18n.fallbacks[:"de-AT"] # => [:"de-AT", :"de-DE", :de, :"en-US", :en]
30
+ #
31
+ # # using a custom locale as default fallback locale
32
+ #
33
+ # I18n.fallbacks = I18n::Fallbacks.new(:"en-GB", :"de-AT" => :de, :"de-CH" => :de)
34
+ # I18n.fallbacks[:"de-AT"] # => [:"de-AT", :de, :"en-GB", :en]
35
+ # I18n.fallbacks[:"de-CH"] # => [:"de-CH", :de, :"en-GB", :en]
36
+ #
37
+ # # mapping fallbacks to an existing instance
38
+ #
39
+ # # people speaking Catalan also speak Spanish as spoken in Spain
40
+ # fallbacks = I18n.fallbacks
41
+ # fallbacks.map(:ca => :"es-ES")
42
+ # fallbacks[:ca] # => [:ca, :"es-ES", :es, :"en-US", :en]
43
+ #
44
+ # # people speaking Arabian as spoken in Palestine also speak Hebrew as spoken in Israel
45
+ # fallbacks.map(:"ar-PS" => :"he-IL")
46
+ # fallbacks[:"ar-PS"] # => [:"ar-PS", :ar, :"he-IL", :he, :"en-US", :en]
47
+ # fallbacks[:"ar-EG"] # => [:"ar-EG", :ar, :"en-US", :en]
48
+ #
49
+ # # people speaking Sami as spoken in Finnland also speak Swedish and Finnish as spoken in Finnland
50
+ # fallbacks.map(:sms => [:"se-FI", :"fi-FI"])
51
+ # fallbacks[:sms] # => [:sms, :"se-FI", :se, :"fi-FI", :fi, :"en-US", :en]
52
+
53
+ module I18n
54
+ module Locale
55
+ class Fallbacks < Hash
56
+ def initialize(*mappings)
57
+ @map = {}
58
+ map(mappings.pop) if mappings.last.is_a?(Hash)
59
+ self.defaults = mappings.empty? ? [I18n.default_locale.to_sym] : mappings
60
+ end
61
+
62
+ def defaults=(defaults)
63
+ @defaults = defaults.map { |default| compute(default, false) }.flatten
64
+ end
65
+ attr_reader :defaults
66
+
67
+ def [](locale)
68
+ raise InvalidLocale.new(locale) if locale.nil?
69
+ locale = locale.to_sym
70
+ super || store(locale, compute(locale))
71
+ end
72
+
73
+ def map(mappings)
74
+ mappings.each do |from, to|
75
+ from, to = from.to_sym, Array(to)
76
+ to.each do |_to|
77
+ @map[from] ||= []
78
+ @map[from] << _to.to_sym
79
+ end
80
+ end
81
+ end
82
+
83
+ protected
84
+
85
+ def compute(tags, include_defaults = true)
86
+ result = Array(tags).collect do |tag|
87
+ tags = I18n::Locale::Tag.tag(tag).self_and_parents.map! { |t| t.to_sym }
88
+ tags.each { |_tag| tags += compute(@map[_tag]) if @map[_tag] }
89
+ tags
90
+ end.flatten
91
+ result.push(*defaults) if include_defaults
92
+ result.uniq.compact
93
+ end
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+
3
+ module I18n
4
+ module Locale
5
+ module Tag
6
+ autoload :Parents, 'i18n/locale/tag/parents'
7
+ autoload :Rfc4646, 'i18n/locale/tag/rfc4646'
8
+ autoload :Simple, 'i18n/locale/tag/simple'
9
+
10
+ class << self
11
+ # Returns the current locale tag implementation. Defaults to +I18n::Locale::Tag::Simple+.
12
+ def implementation
13
+ @@implementation ||= Simple
14
+ end
15
+
16
+ # Sets the current locale tag implementation. Use this to set a different locale tag implementation.
17
+ def implementation=(implementation)
18
+ @@implementation = implementation
19
+ end
20
+
21
+ # Factory method for locale tags. Delegates to the current locale tag implementation.
22
+ def tag(tag)
23
+ implementation.tag(tag)
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,22 @@
1
+ module I18n
2
+ module Locale
3
+ module Tag
4
+ module Parents
5
+ def parent
6
+ @parent ||= begin
7
+ segs = to_a.compact
8
+ segs.length > 1 ? self.class.tag(*segs[0..(segs.length-2)].join('-')) : nil
9
+ end
10
+ end
11
+
12
+ def self_and_parents
13
+ @self_and_parents ||= [self] + parents
14
+ end
15
+
16
+ def parents
17
+ @parents ||= ([parent] + (parent ? parent.parents : [])).compact
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,74 @@
1
+ # RFC 4646/47 compliant Locale tag implementation that parses locale tags to
2
+ # subtags such as language, script, region, variant etc.
3
+ #
4
+ # For more information see by http://en.wikipedia.org/wiki/IETF_language_tag
5
+ #
6
+ # Rfc4646::Parser does not implement grandfathered tags.
7
+
8
+ module I18n
9
+ module Locale
10
+ module Tag
11
+ RFC4646_SUBTAGS = [ :language, :script, :region, :variant, :extension, :privateuse, :grandfathered ]
12
+ RFC4646_FORMATS = { :language => :downcase, :script => :capitalize, :region => :upcase, :variant => :downcase }
13
+
14
+ class Rfc4646 < Struct.new(*RFC4646_SUBTAGS)
15
+ class << self
16
+ # Parses the given tag and returns a Tag instance if it is valid.
17
+ # Returns false if the given tag is not valid according to RFC 4646.
18
+ def tag(tag)
19
+ matches = parser.match(tag)
20
+ new(*matches) if matches
21
+ end
22
+
23
+ def parser
24
+ @@parser ||= Rfc4646::Parser
25
+ end
26
+
27
+ def parser=(parser)
28
+ @@parser = parser
29
+ end
30
+ end
31
+
32
+ include Parents
33
+
34
+ RFC4646_FORMATS.each do |name, format|
35
+ define_method(name) { self[name].send(format) unless self[name].nil? }
36
+ end
37
+
38
+ def to_sym
39
+ to_s.to_sym
40
+ end
41
+
42
+ def to_s
43
+ @tag ||= to_a.compact.join("-")
44
+ end
45
+
46
+ def to_a
47
+ members.collect { |attr| self.send(attr) }
48
+ end
49
+
50
+ module Parser
51
+ PATTERN = %r{\A(?:
52
+ ([a-z]{2,3}(?:(?:-[a-z]{3}){0,3})?|[a-z]{4}|[a-z]{5,8}) # language
53
+ (?:-([a-z]{4}))? # script
54
+ (?:-([a-z]{2}|\d{3}))? # region
55
+ (?:-([0-9a-z]{5,8}|\d[0-9a-z]{3}))* # variant
56
+ (?:-([0-9a-wyz](?:-[0-9a-z]{2,8})+))* # extension
57
+ (?:-(x(?:-[0-9a-z]{1,8})+))?| # privateuse subtag
58
+ (x(?:-[0-9a-z]{1,8})+)| # privateuse tag
59
+ /* ([a-z]{1,3}(?:-[0-9a-z]{2,8}){1,2}) */ # grandfathered
60
+ )\z}xi
61
+
62
+ class << self
63
+ def match(tag)
64
+ c = PATTERN.match(tag.to_s).captures
65
+ c[0..4] << (c[5].nil? ? c[6] : c[5]) << c[7] # TODO c[7] is grandfathered, throw a NotImplemented exception here?
66
+ rescue
67
+ false
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,39 @@
1
+ # Simple Locale tag implementation that computes subtags by simply splitting
2
+ # the locale tag at '-' occurences.
3
+ module I18n
4
+ module Locale
5
+ module Tag
6
+ class Simple
7
+ class << self
8
+ def tag(tag)
9
+ new(tag)
10
+ end
11
+ end
12
+
13
+ include Parents
14
+
15
+ attr_reader :tag
16
+
17
+ def initialize(*tag)
18
+ @tag = tag.join('-').to_sym
19
+ end
20
+
21
+ def subtags
22
+ @subtags = tag.to_s.split('-').map { |subtag| subtag.to_s }
23
+ end
24
+
25
+ def to_sym
26
+ tag
27
+ end
28
+
29
+ def to_s
30
+ tag.to_s
31
+ end
32
+
33
+ def to_a
34
+ subtags
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,12 @@
1
+ module I18n
2
+ module Tests
3
+ autoload :Basics, 'i18n/tests/basics'
4
+ autoload :Defaults, 'i18n/tests/defaults'
5
+ autoload :Interpolation, 'i18n/tests/interpolation'
6
+ autoload :Link, 'i18n/tests/link'
7
+ autoload :Localization, 'i18n/tests/localization'
8
+ autoload :Lookup, 'i18n/tests/lookup'
9
+ autoload :Pluralization, 'i18n/tests/pluralization'
10
+ autoload :Procs, 'i18n/tests/procs'
11
+ end
12
+ end
@@ -0,0 +1,54 @@
1
+ module I18n
2
+ module Tests
3
+ module Basics
4
+ def teardown
5
+ I18n.available_locales = nil
6
+ end
7
+
8
+ test "available_locales returns the locales stored to the backend by default" do
9
+ I18n.backend.store_translations('de', :foo => 'bar')
10
+ I18n.backend.store_translations('en', :foo => 'foo')
11
+
12
+ assert I18n.available_locales.include?(:de)
13
+ assert I18n.available_locales.include?(:en)
14
+ end
15
+
16
+ test "available_locales can be set to something else independently from the actual locale data" do
17
+ I18n.backend.store_translations('de', :foo => 'bar')
18
+ I18n.backend.store_translations('en', :foo => 'foo')
19
+
20
+ I18n.available_locales = :foo
21
+ assert_equal [:foo], I18n.available_locales
22
+
23
+ I18n.available_locales = [:foo, 'bar']
24
+ assert_equal [:foo, :bar], I18n.available_locales
25
+
26
+ I18n.available_locales = nil
27
+ assert I18n.available_locales.include?(:de)
28
+ assert I18n.available_locales.include?(:en)
29
+ end
30
+
31
+ test "available_locales memoizes when set explicitely" do
32
+ I18n.backend.expects(:available_locales).never
33
+ I18n.available_locales = [:foo]
34
+ I18n.backend.store_translations('de', :bar => 'baz')
35
+ I18n.reload!
36
+ assert_equal [:foo], I18n.available_locales
37
+ end
38
+
39
+ test "available_locales delegates to the backend when not set explicitely" do
40
+ I18n.backend.expects(:available_locales).twice
41
+ assert_equal I18n.available_locales, I18n.available_locales
42
+ end
43
+
44
+ test "storing a nil value as a translation removes it from the available locale data" do
45
+ I18n.backend.store_translations(:en, :to_be_deleted => 'bar')
46
+ assert_equal 'bar', I18n.t(:to_be_deleted, :default => 'baz')
47
+
48
+ I18n.cache_store.clear if I18n.respond_to?(:cache_store) && I18n.cache_store
49
+ I18n.backend.store_translations(:en, :to_be_deleted => nil)
50
+ assert_equal 'baz', I18n.t(:to_be_deleted, :default => 'baz')
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+
3
+ module I18n
4
+ module Tests
5
+ module Defaults
6
+ def setup
7
+ super
8
+ I18n.backend.store_translations(:en, :foo => { :bar => 'bar', :baz => 'baz' })
9
+ end
10
+
11
+ test "defaults: given nil as a key it returns the given default" do
12
+ assert_equal 'default', I18n.t(nil, :default => 'default')
13
+ end
14
+
15
+ test "defaults: given a symbol as a default it translates the symbol" do
16
+ assert_equal 'bar', I18n.t(nil, :default => :'foo.bar')
17
+ end
18
+
19
+ test "defaults: given a symbol as a default and a scope it stays inside the scope when looking up the symbol" do
20
+ assert_equal 'bar', I18n.t(:missing, :default => :bar, :scope => :foo)
21
+ end
22
+
23
+ test "defaults: given an array as a default it returns the first match" do
24
+ assert_equal 'bar', I18n.t(:does_not_exist, :default => [:does_not_exist_2, :'foo.bar'])
25
+ end
26
+
27
+ test "defaults: given an array of missing keys it raises a MissingTranslationData exception" do
28
+ assert_raise I18n::MissingTranslationData do
29
+ I18n.t(:does_not_exist, :default => [:does_not_exist_2, :does_not_exist_3], :raise => true)
30
+ end
31
+ end
32
+
33
+ test "defaults: using a custom scope separator" do
34
+ # data must have been stored using the custom separator when using the ActiveRecord backend
35
+ I18n.backend.store_translations(:en, { :foo => { :bar => 'bar' } }, { :separator => '|' })
36
+ assert_equal 'bar', I18n.t(nil, :default => :'foo|bar', :separator => '|')
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,133 @@
1
+ # encoding: utf-8
2
+
3
+ module I18n
4
+ module Tests
5
+ module Interpolation
6
+ # If no interpolation parameter is not given, I18n should not alter the string.
7
+ # This behavior is due to three reasons:
8
+ #
9
+ # * Checking interpolation keys in all strings hits performance, badly;
10
+ #
11
+ # * This allows us to retrieve untouched values through I18n. For example
12
+ # I could have a middleware that returns I18n lookup results in JSON
13
+ # to be processed through Javascript. Leaving the keys untouched allows
14
+ # the interpolation to happen at the javascript level;
15
+ #
16
+ # * Security concerns: if I allow users to translate a web site, they can
17
+ # insert %{} in messages causing the I18n lookup to fail in every request.
18
+ #
19
+ test "interpolation: given no values it does not alter the string" do
20
+ assert_equal 'Hi %{name}!', interpolate(:default => 'Hi %{name}!')
21
+ end
22
+
23
+ test "interpolation: given values it interpolates them into the string" do
24
+ assert_equal 'Hi David!', interpolate(:default => 'Hi %{name}!', :name => 'David')
25
+ end
26
+
27
+ test "interpolation: given a nil value it still interpolates it into the string" do
28
+ assert_equal 'Hi !', interpolate(:default => 'Hi %{name}!', :name => nil)
29
+ end
30
+
31
+ test "interpolation: given a lambda as a value it calls it if the string contains the key" do
32
+ assert_equal 'Hi David!', interpolate(:default => 'Hi %{name}!', :name => lambda { |*args| 'David' })
33
+ end
34
+
35
+ test "interpolation: given a lambda as a value it does not call it if the string does not contain the key" do
36
+ assert_nothing_raised { interpolate(:default => 'Hi!', :name => lambda { |*args| raise 'fail' }) }
37
+ end
38
+
39
+ test "interpolation: given values but missing a key it raises I18n::MissingInterpolationArgument" do
40
+ assert_raise(I18n::MissingInterpolationArgument) do
41
+ interpolate(:default => '%{foo}', :bar => 'bar')
42
+ end
43
+ end
44
+
45
+ test "interpolation: it does not raise I18n::MissingInterpolationArgument for escaped variables" do
46
+ assert_nothing_raised(I18n::MissingInterpolationArgument) do
47
+ assert_equal 'Barr %{foo}', interpolate(:default => '%{bar} %%{foo}', :bar => 'Barr')
48
+ end
49
+ end
50
+
51
+ test "interpolation: it does not change the original, stored translation string" do
52
+ I18n.backend.store_translations(:en, :interpolate => 'Hi %{name}!')
53
+ assert_equal 'Hi David!', interpolate(:interpolate, :name => 'David')
54
+ assert_equal 'Hi Yehuda!', interpolate(:interpolate, :name => 'Yehuda')
55
+ end
56
+
57
+ test "interpolation: given the translation is in utf-8 it still works" do
58
+ assert_equal 'Häi David!', interpolate(:default => 'Häi %{name}!', :name => 'David')
59
+ end
60
+
61
+ test "interpolation: given the value is in utf-8 it still works" do
62
+ assert_equal 'Hi ゆきひろ!', interpolate(:default => 'Hi %{name}!', :name => 'ゆきひろ')
63
+ end
64
+
65
+ test "interpolation: given the translation and the value are in utf-8 it still works" do
66
+ assert_equal 'こんにちは、ゆきひろさん!', interpolate(:default => 'こんにちは、%{name}さん!', :name => 'ゆきひろ')
67
+ end
68
+
69
+ if Kernel.const_defined?(:Encoding)
70
+ test "interpolation: given a euc-jp translation and a utf-8 value it raises Encoding::CompatibilityError" do
71
+ assert_raise(Encoding::CompatibilityError) do
72
+ interpolate(:default => euc_jp('こんにちは、%{name}さん!'), :name => 'ゆきひろ')
73
+ end
74
+ end
75
+
76
+ test "interpolation: given a utf-8 translation and a euc-jp value it raises Encoding::CompatibilityError" do
77
+ assert_raise(Encoding::CompatibilityError) do
78
+ interpolate(:default => 'こんにちは、%{name}さん!', :name => euc_jp('ゆきひろ'))
79
+ end
80
+ end
81
+
82
+ test "interpolation: ASCII strings in the backend should be encoded to UTF8 if interpolation options are in UTF8" do
83
+ I18n.backend.store_translations 'en', 'encoding' => ('%{who} let me go'.force_encoding("ASCII"))
84
+ result = I18n.t 'encoding', :who => "måmmå miå"
85
+ assert_equal Encoding::UTF_8, result.encoding
86
+ end
87
+
88
+ test "interpolation: UTF8 strings in the backend are still returned as UTF8 with ASCII interpolation" do
89
+ I18n.backend.store_translations 'en', 'encoding' => 'måmmå miå %{what}'
90
+ result = I18n.t 'encoding', :what => 'let me go'.force_encoding("ASCII")
91
+ assert_equal Encoding::UTF_8, result.encoding
92
+ end
93
+
94
+ test "interpolation: UTF8 strings in the backend are still returned as UTF8 even with numbers interpolation" do
95
+ I18n.backend.store_translations 'en', 'encoding' => '%{count} times: måmmå miå'
96
+ result = I18n.t 'encoding', :count => 3
97
+ assert_equal Encoding::UTF_8, result.encoding
98
+ end
99
+ end
100
+
101
+ test "interpolation: given a translations containing a reserved key it raises I18n::ReservedInterpolationKey" do
102
+ assert_raise(I18n::ReservedInterpolationKey) { interpolate(:default => '%{default}', :foo => :bar) }
103
+ assert_raise(I18n::ReservedInterpolationKey) { interpolate(:default => '%{scope}', :foo => :bar) }
104
+ assert_raise(I18n::ReservedInterpolationKey) { interpolate(:default => '%{separator}', :foo => :bar) }
105
+ end
106
+
107
+ protected
108
+
109
+ def capture(stream)
110
+ begin
111
+ stream = stream.to_s
112
+ eval "$#{stream} = StringIO.new"
113
+ yield
114
+ result = eval("$#{stream}").string
115
+ ensure
116
+ eval("$#{stream} = #{stream.upcase}")
117
+ end
118
+
119
+ result
120
+ end
121
+
122
+ def euc_jp(string)
123
+ string.encode!(Encoding::EUC_JP)
124
+ end
125
+
126
+ def interpolate(*args)
127
+ options = args.last.is_a?(Hash) ? args.pop : {}
128
+ key = args.pop
129
+ I18n.backend.translate('en', key, options)
130
+ end
131
+ end
132
+ end
133
+ end