2009-04-22 19:41:06 -04:00
|
|
|
require 'active_support/deprecation'
|
|
|
|
|
2008-11-23 16:11:07 -05:00
|
|
|
module ActiveSupport
|
|
|
|
module Testing
|
|
|
|
module Deprecation #:nodoc:
|
|
|
|
def assert_deprecated(match = nil, &block)
|
|
|
|
result, warnings = collect_deprecations(&block)
|
|
|
|
assert !warnings.empty?, "Expected a deprecation warning within the block but received none"
|
|
|
|
if match
|
|
|
|
match = Regexp.new(Regexp.escape(match)) unless match.is_a?(Regexp)
|
|
|
|
assert warnings.any? { |w| w =~ match }, "No deprecation warning matched #{match}: #{warnings.join(', ')}"
|
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_not_deprecated(&block)
|
|
|
|
result, deprecations = collect_deprecations(&block)
|
|
|
|
assert deprecations.empty?, "Expected no deprecation warning within the block but received #{deprecations.size}: \n #{deprecations * "\n "}"
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2013-12-10 09:22:31 -05:00
|
|
|
def collect_deprecations
|
|
|
|
old_behavior = ActiveSupport::Deprecation.behavior
|
|
|
|
deprecations = []
|
|
|
|
ActiveSupport::Deprecation.behavior = Proc.new do |message, callstack|
|
|
|
|
deprecations << message
|
2008-11-23 16:11:07 -05:00
|
|
|
end
|
2013-12-10 09:22:31 -05:00
|
|
|
result = yield
|
|
|
|
[result, deprecations]
|
|
|
|
ensure
|
|
|
|
ActiveSupport::Deprecation.behavior = old_behavior
|
|
|
|
end
|
2008-11-23 16:11:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|