mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
be3baa4380
* string.c (rb_str_set_len): The buffer overflow check is wrong. The space for termlen is allocated outside the capacity returned by rb_str_capacity(). This fixes r41920 ("string.c: multi-byte terminator", 2013-07-11). [ruby-core:77257] [Bug #12757] * test/-ext-/string/test_set_len.rb (test_capacity_equals_to_new_size): Test for this change. Applying only the test will trigger [BUG]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
35 lines
842 B
Ruby
35 lines
842 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
require "-test-/string"
|
|
|
|
class Test_StrSetLen < Test::Unit::TestCase
|
|
def setup
|
|
@s0 = [*"a".."z"].join("").freeze
|
|
@s1 = Bug::String.new(@s0)
|
|
end
|
|
|
|
def teardown
|
|
orig = [*"a".."z"].join("")
|
|
assert_equal(orig, @s0)
|
|
end
|
|
|
|
def test_non_shared
|
|
@s1.modify!
|
|
assert_equal("abc", @s1.set_len(3))
|
|
end
|
|
|
|
def test_shared
|
|
assert_raise(RuntimeError) {
|
|
assert_equal("abc", @s1.set_len(3))
|
|
}
|
|
end
|
|
|
|
def test_capacity_equals_to_new_size
|
|
bug12757 = "[ruby-core:77257] [Bug #12757]"
|
|
# fill to ensure capacity does not decrease with force_encoding
|
|
str = Bug::String.new("\x00" * 128, capacity: 128)
|
|
str.force_encoding("UTF-32BE")
|
|
assert_equal 128, Bug::String.capacity(str)
|
|
assert_equal 127, str.set_len(127).bytesize, bug12757
|
|
end
|
|
end
|