Sha256: f4f604035e017b74f26868ed3279bd23503a28a6ff9c1c98f6a5d925cb6ee23e

Contents?: true

Size: 1.85 KB

Versions: 3

Compression:

Stored size: 1.85 KB

Contents

# encoding: utf-8

require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
require 'i18n/backend/cache'

begin
  require 'active_support'
rescue LoadError
  $stderr.puts "Skipping cache tests using ActiveSupport"
else

class I18nBackendCacheTest < Test::Unit::TestCase
  class Backend
    include I18n::Backend::Base
    include I18n::Backend::Cache
  end

  def setup
    I18n.backend = Backend.new
    super
    I18n.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
  end

  def teardown
    I18n.cache_store = nil
  end

  def test_uses_cache
    assert I18n.cache_store.is_a?(ActiveSupport::Cache::MemoryStore)
  end

  with_mocha do
    define_method "test translate hits the backend and caches the response" do
      I18n.backend.expects(:lookup).returns('Foo')
      assert_equal 'Foo', I18n.t(:foo)

      I18n.backend.expects(:lookup).never
      assert_equal 'Foo', I18n.t(:foo)

      I18n.backend.expects(:lookup).returns('Bar')
      assert_equal 'Bar', I18n.t(:bar)
    end

    define_method "test still raises MissingTranslationData but also caches it" do
      I18n.backend.expects(:lookup).returns(nil)
      assert_raises(I18n::MissingTranslationData) { I18n.t(:missing, :raise => true) }

      I18n.backend.expects(:lookup).never
      assert_raises(I18n::MissingTranslationData) { I18n.t(:missing, :raise => true) }
    end
  end

  define_method "test uses 'i18n' as a cache key namespace by default" do
    assert_equal 0, I18n.backend.send(:cache_key, :foo).index('i18n')
  end

  define_method "test adds a custom cache key namespace" do
    with_cache_namespace('bar') do
      assert_equal 0, I18n.backend.send(:cache_key, :foo).index('i18n-bar')
    end
  end

  protected

    def with_cache_namespace(namespace)
      I18n.cache_namespace = namespace
      yield
      I18n.cache_namespace = nil
    end
end

end # AS cache check

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
activesupport-2.3.6.pre lib/active_support/vendor/i18n-0.3.3/test/cases/backend/cache_test.rb
i18n-0.3.3 test/cases/backend/cache_test.rb
i18n-0.3.2 test/cases/backend/cache_test.rb