File: translation_spec.rb

package info (click to toggle)
ruby-fast-gettext 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 692 kB
  • ctags: 254
  • sloc: ruby: 2,838; makefile: 2
file content (363 lines) | stat: -rw-r--r-- 9,889 bytes parent folder | download | duplicates (2)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
require "spec_helper"

describe FastGettext::Translation do
  include FastGettext::Translation
  include FastGettext::TranslationMultidomain

  before do
    default_setup
  end

  describe "unknown locale" do
    before do
      FastGettext.available_locales = nil
      FastGettext.locale = 'xx'
    end

    it "does not translate" do
      _('car').should == 'car'
    end

    it "does not translate plurals" do
      n_('car','cars',2).should == 'cars'
    end
  end

  describe :_ do
    it "translates simple text" do
      _('car').should == 'Auto'
    end

    it "returns the original string if its translation is blank" do
      _('Untranslated').should == 'Untranslated'
    end

    it "does not return the blank translation if a string's translation is blank" do
      _('Untranslated').should_not == ''
    end

    it "returns key if not translation was found" do
      _('NOT|FOUND').should == 'NOT|FOUND'
    end

    it "does not return the gettext meta information" do
      _('').should == ''
    end

    it "returns nil when specified" do
      _('not found'){nil}.should be_nil
    end

    it "returns block when specified" do
      _('not found'){:block}.should == :block
    end
  end

  describe :n_ do
    before do
      FastGettext.pluralisation_rule = nil
    end

    it "translates pluralized" do
      n_('Axis','Axis',1).should == 'Achse'
      n_('Axis','Axis',2).should == 'Achsen'
      n_('Axis','Axis',0).should == 'Achsen'
    end

    describe "pluralisations rules" do
      it "supports abstract pluralisation rules" do
        FastGettext.pluralisation_rule = lambda{|n|2}
        n_('a','b','c','d',4).should == 'c'
      end

      it "supports false as singular" do
        FastGettext.pluralisation_rule = lambda{|n|n!=2}
        n_('singular','plural','c','d',2).should == 'singular'
      end

      it "supports true as plural" do
        FastGettext.pluralisation_rule = lambda{|n|n==2}
        n_('singular','plural','c','d',2).should == 'plural'
      end
    end

    it "returns a simple translation when no combined was found" do
      n_('Axis','NOTFOUNDs',1).should == 'Achse'
    end

    it "returns the appropriate key if no translation was found" do
      n_('NOTFOUND','NOTFOUNDs',1).should == 'NOTFOUND'
      n_('NOTFOUND','NOTFOUNDs',2).should == 'NOTFOUNDs'
    end

    it "returns the last key when no translation was found and keys where to short" do
      FastGettext.pluralisation_rule = lambda{|x|4}
      n_('Apple','Apples',2).should == 'Apples'
    end

    it "returns block when specified" do
      n_('not found'){:block}.should == :block
    end
  end

  describe :s_ do
    it "translates simple text" do
      s_('car').should == 'Auto'
    end

    it "returns cleaned key if a translation was not found" do
      s_("XXX|not found").should == "not found"
    end

    it "can use a custom seperator" do
      s_("XXX/not found",'/').should == "not found"
    end

    it "returns block when specified" do
      s_('not found'){:block}.should == :block
    end
  end

  describe :N_ do
    it "returns the key" do
      N_('XXXXX').should == 'XXXXX'
    end
  end

  describe :Nn_ do
    it "returns the keys as array" do
      Nn_('X','Y').should == ['X','Y']
    end
  end

  describe :ns_ do
    it "translates whith namespace" do
      ns_('Fruit|Apple','Fruit|Apples',2).should == 'Apples'
    end

    it "returns block when specified" do
      ns_('not found'){:block}.should == :block
      ns_('not found'){nil}.should be_nil
    end
  end

  describe :multi_domain do
    before do
      setup_extra_domain
    end

    describe :_in_domain do
      it "changes domain via in_domain" do
        Thread.current[:fast_gettext_text_domain].should == "test"
        _in_domain "fake" do
          Thread.current[:fast_gettext_text_domain].should == "fake"
        end
        Thread.current[:fast_gettext_text_domain].should == "test"
      end
    end

    describe :d_ do
      it "translates simple text" do
        d_('test', 'car').should == 'Auto'
      end

      it "translates simple text in different domain" do
        d_('test2', 'car').should == 'Auto 2'
      end

      it "translates simple text in different domain one transaction" do
        d_('test', 'car').should == 'Auto'
        d_('test2', 'car').should == 'Auto 2'
      end

      it "returns the original string if its translation is blank" do
        d_('test', 'Untranslated').should == 'Untranslated'
      end

      it "sets text domain back to previous one" do
        old_domain = FastGettext.text_domain
        d_('test2', 'car').should == 'Auto 2'
        FastGettext.text_domain.should == old_domain
      end

      it "returns appropriate key if translation is not found in a domain" do
        FastGettext.translation_repositories['fake'] = {}
        d_('fake', 'car').should == 'car'
      end
    end

    describe :dn_ do
      before do
        FastGettext.pluralisation_rule = nil
      end

      it "translates pluralized" do
        dn_('test', 'Axis','Axis',1).should == 'Achse'
        dn_('test2', 'Axis','Axis',1).should == 'Achse 2'
      end

      it "returns a simple translation when no combined was found" do
        dn_('test', 'Axis','NOTFOUNDs',1).should == 'Achse'
        dn_('test2', 'Axis','NOTFOUNDs',1).should == 'Achse 2'
      end

      it "returns the appropriate key if no translation was found" do
        dn_('test', 'NOTFOUND','NOTFOUNDs',1).should == 'NOTFOUND'
        dn_('test', 'NOTFOUND','NOTFOUNDs',2).should == 'NOTFOUNDs'
      end

      it "returns the last key when no translation was found and keys where to short" do
        FastGettext.pluralisation_rule = lambda{|x|4}
        dn_('test', 'Apple','Apples',2).should == 'Apples'
      end
    end

    describe :ds_ do
      it "translates simple text" do
        ds_('test2', 'car').should == 'Auto 2'
        ds_('test', 'car').should == 'Auto'
      end

      it "returns cleaned key if a translation was not found" do
        ds_('test2', "XXX|not found").should == "not found"
      end

      it "can use a custom seperator" do
        ds_('test2', "XXX/not found",'/').should == "not found"
      end
    end

    describe :dns_ do
      it "translates whith namespace" do
        dns_('test', 'Fruit|Apple','Fruit|Apples',2).should == 'Apples'
        dns_('test2', 'Fruit|Apple','Fruit|Apples',2).should == 'Apples'
      end
    end
  end

  describe :multidomain_all do
    before do
      setup_extra_domain
    end

    describe :D_ do
      it "translates simple text" do
        D_('not found').should == 'not found'
        D_('only in test2 domain').should == 'nur in test2 Domain'
      end

      it "returns translation from random domain" do
        D_('car').should match('(Auto|Auto 2)')
      end

      it "sets text domain back to previous one" do
        old_domain = FastGettext.text_domain
        D_('car').should match('(Auto|Auto 2)')
        FastGettext.text_domain.should == old_domain
      end
    end

    describe :Dn_ do
      before do
        FastGettext.pluralisation_rule = nil
      end

      it "translates pluralized" do
        Dn_('Axis','Axis',1).should match('(Achse|Achse 2)')
      end

      it "returns a simple translation when no combined was found" do
        Dn_('Axis','NOTFOUNDs',1).should match('(Achse|Achse 2)')
      end

      it "returns the appropriate key if no translation was found" do
        Dn_('NOTFOUND','NOTFOUNDs',1).should == 'NOTFOUND'
      end

      it "returns the last key when no translation was found and keys where to short" do
        Dn_('Apple','Apples',2).should == 'Apples'
      end
    end

    describe :Ds_ do
      it "translates simple text" do
        Ds_('car').should match('(Auto|Auto 2)')
      end

      it "returns cleaned key if a translation was not found" do
        Ds_("XXX|not found").should == "not found"
      end

      it "can use a custom seperator" do
        Ds_("XXX/not found",'/').should == "not found"
      end
    end

    describe :Dns_ do
      it "translates whith namespace" do
        Dns_('Fruit|Apple','Fruit|Apples',1).should == 'Apple'
        Dns_('Fruit|Apple','Fruit|Apples',2).should == 'Apples'
      end

      it "returns cleaned key if a translation was not found" do
        Dns_("XXX|not found", "YYY|not found", 1).should == "not found"
        Dns_("XXX|not found", "YYY|not found", 2).should == "not found"
      end
    end
  end

  describe :caching do
    describe :cache_hit do
      before do
        #singular cache keys
        FastGettext.cache['xxx'] = '1'

        #plural cache keys
        FastGettext.cache['||||xxx'] = ['1','2']
        FastGettext.cache['||||xxx||||yyy'] = ['1','2']
      end

      it "uses the cache when translating with _" do
        _('xxx').should == '1'
      end

      it "uses the cache when translating with s_" do
        s_('xxx').should == '1'
      end

      it "uses the cache when translating with n_" do
        n_('xxx','yyy',1).should == '1'
      end

      it "uses the cache when translating with n_ and single argument" do
        n_('xxx',1).should == '1'
      end
    end

    it "caches different locales seperatly" do
      FastGettext.locale = 'en'
      _('car').should == 'car'
      FastGettext.locale = 'de'
      _('car').should == 'Auto'
    end

    it "caches different textdomains seperatly" do
      _('car').should == 'Auto'

      FastGettext.translation_repositories['fake'] = {}
      FastGettext.text_domain = 'fake'
      _('car').should == 'car'

      FastGettext.text_domain = 'test'
      _('car').should == 'Auto'
    end

    it "caches different textdomains seperatly for d_" do
      _('car').should == 'Auto'

      FastGettext.translation_repositories['fake'] = {}
      d_('fake', 'car').should == 'car'
      d_('test','car').should == 'Auto'
    end
  end
end