summaryrefslogtreecommitdiff
path: root/test/ruby/test_const.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_const.rb')
-rw-r--r--test/ruby/test_const.rb65
1 files changed, 46 insertions, 19 deletions
diff --git a/test/ruby/test_const.rb b/test/ruby/test_const.rb
index c4a4d93249..f6b9ea83d3 100644
--- a/test/ruby/test_const.rb
+++ b/test/ruby/test_const.rb
@@ -1,22 +1,32 @@
# -*- coding: us-ascii -*-
+# frozen_string_literal: false
require 'test/unit'
-require_relative 'envutil'
class TestConst < Test::Unit::TestCase
- TEST1 = 1
- TEST2 = 2
- module Const
- TEST3 = 3
- TEST4 = 4
- end
+ Constants_Setup = -> do
+ remove_const :TEST1 if defined? ::TestConst::TEST1
+ remove_const :TEST2 if defined? ::TestConst::TEST2
+ remove_const :Const if defined? ::TestConst::Const
+ remove_const :Const2 if defined? ::TestConst::Const2
+
+ TEST1 = 1
+ TEST2 = 2
+
+ module Const
+ TEST3 = 3
+ TEST4 = 4
+ end
- module Const2
- TEST3 = 6
- TEST4 = 8
+ module Const2
+ TEST3 = 6
+ TEST4 = 8
+ end
end
def test_const
+ Constants_Setup.call
+
assert defined?(TEST1)
assert_equal 1, TEST1
assert defined?(TEST2)
@@ -37,7 +47,7 @@ class TestConst < Test::Unit::TestCase
self.class.class_eval {
include Const2
}
- STDERR.print "intentionally redefines TEST3, TEST4\n" if $VERBOSE
+ # STDERR.print "intentionally redefines TEST3, TEST4\n" if $VERBOSE
assert defined?(TEST1)
assert_equal 1, TEST1
assert defined?(TEST2)
@@ -48,19 +58,36 @@ class TestConst < Test::Unit::TestCase
assert_equal 8, TEST4
end
+ def test_const_access_from_nil
+ assert_raise(TypeError) { eval("nil::Object") }
+ assert_nil eval("defined?(nil::Object)")
+
+ assert_raise(TypeError) { eval("c = nil; c::Object") }
+ assert_nil eval("c = nil; defined?(c::Object)")
+
+ assert_raise(TypeError) { eval("sc = Class.new; sc::C = nil; sc::C::Object") }
+ assert_nil eval("sc = Class.new; sc::C = nil; defined?(sc::C::Object)")
+ end
+
def test_redefinition
c = Class.new
- c.const_set(:X, 1)
- assert_output(nil, <<-WARNING) {c.const_set(:X, 2)}
-#{__FILE__}:#{__LINE__-1}: warning: already initialized constant #{c}::X
-#{__FILE__}:#{__LINE__-3}: warning: previous definition of X was here
+ name = "X\u{5b9a 6570}"
+ c.const_set(name, 1)
+ prev_line = __LINE__ - 1
+ assert_warning(<<-WARNING) {c.const_set(name, 2)}
+#{__FILE__}:#{__LINE__-1}: warning: already initialized constant #{c}::#{name}
+#{__FILE__}:#{prev_line}: warning: previous definition of #{name} was here
WARNING
+ end
+
+ def test_redefinition_memory_leak
code = <<-PRE
-olderr = $stderr.dup
-$stderr.reopen(File::NULL, "wb")
350000.times { FOO = :BAR }
-$stderr.reopen(olderr)
PRE
- assert_no_memory_leak([], '', code, 'redefined constant')
+ assert_no_memory_leak(%w[-W0 -], '', code, 'redefined constant', timeout: 30)
+ end
+
+ def test_toplevel_lookup
+ assert_raise(NameError, '[Feature #11547]') {TestConst::Object}
end
end