mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@4eec3dc
This commit is contained in:
parent
ab8345271e
commit
1243255c3a
174 changed files with 1780 additions and 426 deletions
45
spec/ruby/library/socket/basicsocket/write_nonblock_spec.rb
Normal file
45
spec/ruby/library/socket/basicsocket/write_nonblock_spec.rb
Normal file
|
@ -0,0 +1,45 @@
|
|||
require_relative '../spec_helper'
|
||||
require_relative '../fixtures/classes'
|
||||
|
||||
ruby_version_is "2.5" do
|
||||
describe "BasicSocket#write_nonblock" 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.connect(@r.getsockname)
|
||||
end
|
||||
|
||||
after :each do
|
||||
@r.close unless @r.closed?
|
||||
@w.close unless @w.closed?
|
||||
end
|
||||
|
||||
it "sends data" do
|
||||
@w.write_nonblock("aaa").should == 3
|
||||
IO.select([@r], nil, nil, 2)
|
||||
@r.recv_nonblock(5).should == "aaa"
|
||||
end
|
||||
|
||||
platform_is :linux do
|
||||
it 'does not set the IO in nonblock mode' do
|
||||
require 'io/nonblock'
|
||||
@w.nonblock?.should == false
|
||||
@w.write_nonblock("aaa").should == 3
|
||||
@w.nonblock?.should == false
|
||||
end
|
||||
end
|
||||
|
||||
platform_is_not :linux, :windows do
|
||||
it 'sets the IO in nonblock mode' do
|
||||
require 'io/nonblock'
|
||||
@w.nonblock?.should == false
|
||||
@w.write_nonblock("aaa").should == 3
|
||||
@w.nonblock?.should == true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue