From 92d6c9a7b1c3f8462e91e9b7de04b0b2012d54b3 Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Wed, 24 May 2023 01:16:32 +0900 Subject: [ruby/irb] Allow `show_source` for private methods (https://github.com/ruby/irb/pull/589) * Allow `show_source` for private methods Fix https://github.com/ruby/irb/pull/577 * Pend tests on TruffleRuby It seems `eval(..., __LINE__ + 1)` does not work. Other similar tests are also pended on TruffleRuby, so I think it is acceptable. * Use `private_method_defined?` instead of `defined?` --- test/irb/test_cmd.rb | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'test') diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb index c5d9a0e544..448f42587a 100644 --- a/test/irb/test_cmd.rb +++ b/test/irb/test_cmd.rb @@ -488,6 +488,47 @@ module TestIRB assert_empty err assert_include(out, code) end + + def test_show_source_private_instance + pend if RUBY_ENGINE == 'truffleruby' + eval(code = <<-EOS, binding, __FILE__, __LINE__ + 1) + class PrivateInstanceTest + private def show_source_test_method + unless true + end + end unless private_method_defined?(:show_source_test_method) + end + EOS + + out, err = execute_lines( + "show_source '#{self.class.name}::PrivateInstanceTest#show_source_test_method'\n", + ) + + assert_empty err + assert_include(out, code.lines[1..-2].join) + end + + + def test_show_source_private + pend if RUBY_ENGINE == 'truffleruby' + eval(code = <<-EOS, binding, __FILE__, __LINE__ + 1) + class PrivateTest + private def show_source_test_method + unless true + end + end unless private_method_defined?(:show_source_test_method) + end + + Instance = PrivateTest.new unless defined?(Instance) + EOS + + out, err = execute_lines( + "show_source '#{self.class.name}::Instance.show_source_test_method'\n", + ) + + assert_empty err + assert_include(out, code.lines[1..-4].join) + end end class WorkspaceCommandTestCase < CommandTestCase -- cgit v1.2.3