1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
require 'socket'
require 'timeout'
require 'fcntl'
require 'rbconfig'
describe "nonblocking IO blocking behavior: JRUBY-5122" do
Socket.do_not_reverse_lookup = true
# FYI: In JRuby 'should not block' means 'should not do busy loop'
it "should not block for gets" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.gets
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
s.write("foo\r\n")
end
value.should == "foo\r\n"
end
it "should not block for eof" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.eof?
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
s.write("foo\r\n")
end
value.should == false
end
it "should not block for getc" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.getc
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
s.write("f")
end
value.should == ?f
end
it "should not block for readlines" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.readlines
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
s.write("foo\r\nbar\r\n")
s.close
end
value.should == ["foo\r\n", "bar\r\n"]
end
it "should not block for read" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.read
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
s.write("foo\r\nbar\r\nbaz")
s.close
end
value.should == "foo\r\nbar\r\nbaz"
end
it "should not block for read(n) where n is shorter than the buffer" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.read(2)
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("foo\r\n")
end
value.should == "fo"
end
it "should not block for read(n) where n is longer than the buffer" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.read(4)
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("f")
t.alive?.should == true
s.write("oo\r\n")
end
value.should == "foo\r"
end
it "should read 4 bytes for read(4)" do
100.times do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.read(4)
}
s = connect(server)
# 2 (or more?) times write is needed to reproduce
# And writing "12" then "345" blocks forever.
s.write("1")
s.write("2345")
t.join
value.should == "1234"
end
end
it "should not block for readpartial" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.readpartial(2)
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("foo\r\n")
end
value.should == "fo"
end
it "should not block for sysread" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.sysread(2)
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("foo\r\n")
end
value.should == "fo"
end
if RUBY_VERSION =~ /1\.8/
it "should not block for sysread in ST condition" do
server = TCPServer.new(0)
client = TCPSocket.new('localhost', server.addr[1])
sock = accept(server)
begin
sock.read_nonblock(5)
rescue SystemCallError => e
[Errno::EAGAIN, Errno::EWOULDBLOCK].include?(e.class).should == true
end
end
end
it "should not block for each_byte" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
sock.each_byte do |b|
value = b
end
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("foobar")
s.close
end
value.should == 114
end
it "should not block for each_line" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
sock.each_line do |line|
value = line
end
}
s = connect(server)
wait_for_sleep_and_terminate(t) do
t.alive?.should == true
s.write("foo\r\nbar\r\nbaz")
s.close
end
value.should == "baz"
end
# WRITE BLOCKAGE:
#
# We try to pick a suitably large value such that potentially-blocking
# writes are more likely to reach buffer limits and actually block.
#
# On an Ubuntu 10.10(64) box:
# Packaged OpenJDK6 block with > 152606 (?)
# Oracle's build block with > 131072 (2**17)
# On a Windows 7(64) box:
# Oracle's build does not block (use memory till OOMException)
SOCKET_CHANNEL_MIGHT_BLOCK = "a" * (219463 * 4)
# This spec does not appear to test anything meaningful and occasionally
# failed due to several inherent races. I improved the race situation
# somewhat, but it's unclear whether this spec can ever fail since it
# appears to accept both blocking and nonblocking write.
#
# I believe the spec originally expected small writes not to block, which
# is reasonable, but at some point it mutated into a test that write
# *does* block under certain circumstances, making the original assertions
# meaningless.
#
# See jruby/jruby#2332
=begin
it "should not block for write" do
100.times do # for acceleration; it failed w/o wait_for_accepted call
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
begin
value = 1
# this could block; [ruby-dev:26405] But it doesn't block on Windows.
sock.write(SOCKET_CHANNEL_MIGHT_BLOCK)
value = 2
rescue RuntimeError
value = 3
end
}
s = connect(server)
# Whether write blocks or not, read will block until data is available
IO.select([s], nil, nil, 2)
# If write did not block, give thread some time to advance
100.times { Thread.pass }
# Now check where we are
wait_for_sleep_and_terminate(t) do
if value == 1
# Write blocked [ruby-dev:26405], see WRITE BLOCKAGE above
type = :blocked
t.raise # help thread termination
t.join
if RbConfig::CONFIG['host_os'] !~ /mingw|mswin/
value.should == 3
t.status.should == false
end
else
# Write did not block
value.should == 2
t.status.should == false
end
end
end
end
=end
it "should not block for write_nonblock" do
server = TCPServer.new(0)
value = nil
t = Thread.new {
sock = accept(server)
value = sock.write_nonblock(SOCKET_CHANNEL_MIGHT_BLOCK)
}
s = connect(server)
wait_for_terminate(t)
value.should > 0
end
def accept(server)
sock = server.accept
flag = File::NONBLOCK
flag |= sock.fcntl(Fcntl::F_GETFL)
sock.fcntl(Fcntl::F_SETFL, flag)
Thread.current[:accepted] = true
sock
end
def connect(server)
TCPSocket.new('localhost', server.addr[1])
end
def wait_for_sleep_and_terminate(server_thread)
wait_for_accepted(server_thread)
wait_for_sleep(server_thread)
yield if block_given?
wait_for_terminate(server_thread)
end
def wait_for_accepted(server_thread)
timeout(2) do
Thread.pass while !server_thread[:accepted]
end
end
def wait_for_sleep(t)
timeout(2) do
Thread.pass while t.status == 'run'
end
end
def wait_for_terminate(t)
timeout(2) do
Thread.pass while t.alive?
end
end
end
|