Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spec for Socket#read_nonblock with a provided buffer #1145

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 31 additions & 1 deletion library/socket/basicsocket/read_nonblock_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,37 @@

it "receives data after it's ready" do
IO.select([@r], nil, nil, 2)
@r.recv_nonblock(5).should == "aaa"
eregon marked this conversation as resolved.
Show resolved Hide resolved
@r.read_nonblock(5).should == "aaa"
end

platform_is_not :windows do
it 'returned data is binary encoded regardless of the external encoding' do
IO.select([@r], nil, nil, 2)
@r.read_nonblock(1).encoding.should == Encoding::BINARY

@w.send("bbb", 0, @r.getsockname)
@r.set_encoding(Encoding::ISO_8859_1)
IO.select([@r], nil, nil, 2)
buffer = @r.read_nonblock(3)
buffer.should == "bbb"
buffer.encoding.should == Encoding::BINARY
end
end

it 'replaces the content of the provided buffer without changing its encoding' do
buffer = "initial data".dup.force_encoding(Encoding::UTF_8)

IO.select([@r], nil, nil, 2)
@r.read_nonblock(3, buffer)
buffer.should == "aaa"
buffer.encoding.should == Encoding::UTF_8

@w.send("bbb", 0, @r.getsockname)
@r.set_encoding(Encoding::ISO_8859_1)
IO.select([@r], nil, nil, 2)
@r.read_nonblock(3, buffer)
buffer.should == "bbb"
buffer.encoding.should == Encoding::UTF_8
end

platform_is :linux do
Expand Down
47 changes: 47 additions & 0 deletions library/socket/basicsocket/read_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
require_relative '../spec_helper'
require_relative '../fixtures/classes'

describe "BasicSocket#read" do
SocketSpecs.each_ip_protocol do |family, ip_address|
before :each do
@r = Socket.new(family, :DGRAM)
@w = Socket.new(family, :DGRAM)

@r.bind(Socket.pack_sockaddr_in(0, ip_address))
@w.send("aaa", 0, @r.getsockname)
end

after :each do
@r.close unless @r.closed?
@w.close unless @w.closed?
end

it "receives data after it's ready" do
@r.read(3).should == "aaa"
end

it 'returned data is binary encoded regardless of the external encoding' do
@r.read(3).encoding.should == Encoding::BINARY

@w.send("bbb", 0, @r.getsockname)
@r.set_encoding(Encoding::UTF_8)
buffer = @r.read(3)
buffer.should == "bbb"
buffer.encoding.should == Encoding::BINARY
end

it 'replaces the content of the provided buffer without changing its encoding' do
buffer = "initial data".dup.force_encoding(Encoding::UTF_8)

@r.read(3, buffer)
buffer.should == "aaa"
buffer.encoding.should == Encoding::UTF_8

@w.send("bbb", 0, @r.getsockname)
@r.set_encoding(Encoding::ISO_8859_1)
@r.read(3, buffer)
buffer.should == "bbb"
buffer.encoding.should == Encoding::UTF_8
end
end
end