ruby-changes:68331
From: Nobuyoshi <ko1@a...>
Date: Sat, 9 Oct 2021 18:30:56 +0900 (JST)
Subject: [ruby-changes:68331] c423cc932e (master): Refactor `Test::Unit::CoreAssertions#assert_nothing_raised`
https://git.ruby-lang.org/ruby.git/commit/?id=c423cc932e From c423cc932ee16f64a845e710d92baf79729eae63 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sat, 9 Oct 2021 17:44:01 +0900 Subject: Refactor `Test::Unit::CoreAssertions#assert_nothing_raised` * Separate exception classes to be rescued or reraised * Use the filtered backtrace in the failure message * Raise a new `AssertionFailedError` with the original backtrace --- tool/lib/core_assertions.rb | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/tool/lib/core_assertions.rb b/tool/lib/core_assertions.rb index 1299c6af74..6769ee7a91 100644 --- a/tool/lib/core_assertions.rb +++ b/tool/lib/core_assertions.rb @@ -172,27 +172,15 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/core_assertions.rb#L172 msg = args.pop end begin - line = __LINE__; yield - rescue Test::Unit::PendedError + yield + rescue Test::Unit::PendedError, *(Test::Unit::AssertionFailedError if args.empty?) raise - rescue Exception => e - bt = e.backtrace - as = e.instance_of?(Test::Unit::AssertionFailedError) - if as - ans = /\A#{Regexp.quote(__FILE__)}:#{line}:in /o - bt.reject! {|ln| ans =~ ln} - end - if ((args.empty? && !as) || - args.any? {|a| a.instance_of?(Module) ? e.is_a?(a) : e.class == a }) - msg = message(msg) { - "Exception raised:\n<#{mu_pp(e)}>\n" + - "Backtrace:\n" + - e.backtrace.map{|frame| " #{frame}"}.join("\n") - } - raise Test::Unit::AssertionFailedError, msg.call, bt - else - raise - end + rescue *(args.empty? ? Exception : args) => e + msg = message(msg) { + "Exception raised:\n<#{mu_pp(e)}>\n""Backtrace:\n" << + Test.filter_backtrace(e.backtrace).map{|frame| " #{frame}"}.join("\n") + } + raise Test::Unit::AssertionFailedError, msg.call, e.backtrace end end -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/