aboutsummaryrefslogtreecommitdiffstats
path: root/test/openssl/test_ssl.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 10:03:09 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 10:03:09 +0000
commit6eb8acae90ce774c054f0ea9b393df5a7601ffd7 (patch)
treef4fca7398c743aa49b83e4144c07124449e15b16 /test/openssl/test_ssl.rb
parent08e9b7d66c7279dec72dceedfe1ba81cd8c64d46 (diff)
downloadruby-6eb8acae90ce774c054f0ea9b393df5a7601ffd7.tar.gz
* test/openssl/test_pair.rb: Modify TestSSL#test_read_and_write
to handle partial sysreads. [Bug #7398][ruby-core:49563] * test/openssl/test_ssl.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46164 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/test_ssl.rb')
-rw-r--r--test/openssl/test_ssl.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/openssl/test_ssl.rb b/test/openssl/test_ssl.rb
index 339451e7be..23dc572870 100644
--- a/test/openssl/test_ssl.rb
+++ b/test/openssl/test_ssl.rb
@@ -78,13 +78,17 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
ITERATIONS.times{|i|
str = "x" * 100 + "\n"
ssl.syswrite(str)
- assert_equal(str, ssl.sysread(str.size))
+ newstr = ''
+ newstr << ssl.sysread(str.size - newstr.size) until newstr.size == str.size
+ assert_equal(str, newstr)
str = "x" * i * 100 + "\n"
buf = ""
ssl.syswrite(str)
assert_equal(buf.object_id, ssl.sysread(str.size, buf).object_id)
- assert_equal(str, buf)
+ newstr = buf
+ newstr << ssl.sysread(str.size - newstr.size) until newstr.size == str.size
+ assert_equal(str, newstr)
}
# puts and gets