aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/caching_tools_test.rb
blob: c9890e4d13672c8610c0481ed27ec45d62a7b277 (plain) (blame)
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
require File.dirname(__FILE__) + '/abstract_unit'

class HashCachingTests < Test::Unit::TestCase
  def cached(&proc)
    return @cached if defined?(@cached)

    @cached_class = Class.new(&proc)
    @cached_class.class_eval do
      extend ActiveSupport::CachingTools::HashCaching
      hash_cache :slow_method
    end
    @cached = @cached_class.new
  end

  def test_cache_access_should_call_method
    cached do
      def slow_method(a) raise "I should be here: #{a}"; end
    end
    assert_raises(RuntimeError) { cached.slow_method_cache[1] }
  end

  def test_cache_access_should_actually_cache
    cached do
      def slow_method(a)
        (@x ||= [])
        if @x.include?(a) then raise "Called twice for #{a}!"
        else
          @x << a
          a + 1
        end
      end
    end
    assert_equal 11, cached.slow_method_cache[10]
    assert_equal 12, cached.slow_method_cache[11]
    assert_equal 11, cached.slow_method_cache[10]
    assert_equal 12, cached.slow_method_cache[11]
  end

  def test_cache_should_be_clearable
    cached do
      def slow_method(a)
        @x ||= 0
        @x += 1
      end
    end
    assert_equal 1, cached.slow_method_cache[:a]
    assert_equal 2, cached.slow_method_cache[:b]
    assert_equal 3, cached.slow_method_cache[:c]

    assert_equal 1, cached.slow_method_cache[:a]
    assert_equal 2, cached.slow_method_cache[:b]
    assert_equal 3, cached.slow_method_cache[:c]

    cached.slow_method_cache.clear

    assert_equal 4, cached.slow_method_cache[:a]
    assert_equal 5, cached.slow_method_cache[:b]
    assert_equal 6, cached.slow_method_cache[:c]
  end

  def test_deep_caches_should_work_too
    cached do
      def slow_method(a, b, c)
        a + b + c
      end
    end
    assert_equal 3, cached.slow_method_cache[1][1][1]
    assert_equal 7, cached.slow_method_cache[1][2][4]
    assert_equal 7, cached.slow_method_cache[1][2][4]
    assert_equal 7, cached.slow_method_cache[4][2][1]

    assert_equal({
      1 => {1 => {1 => 3}, 2 => {4 => 7}},
      4 => {2 => {1 => 7}}},
      cached.slow_method_cache
    )
  end
end