From 1cf9a23936269322c3533b7d822aeca6a4bb4e8c Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Tue, 7 Jun 2022 17:13:41 +0900 Subject: [PATCH] Use Exception#detailed_message instead of overriding #message See https://bugs.ruby-lang.org/issues/18564. Ref: https://github.com/ruby/did_you_mean/pull/177 --- lib/error_highlight/core_ext.rb | 47 +++++++++++++++++++++++---------- test/test_error_highlight.rb | 13 ++++++--- 2 files changed, 43 insertions(+), 17 deletions(-) diff --git a/lib/error_highlight/core_ext.rb b/lib/error_highlight/core_ext.rb index 78cda8a..53e409d 100644 --- a/lib/error_highlight/core_ext.rb +++ b/lib/error_highlight/core_ext.rb @@ -2,20 +2,13 @@ module ErrorHighlight module CoreExt - # This is a marker to let `DidYouMean::Correctable#original_message` skip - # the following method definition of `to_s`. - # See https://github.com/ruby/did_you_mean/pull/152 - SKIP_TO_S_FOR_SUPER_LOOKUP = true - private_constant :SKIP_TO_S_FOR_SUPER_LOOKUP - - def to_s - msg = super.dup - + private def generate_snippet locs = backtrace_locations - return msg unless locs + return "" unless locs loc = locs.first - return msg unless loc + return "" unless loc + begin node = RubyVM::AbstractSyntaxTree.of(loc, keep_script_lines: true) opts = {} @@ -36,11 +29,37 @@ def to_s end if spot - points = ErrorHighlight.formatter.message_for(spot) - msg << points if !msg.include?(points) + return ErrorHighlight.formatter.message_for(spot) + end + + "" + end + + if Exception.method_defined?(:detailed_message) + def detailed_message(highlight: false, error_highlight: true, **) + return super unless error_highlight + snippet = generate_snippet + if highlight + snippet = snippet.gsub(/.+/) { "\e[1m" + $& + "\e[m" } + end + super + snippet end + else + # This is a marker to let `DidYouMean::Correctable#original_message` skip + # the following method definition of `to_s`. + # See https://github.com/ruby/did_you_mean/pull/152 + SKIP_TO_S_FOR_SUPER_LOOKUP = true + private_constant :SKIP_TO_S_FOR_SUPER_LOOKUP - msg + def to_s + msg = super + snippet = generate_snippet + if snippet != "" && !msg.include?(snippet) + msg + snippet + else + msg + end + end end end diff --git a/test/test_error_highlight.rb b/test/test_error_highlight.rb index a3cc7aa..5b7c05e 100644 --- a/test/test_error_highlight.rb +++ b/test/test_error_highlight.rb @@ -23,9 +23,16 @@ def teardown end end - def assert_error_message(klass, expected_msg, &blk) - err = assert_raise(klass, &blk) - assert_equal(expected_msg.chomp, err.message) + if Exception.method_defined?(:detailed_message) + def assert_error_message(klass, expected_msg, &blk) + err = assert_raise(klass, &blk) + assert_equal(expected_msg.chomp, err.detailed_message(highlight: false).sub(/ \((?:NoMethod|Name)Error\)/, "")) + end + else + def assert_error_message(klass, expected_msg, &blk) + err = assert_raise(klass, &blk) + assert_equal(expected_msg.chomp, err.message) + end end def test_CALL_noarg_1