2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
require "stringio"
|
2018-03-04 15:09:32 +00:00
|
|
|
require_relative 'shared/read'
|
|
|
|
require_relative 'shared/sysread'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length, buffer" do
|
|
|
|
it_behaves_like :stringio_read, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length" do
|
|
|
|
it_behaves_like :stringio_read_length, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed nil" do
|
|
|
|
it_behaves_like :stringio_read_nil, :read_nonblock
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "StringIO#read_nonblock when passed length" do
|
|
|
|
it_behaves_like :stringio_sysread_length, :read_nonblock
|
|
|
|
end
|
2018-04-28 19:50:06 +00:00
|
|
|
|
|
|
|
describe "StringIO#read_nonblock" do
|
|
|
|
|
|
|
|
it "accepts an exception option" do
|
|
|
|
stringio = StringIO.new('foo')
|
|
|
|
stringio.read_nonblock(3, exception: false).should == 'foo'
|
|
|
|
end
|
|
|
|
|
2019-06-27 21:02:36 +02:00
|
|
|
context "when exception option is set to false" do
|
|
|
|
context "when the end is reached" do
|
|
|
|
it "returns nil" do
|
|
|
|
stringio = StringIO.new('')
|
|
|
|
stringio << "hello"
|
|
|
|
stringio.rewind
|
|
|
|
|
|
|
|
stringio.read_nonblock(5).should == "hello"
|
|
|
|
stringio.read_nonblock(5, exception: false).should be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-28 19:50:06 +00:00
|
|
|
end
|