Skip to content

Commit

Permalink
Merge remote branch 'rolftimmermans/desc_tracker'
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 7, 2011
2 parents a761d77 + 512057d commit b011a7a
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 34 deletions.
16 changes: 9 additions & 7 deletions activesupport/lib/active_support/descendants_tracker.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require 'active_support/dependencies'

module ActiveSupport
# This module provides an internal implementation to track descendants
# which is faster than iterating through ObjectSpace.
Expand All @@ -18,12 +16,16 @@ def self.descendants(klass)
end

def self.clear
@@direct_descendants.each do |klass, descendants|
if ActiveSupport::Dependencies.autoloaded?(klass)
@@direct_descendants.delete(klass)
else
descendants.reject! { |v| ActiveSupport::Dependencies.autoloaded?(v) }
if defined? ActiveSupport::Dependencies
@@direct_descendants.each do |klass, descendants|
if ActiveSupport::Dependencies.autoloaded?(klass)
@@direct_descendants.delete(klass)
else
descendants.reject! { |v| ActiveSupport::Dependencies.autoloaded?(v) }
end
end
else
@@direct_descendants.clear
end
end

Expand Down
1 change: 1 addition & 0 deletions activesupport/test/core_ext/duration_test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'abstract_unit'
require 'active_support/inflector'
require 'active_support/time'
require 'active_support/json'

Expand Down
1 change: 1 addition & 0 deletions activesupport/test/core_ext/string_ext_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require 'abstract_unit'
require 'inflector_test_cases'

require 'active_support/inflector'
require 'active_support/core_ext/string'
require 'active_support/time'
require 'active_support/core_ext/kernel/reporting'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
require 'abstract_unit'
require 'test/unit'
require 'active_support'
require 'active_support/core_ext/hash/slice'

class DescendantsTrackerTest < Test::Unit::TestCase
module DescendantsTrackerTestCases
class Parent
extend ActiveSupport::DescendantsTracker
end
Expand Down Expand Up @@ -34,7 +29,7 @@ def test_direct_descendants
assert_equal [], Child2.direct_descendants
end

def test_clear_with_autoloaded_parent_children_and_granchildren
def test_clear
mark_as_autoloaded(*ALL) do
ActiveSupport::DescendantsTracker.clear
ALL.each do |k|
Expand All @@ -43,35 +38,22 @@ def test_clear_with_autoloaded_parent_children_and_granchildren
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)
# If ActiveSupport::Dependencies is not loaded, forget about autoloading.
# This allows using AS::DescendantsTracker without AS::Dependencies.
if defined? ActiveSupport::Dependencies
old_autoloaded = ActiveSupport::Dependencies.autoloaded_constants.dup
ActiveSupport::Dependencies.autoloaded_constants = klasses.map(&:name)
end

old_descendants = ActiveSupport::DescendantsTracker.class_eval("@@direct_descendants").dup
old_descendants.each { |k, v| old_descendants[k] = v.dup }

yield
ensure
ActiveSupport::Dependencies.autoloaded_constants = old_autoloaded
ActiveSupport::Dependencies.autoloaded_constants = old_autoloaded if defined? ActiveSupport::Dependencies
ActiveSupport::DescendantsTracker.class_eval("@@direct_descendants").replace(old_descendants)
end
end
35 changes: 35 additions & 0 deletions activesupport/test/descendants_tracker_with_autoloading_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
require 'abstract_unit'
require 'test/unit'
require 'active_support/descendants_tracker'
require 'active_support/dependencies'
require 'descendants_tracker_test_cases'

class DescendantsTrackerWithAutoloadingTest < Test::Unit::TestCase
include DescendantsTrackerTestCases

def test_clear_with_autoloaded_parent_children_and_granchildren
mark_as_autoloaded(*ALL) do
ActiveSupport::DescendantsTracker.clear
ALL.each do |k|
assert ActiveSupport::DescendantsTracker.descendants(k).empty?
end
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
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
require 'abstract_unit'
require 'test/unit'
require 'active_support/descendants_tracker'
require 'descendants_tracker_test_cases'

class DescendantsTrackerWithoutAutoloadingTest < Test::Unit::TestCase
include DescendantsTrackerTestCases
end
1 change: 1 addition & 0 deletions activesupport/test/multibyte_chars_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# encoding: utf-8
require 'abstract_unit'
require 'multibyte_test_helpers'
require 'active_support/core_ext/string/multibyte'

class String
def __method_for_multibyte_testing_with_integer_result; 1; end
Expand Down

0 comments on commit b011a7a

Please sign in to comment.