2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2012-02-08 08:35:27 -05:00
|
|
|
require 'test/unit'
|
2015-07-14 23:56:17 -04:00
|
|
|
require "-test-/string"
|
2016-07-06 14:17:36 -04:00
|
|
|
require "rbconfig/sizeof"
|
2012-02-08 08:35:27 -05:00
|
|
|
|
|
|
|
class Test_StringModifyExpand < Test::Unit::TestCase
|
|
|
|
def test_modify_expand_memory_leak
|
2015-07-14 23:56:17 -04:00
|
|
|
assert_no_memory_leak(["-r-test-/string"],
|
2014-09-17 18:05:22 -04:00
|
|
|
<<-PRE, <<-CMD, "rb_str_modify_expand()", limit: 2.5)
|
2012-02-08 08:35:27 -05:00
|
|
|
s=Bug::String.new
|
2012-02-09 10:47:11 -05:00
|
|
|
PRE
|
|
|
|
size = $initial_size
|
2012-02-08 08:35:27 -05:00
|
|
|
10.times{s.modify_expand!(size)}
|
|
|
|
s.replace("")
|
|
|
|
CMD
|
|
|
|
end
|
2016-05-18 01:52:40 -04:00
|
|
|
|
|
|
|
def test_integer_overflow
|
2016-12-22 18:20:00 -05:00
|
|
|
return if RbConfig::SIZEOF['size_t'] > RbConfig::SIZEOF['long']
|
2016-05-18 01:52:40 -04:00
|
|
|
bug12390 = '[ruby-core:75592] [Bug #12390]'
|
|
|
|
s = Bug::String.new
|
|
|
|
assert_raise(ArgumentError, bug12390) {
|
2019-10-07 22:21:20 -04:00
|
|
|
s.modify_expand!(RbConfig::LIMITS["LONG_MAX"])
|
2016-05-18 01:52:40 -04:00
|
|
|
}
|
|
|
|
end
|
2012-02-08 08:35:27 -05:00
|
|
|
end
|