aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/descendants_tracker_test.rb
blob: 57c97b45d293ab2d5a3e10bda94d2de87e4e947c (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
require 'abstract_unit'
require 'test/unit'
require 'active_support'

class DescendantsTrackerTest < Test::Unit::TestCase
  class Parent
    extend ActiveSupport::DescendantsTracker
  end

  class Child1 < Parent
  end

  class Child2 < Parent
  end

  class Grandchild1 < Child1
  end

  class Grandchild2 < Child1
  end

  def test_descendants
    assert_equal [Child1, Grandchild1, Grandchild2, Child2], Parent.descendants
    assert_equal [Grandchild1, Grandchild2], Child1.descendants
    assert_equal [], Child2.descendants
  end

  def test_direct_descendants
    assert_equal [Child1, Child2], Parent.direct_descendants
    assert_equal [Grandchild1, Grandchild2], Child1.direct_descendants
    assert_equal [], Child2.direct_descendants
  end

  def test_clear_with_autoloaded_parent_children_and_granchildren
    mark_as_autoloaded Parent, Child1, Child2, Grandchild1, Grandchild2 do
      ActiveSupport::DescendantsTracker.clear
      assert_equal Hash.new, ActiveSupport::DescendantsTracker.descendants
    end
  end

  def test_clear_with_autoloaded_children_and_granchildren
    mark_as_autoloaded Child1, Grandchild1, Grandchild2 do
      ActiveSupport::DescendantsTracker.clear
      assert_equal [Child2], Parent.descendants
      assert_equal [], Child2.descendants
    end
  end

  def test_clear_with_autoloaded_granchildren
    mark_as_autoloaded Grandchild1, Grandchild2 do
      ActiveSupport::DescendantsTracker.clear
      assert_equal [Child1, Child2], Parent.descendants
      assert_equal [], Child1.descendants
      assert_equal [], Child2.descendants
    end
  end

  protected

  def mark_as_autoloaded(*klasses)
    old_autoloaded = ActiveSupport::Dependencies.autoloaded_constants.dup
    ActiveSupport::Dependencies.autoloaded_constants = klasses.map(&:name)

    old_descendants = ActiveSupport::DescendantsTracker.descendants.dup
    old_descendants.each { |k, v| old_descendants[k] = v.dup }

    yield
  ensure
    ActiveSupport::Dependencies.autoloaded_constants = old_autoloaded
    ActiveSupport::DescendantsTracker.descendants = old_descendants
  end
end