summaryrefslogtreecommitdiffstats
path: root/test/test_pair.rb
diff options
context:
space:
mode:
authornormal <normal@ruby-lang.org>2015-08-01 22:08:17 +0000
committernormal <normal@ruby-lang.org>2015-08-01 22:08:17 +0000
commitf5652e7c4bc1016567772833922aa7be16537f38 (patch)
treeb6bf6c111e96f686f8ebdbfbb6c820660041ac50 /test/test_pair.rb
parent21279aa4669da51ff86036ed8858cf0d27142ceb (diff)
downloadruby-openssl-history-f5652e7c4bc1016567772833922aa7be16537f38.tar.gz
openssl/buffering: fix gets on EOF with limit
* ext/openssl/lib/openssl/buffering.rb (gets): avoid comparing fixnum with nil * test/openssl/test_pair.rb: test gets with limit when EOF is hit Thanks to Bar Hofesh <bar.hofesh@safe-t.com> for the bug report and testing. [ruby-core:70149] [Bug #11400] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_pair.rb')
-rw-r--r--test/test_pair.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_pair.rb b/test/test_pair.rb
index 8e4aefc..977d11a 100644
--- a/test/test_pair.rb
+++ b/test/test_pair.rb
@@ -110,6 +110,14 @@ module OpenSSL::TestPairM
}
end
+ def test_gets_eof_limit
+ ssl_pair {|s1, s2|
+ s1.write("hello")
+ s1.close # trigger EOF
+ assert_match "hello", s2.gets("\n", 6), "[ruby-core:70149] [Bug #11140]"
+ }
+ end
+
def test_readpartial
ssl_pair {|s1, s2|
s2.write "a\nbcd"