2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../../spec_helper'
|
|
|
|
require_relative '../fixtures/classes'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "UNIXSocket#send_io" do
|
|
|
|
|
|
|
|
platform_is_not :windows do
|
|
|
|
before :each do
|
|
|
|
@path = SocketSpecs.socket_path
|
|
|
|
@server = UNIXServer.open(@path)
|
|
|
|
@client = UNIXSocket.open(@path)
|
|
|
|
|
|
|
|
@send_io_path = File.expand_path('../../fixtures/send_io.txt', __FILE__)
|
|
|
|
@file = File.open(@send_io_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
@io.close if @io
|
|
|
|
@socket.close if @socket
|
|
|
|
|
|
|
|
@file.close
|
|
|
|
@client.close
|
|
|
|
@server.close
|
2017-05-14 14:09:56 +00:00
|
|
|
SocketSpecs.rm_socket @path
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "sends the fd for an IO object across the socket" do
|
|
|
|
@client.send_io(@file)
|
|
|
|
|
|
|
|
@socket = @server.accept
|
|
|
|
@io = @socket.recv_io
|
|
|
|
|
|
|
|
@io.read.should == File.read(@send_io_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|