2018-08-03 16:19:40 +00:00
|
|
|
require_relative '../spec_helper'
|
|
|
|
require_relative '../fixtures/classes'
|
|
|
|
|
|
|
|
with_feature :unix_socket do
|
|
|
|
describe 'UNIXServer#sysaccept' do
|
|
|
|
before do
|
|
|
|
@path = SocketSpecs.socket_path
|
|
|
|
@server = UNIXServer.new(@path)
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
@server.close
|
|
|
|
|
|
|
|
rm_r(@path)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'without a client' do
|
|
|
|
it 'blocks the calling thread' do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { @server.sysaccept }.should block_caller
|
2018-08-03 16:19:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with a client' do
|
|
|
|
before do
|
|
|
|
@client = UNIXSocket.new(@path)
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Socket.for_fd(@fd).close if @fd
|
|
|
|
@client.close
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'without any data' do
|
2018-09-25 10:41:16 +00:00
|
|
|
it 'returns an Integer' do
|
2018-08-03 16:19:40 +00:00
|
|
|
@fd = @server.sysaccept
|
2018-09-25 10:41:16 +00:00
|
|
|
@fd.should be_kind_of(Integer)
|
2018-08-03 16:19:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with data available' do
|
|
|
|
before do
|
|
|
|
@client.write('hello')
|
|
|
|
end
|
|
|
|
|
2018-09-25 10:41:16 +00:00
|
|
|
it 'returns an Integer' do
|
2018-08-03 16:19:40 +00:00
|
|
|
@fd = @server.sysaccept
|
2018-09-25 10:41:16 +00:00
|
|
|
@fd.should be_kind_of(Integer)
|
2018-08-03 16:19:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|