2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2011-03-16 09:07:03 +03:00
|
|
|
require_relative 'utils'
|
|
|
|
require 'stringio'
|
|
|
|
|
2016-05-18 07:07:47 +03:00
|
|
|
class OpenSSL::TestBuffering < OpenSSL::TestCase
|
2011-03-16 09:07:03 +03:00
|
|
|
|
|
|
|
class IO
|
|
|
|
include OpenSSL::Buffering
|
|
|
|
|
|
|
|
attr_accessor :sync
|
|
|
|
|
|
|
|
def initialize
|
2011-06-11 18:07:42 +04:00
|
|
|
@io = ""
|
|
|
|
def @io.sync
|
|
|
|
true
|
|
|
|
end
|
2011-03-16 09:07:03 +03:00
|
|
|
|
|
|
|
super
|
|
|
|
|
|
|
|
@sync = false
|
|
|
|
end
|
|
|
|
|
|
|
|
def string
|
2011-06-11 18:07:42 +04:00
|
|
|
@io
|
2011-03-16 09:07:03 +03:00
|
|
|
end
|
|
|
|
|
2011-06-11 18:07:42 +04:00
|
|
|
def sysread(size)
|
|
|
|
str = @io.slice!(0, size)
|
|
|
|
raise EOFError if str.empty?
|
|
|
|
str
|
2011-03-16 09:07:03 +03:00
|
|
|
end
|
|
|
|
|
2011-06-11 18:07:42 +04:00
|
|
|
def syswrite(str)
|
|
|
|
@io << str
|
|
|
|
str.size
|
2011-03-16 09:07:03 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
2016-12-10 11:12:02 +03:00
|
|
|
super
|
2011-03-16 09:07:03 +03:00
|
|
|
@io = IO.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_flush
|
|
|
|
@io.write 'a'
|
|
|
|
|
2016-02-19 10:45:58 +03:00
|
|
|
assert_not_predicate @io, :sync
|
2011-03-16 09:07:03 +03:00
|
|
|
assert_empty @io.string
|
|
|
|
|
|
|
|
assert_equal @io, @io.flush
|
|
|
|
|
2016-02-19 10:45:58 +03:00
|
|
|
assert_not_predicate @io, :sync
|
2011-03-16 09:07:03 +03:00
|
|
|
assert_equal 'a', @io.string
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_flush_error
|
|
|
|
@io.write 'a'
|
|
|
|
|
2016-02-19 10:45:58 +03:00
|
|
|
assert_not_predicate @io, :sync
|
2011-03-16 09:07:03 +03:00
|
|
|
assert_empty @io.string
|
|
|
|
|
|
|
|
def @io.syswrite *a
|
|
|
|
raise SystemCallError, 'fail'
|
|
|
|
end
|
|
|
|
|
2015-06-02 05:18:44 +03:00
|
|
|
assert_raise SystemCallError do
|
2011-03-16 09:07:03 +03:00
|
|
|
@io.flush
|
|
|
|
end
|
|
|
|
|
2016-02-19 10:45:58 +03:00
|
|
|
assert_not_predicate @io, :sync, 'sync must not change'
|
2011-03-16 09:07:03 +03:00
|
|
|
end
|
|
|
|
|
2011-06-11 18:07:42 +04:00
|
|
|
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
|
|
|
|
|
2014-12-13 06:05:43 +03:00
|
|
|
end if defined?(OpenSSL::TestUtils)
|