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 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
require "spec_helper"
require 'fast_gettext/translation_repository/base'
describe 'Storage' do
include FastGettext::Storage
before do
#reset everything to nil
self.default_available_locales = nil
self.default_text_domain = nil
self.default_locale = nil
self.available_locales = nil
self.text_domain = 'xxx'
send(:_locale=, nil)#nil is not allowed to be set...
# fake a simple text-domain
translation_repositories[text_domain] = FastGettext::TranslationRepository::Base.new('x')
default_locale.should == nil
default_available_locales.should == nil
available_locales.should == nil
locale.should == 'en'
text_domain.should == 'xxx'
end
def thread_safe(method, value_a, value_b)
send("#{method}=",value_a)
# mess around with other threads
100.times do
Thread.new {FastGettext.send("#{method}=",value_b)}
end
sleep 0.1 # Ruby 1.9 cannot switch threads fast enough <-> spec fails without this WTF!
!!(send(method) == value_a)
end
{
:locale=>['de','en'],
:available_locales=>[['de'],['en']],
:text_domain=>['xx','yy'],
:pluralisation_rule=>[lambda{|x|x==4},lambda{|x|x==1}]
}.each do |method, (value_a, value_b)|
it "stores #{method} thread safe" do
thread_safe(method, value_a, value_b).should == true
end
end
context "non-thread safe" do
after do
self.translation_repositories.clear
end
it "stores translation_repositories" do
self.translation_repositories[:x]=1
t = Thread.new{self.translation_repositories[:x]=2}
t.join
self.translation_repositories[:x].should == 2
end
end
describe :pluralisation_rule do
it "defaults to singular-if-1 when it is not set" do
should_receive(:current_repository).at_least(1).and_return double(:pluralisation_rule => nil)
self.pluralisation_rule = nil
pluralisation_rule.call(1).should == false
pluralisation_rule.call(0).should == true
pluralisation_rule.call(2).should == true
end
end
describe :default_locale do
it "stores default_locale non-thread-safe" do
thread_safe(:default_locale, 'de', 'en').should == false
end
it "does not overwrite locale" do
self.locale = 'de'
self.default_locale = 'yy'
self.locale.should == 'de'
end
it "falls back to default if locale is missing" do
self.default_locale = 'yy'
self.locale.should == 'yy'
end
it "does not set non-available-locales as default" do
self.available_locales = ['xx']
self.default_locale = 'yy'
self.default_locale.should == nil
end
it "can set default_locale to nil" do
self.default_locale = 'xx'
self.default_locale = nil
default_locale.should be_nil
end
end
describe :default_text_domain do
it "stores default_text_domain non-thread safe" do
thread_safe(:default_text_domain, 'xx', 'en').should == false
end
it "uses default_text_domain when text_domain is not set" do
self.text_domain = nil
self.default_text_domain = 'x'
text_domain.should == 'x'
end
it "does not use default when domain is set" do
self.text_domain = 'x'
self.default_text_domain = 'y'
text_domain.should == 'x'
end
end
describe :default_available_locales do
it "stores default_available_locales non-thread-safe" do
thread_safe(:default_available_locales, ['xx'], ['yy']).should == false
end
it "converts locales to s" do
self.available_locales = [:x]
available_locales.should == ['x']
end
it "uses default_available_locales when available_locales is not set" do
self.available_locales = nil
self.default_available_locales = ['x']
available_locales.should == ['x']
end
it "does not use default when available_locales is set" do
self.available_locales = ['x']
self.default_available_locales = ['y']
available_locales.should == ['x']
end
end
describe :locale do
it "stores everything as long as available_locales is not set" do
self.available_locales = nil
self.locale = 'XXX'
locale.should == 'XXX'
end
it "is en if no locale and no available_locale were set" do
FastGettext.send(:_locale=,nil)
self.available_locales = nil
locale.should == 'en'
end
it "does not change the locale if locales was called with nil" do
self.locale = nil
locale.should == 'en'
end
it "is the first available_locale if one was set" do
self.available_locales = ['de']
locale.should == 'de'
end
it "does not store a locale if it is not available" do
self.available_locales = ['de']
self.locale = 'en'
locale.should == 'de'
end
it "set_locale returns the old locale if the new could not be set" do
self.locale = 'de'
self.available_locales = ['de']
self.set_locale('en').should == 'de'
end
it "set_locale resets to default with :reset_on_unknown" do
self.locale = 'de'
self.available_locales = ['fr']
self.set_locale('en').should == 'fr'
end
{
'Opera' => "de-DE,de;q=0.9,en;q=0.8",
'Firefox' => "de-de,de;q=0.8,en-us;q=0.5,en;q=0.3",
}.each do |browser,accept_language|
it "sets the locale from #{browser} headers" do
FastGettext.available_locales = ['de_DE','de','xx']
FastGettext.locale = 'xx'
FastGettext.locale = accept_language
FastGettext.locale.should == 'de_DE'
end
end
it "sets a unimportant locale if it is the only available" do
FastGettext.available_locales = ['en','xx']
FastGettext.locale = "de-de,de;q=0.8,en-us;q=0.5,en;q=0.3"
FastGettext.locale.should == 'en'
end
it "sets the locale with the highest wheight" do
FastGettext.available_locales = ['en','de']
FastGettext.locale = "xx-us;q=0.5,de-de,de;q=0.8,en;q=0.9"
FastGettext.locale.should == 'en'
end
it "sets the locale from languages" do
FastGettext.available_locales = ['de']
FastGettext.locale = "xx-us;q=0.5,de-de;q=0.8,en-uk;q=0.9"
FastGettext.locale.should == 'de'
end
it "sets locale from comma seperated" do
FastGettext.available_locales = ['de_DE','en','xx']
FastGettext.locale = "de,de-de,en"
FastGettext.locale.should == 'de_DE'
end
end
describe :silence_errors do
before do
self.text_domain = rand(99999).to_s
end
after do
self.translation_repositories.clear
end
it "raises when a textdomain was empty" do
begin
FastGettext._('x')
raise 'NOPE!'
rescue FastGettext::Storage::NoTextDomainConfigured
end
end
it "can silence errors" do
FastGettext.silence_errors
FastGettext._('x').should == 'x'
end
it "does not overwrite existing textdomain" do
self.translation_repositories[FastGettext.text_domain] = 1
FastGettext.silence_errors
self.translation_repositories[FastGettext.text_domain].should == 1
end
it "has ./locale as locale path when silenced" do
FastGettext.silence_errors
FastGettext.locale_path.should == 'locale'
end
end
describe :cache do
before do
FastGettext.text_domain = 'xxx'
FastGettext.available_locales = ['de','en']
FastGettext.locale = 'de'
FastGettext.current_repository.stub(:"[]").with('abc').and_return 'old'
FastGettext.current_repository.stub(:"[]").with('unfound').and_return nil
FastGettext._('abc')
FastGettext._('unfound')
FastGettext.locale = 'en'
end
it "stores a translation seperate by locale" do
FastGettext.cache.fetch('abc') { :missing }.should == :missing
end
it "stores a translation seperate by domain" do
FastGettext.locale = 'de'
FastGettext.text_domain = nil
FastGettext.cache.fetch('abc') { :missing }.should == :missing
end
it "cache is restored through setting of default_text_domain" do
FastGettext.locale = 'de'
FastGettext.text_domain = nil
FastGettext.default_text_domain = 'xxx'
FastGettext.cache.fetch('abc') { :missing }.should == 'old'
end
it "cache is restored through setting of default_locale" do
FastGettext.send(:_locale=,nil)#reset locale to nil
FastGettext.default_locale = 'de'
FastGettext.locale.should == 'de'
FastGettext.cache.fetch('abc') { :missing }.should == 'old'
end
it "stores a translation permanently" do
FastGettext.locale = 'de'
FastGettext.cache.fetch('abc') { :missing }.should == 'old'
end
it "stores a unfound translation permanently" do
FastGettext.locale = 'de'
FastGettext.cache.fetch('unfound') { :missing }.should == false
end
end
describe :reload! do
it "reloads all repositories" do
FastGettext.translation_repositories.each do |name, repository|
repository.should_receive(:reload)
end
FastGettext.reload!
end
it "clears the cache" do
FastGettext.cache.should_receive(:reload!)
FastGettext.reload!
end
end
describe :key_exist? do
it "does not find default keys" do
FastGettext._('abcde')
key_exist?('abcde').should == false
end
it "finds using the current repository" do
should_receive(:current_repository).and_return '1234'=>'1'
key_exist?('1234').should == true
end
it "sets the current cache with a found result" do
should_receive(:current_repository).and_return 'xxx'=>'1'
key_exist?('xxx')
cache.fetch('xxx').should == '1'
end
it "does not overwrite an existing cache value" do
cache['xxx']='xxx'
key_exist?('xxx')
cache.fetch('xxx').should == 'xxx'
end
it "is false for gettext meta key" do
key_exist?("").should == false
end
end
describe :cached_find do
it "is nil for gettext meta key" do
cached_find("").should == false
end
end
describe :format_locale do
it "allows 2-letter locales to be formatted" do
format_locale("de-ch").should == "de_CH"
end
it "allows 3-letter locales to be formatted" do
format_locale("gsw-ch").should == "gsw_CH"
end
end
describe :expire_cache_for do
it "expires the cached key" do
should_receive(:current_repository).and_return 'xxx' => 'new string'
cache['xxx'] = 'old string'
cached_find('xxx').should == 'old string'
expire_cache_for('xxx')
cached_find('xxx').should == 'new string'
end
end
describe FastGettext::Storage::NoTextDomainConfigured do
it "shows what to do" do
FastGettext::Storage::NoTextDomainConfigured.new.to_s.should =~ /FastGettext\.add_text_domain/
end
it "warns when text_domain is nil" do
FastGettext.text_domain = nil
FastGettext::Storage::NoTextDomainConfigured.new.to_s.should =~ /\(nil\)/
end
it "shows current text_domain" do
FastGettext.text_domain = 'xxx'
FastGettext::Storage::NoTextDomainConfigured.new('xxx').to_s.should =~ /xxx/
end
end
end
|