mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 00:54:01 +02:00

The patch is provided by Kazuki Yamaguchi. From: Kazuki Yamaguchi <k@rhe.jp> Date: Mon, 25 Sep 2017 01:32:02 +0900 Subject: [PATCH] openssl: import v2.0.6 Import Ruby/OpenSSL 2.0.6. This contains only bug fixes and test improvements. The full commit log since v2.0.5 (imported at r59567, to trunk) can be found at: https://github.com/ruby/openssl/compare/v2.0.5...v2.0.6 All the changes included in this patch are already imported to trunk by r59734, r59751, r59857, and r60013. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@62842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
90 lines
1.4 KiB
Ruby
90 lines
1.4 KiB
Ruby
# frozen_string_literal: false
|
|
require_relative 'utils'
|
|
|
|
if defined?(OpenSSL::TestUtils)
|
|
|
|
class OpenSSL::TestBuffering < OpenSSL::TestCase
|
|
class IO
|
|
include OpenSSL::Buffering
|
|
|
|
attr_accessor :sync
|
|
|
|
def initialize
|
|
@io = ""
|
|
def @io.sync
|
|
true
|
|
end
|
|
|
|
super
|
|
|
|
@sync = false
|
|
end
|
|
|
|
def string
|
|
@io
|
|
end
|
|
|
|
def sysread(size)
|
|
str = @io.slice!(0, size)
|
|
raise EOFError if str.empty?
|
|
str
|
|
end
|
|
|
|
def syswrite(str)
|
|
@io << str
|
|
str.size
|
|
end
|
|
end
|
|
|
|
def setup
|
|
super
|
|
@io = IO.new
|
|
end
|
|
|
|
def test_flush
|
|
@io.write 'a'
|
|
|
|
assert_not_predicate @io, :sync
|
|
assert_empty @io.string
|
|
|
|
assert_equal @io, @io.flush
|
|
|
|
assert_not_predicate @io, :sync
|
|
assert_equal 'a', @io.string
|
|
end
|
|
|
|
def test_flush_error
|
|
@io.write 'a'
|
|
|
|
assert_not_predicate @io, :sync
|
|
assert_empty @io.string
|
|
|
|
def @io.syswrite *a
|
|
raise SystemCallError, 'fail'
|
|
end
|
|
|
|
assert_raise SystemCallError do
|
|
@io.flush
|
|
end
|
|
|
|
assert_not_predicate @io, :sync, 'sync must not change'
|
|
end
|
|
|
|
def test_getc
|
|
@io.syswrite('abc')
|
|
assert_equal(?a, @io.getc)
|
|
assert_equal(?b, @io.getc)
|
|
assert_equal(?c, @io.getc)
|
|
end
|
|
|
|
def test_each_byte
|
|
@io.syswrite('abc')
|
|
res = []
|
|
@io.each_byte do |c|
|
|
res << c
|
|
end
|
|
assert_equal([97, 98, 99], res)
|
|
end
|
|
end
|
|
|
|
end
|