Spec-Zone.ru › Ruby on Rails 7.2

модуль ActiveSupport::Testing::Deprecation

Общедоступные методы экземпляра

assert_deprecated(deprecator, &block) Показать исходный код
assert_deprecated(match, deprecator, &block)
# File activesupport/lib/active_support/testing/deprecation.rb, line 30
def assert_deprecated(match = nil, deprecator = nil, &block)
  match, deprecator = nil, match if match.is_a?(ActiveSupport::Deprecation)

  unless deprecator
    raise ArgumentError, "No deprecator given"
  end

  result, warnings = collect_deprecations(deprecator, &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| match.match?(w) }, "No deprecation warning matched #{match}: #{warnings.join(', ')}"
  end
  result
end

Утверждает, что предупреждение о устаревании, соответствующее шаблону, было выведено данным deprecator во время выполнения переданного блока.

assert_deprecated(/foo/, CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end

Объект match может быть Regexp, или String, встречающимся в сообщении.

assert_deprecated('foo', CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end

Если match опущено (или явно nil), любое предупреждение об устаревании будет соответствовать.

assert_deprecated(CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end
assert_not_deprecated(deprecator, &block) Показать исходный код
# File activesupport/lib/active_support/testing/deprecation.rb, line 55
def assert_not_deprecated(deprecator, &block)
  result, deprecations = collect_deprecations(deprecator, &block)
  assert deprecations.empty?, "Expected no deprecation warning within the block but received #{deprecations.size}: \n  #{deprecations * "\n  "}"
  result
end

Утверждает, что предупреждения об устаревании не были выведены данным deprecator во время выполнения переданного блока.

assert_not_deprecated(CustomDeprecator) do
  CustomDeprecator.warn "message" # fails assertion
end

assert_not_deprecated(ActiveSupport::Deprecation.new) do
  CustomDeprecator.warn "message" # passes assertion, different deprecator
end
collect_deprecations(deprecator) { || ... } Показать исходный код
# File activesupport/lib/active_support/testing/deprecation.rb, line 69
def collect_deprecations(deprecator)
  old_behavior = deprecator.behavior
  deprecations = []
  deprecator.behavior = Proc.new do |message, callstack|
    deprecations << message
  end
  result = yield
  [result, deprecations]
ensure
  deprecator.behavior = old_behavior
end

Возвращает значение, возвращаемое блоком, и массив всех предупреждений об устаревании, выведенных данным deprecator во время выполнения переданного блока.

collect_deprecations(CustomDeprecator) do
  CustomDeprecator.warn "message"
  ActiveSupport::Deprecation.new.warn "other message"
  :result
end # => [:result, ["message"]]

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API