Sha256: 456e7d1187665bed343983a0fdf0bc36675aa2a2220a3a01f0648cef5f5d39e3

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

require File.dirname(__FILE__) + '/test_helper.rb'

class Plugin; end

require 'cache_advance/active_record_sweeper'

class CacheSetTest < Test::Unit::TestCase
  def setup
    @cache_set = CacheAdvance::CacheSet.new
  end
  
  def test_define_caches_should_yield_a_mapper
    @cache_set.define_caches do |mapper|
      assert_equal CacheAdvance::Mapper, mapper.class
    end
  end
  
  def test_should_apply_the_cache_if_found
    request = mock
    options = { :key => 'hippo' }
    @cache_set.add_named_cache(:kewl, {})
    @cache_set.named_caches[:kewl].expects(:value_for).with(request, options)
    @cache_set.apply(:kewl, request, options) { }
  end
  
  def test_apply_should_throw_exception_with_invalid_name
    assert_raise CacheAdvance::UnknownNamedCacheException do
      @cache_set.apply(:total_hack, mock(), {}) { }
    end
  end
  
  def test_should_pass_expiration_types_to_the_sweeper
    @cache_set.sweeper_type = CacheAdvance::ActiveRecordSweeper
    @cache_set.add_named_cache(:kewl, { :expiration_types => [:publication, :article] })
    @cache_set.add_named_cache(:howza, { :expiration_types => [:publication] })
    CacheAdvance::ActiveRecordSweeper.expects(:initialize_observed).with([:publication, :article])
    @cache_set.create_sweepers
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
aub-cache_advance-0.2.0 test/cache_set_test.rb
aub-cache_advance-1.0.2 test/cache_set_test.rb
aub-cache_advance-1.0.3 test/cache_set_test.rb
aub-cache_advance-1.0.4 test/cache_set_test.rb
aub-cache_advance-1.0.5 test/cache_set_test.rb
aub-cache_advance-1.0.6 test/cache_set_test.rb
aub-cache_advance-1.0.7 test/cache_set_test.rb
aub-cache_advance-1.0.8 test/cache_set_test.rb
aub-cache_advance-1.0.9 test/cache_set_test.rb
aub-cache_advance-1.1.0 test/cache_set_test.rb
aub-cache_advance-1.1.1 test/cache_set_test.rb