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