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
|
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)
platform_is_not :windows do
describe "UNIXServer#accept" do
before :each do
@path = SocketSpecs.socket_path
rm_r @path
end
after :each do
rm_r @path
end
it "accepts what is written by the client" do
server = UNIXServer.open(SocketSpecs.socket_path)
client = UNIXSocket.open(SocketSpecs.socket_path)
client.send('hello', 0)
sock = server.accept
data, info = sock.recvfrom(5)
data.should == 'hello'
server.close
client.close
sock.close
end
it "can be interrupted by Thread#kill" do
server = UNIXServer.new(@path)
t = Thread.new {
server.accept
}
Thread.pass while t.status and t.status != "sleep"
# kill thread, ensure it dies in a reasonable amount of time
t.kill
a = 1
while a < 2000
break unless t.alive?
Thread.pass
sleep 0.2
a += 1
end
a.should < 2000
server.close
end
it "can be interrupted by Thread#raise" do
server = UNIXServer.new(@path)
t = Thread.new {
server.accept
}
Thread.pass while t.status and t.status != "sleep"
# raise in thread, ensure the raise happens
ex = Exception.new
t.raise ex
lambda { t.join }.should raise_error(Exception)
server.close
end
end
end
|