[ruby/fileutils] Make copy methods handle FIFOs and UNIX sockets

Previously, this was broken.  Trying to copy a FIFO would raise a
NoMethodError if File.mkfifo was defined.  Trying to copy a UNIX
socket would raise a RuntimeError as File.mknod is not something
Ruby defines.

Handle the FIFO issue using File.mkfifo instead of mkfifo.

Handle the UNIX Socket issue by creating a unix socket.

Continue to not support character or block devices, raising a
RuntimeError for both.

Add tests for FIFO, UNIX Socket, and character/block devices.

123903532d
This commit is contained in:
Jeremy Evans 2019-07-09 20:41:51 -07:00 committed by Hiroshi SHIBATA
parent 366dd9d803
commit 1d99163aa5
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 40 additions and 9 deletions

View file

@ -440,6 +440,34 @@ class TestFileUtils < Test::Unit::TestCase
}
end if have_symlink? and !no_broken_symlink?
def test_cp_r_fifo
Dir.mkdir('tmp/cpr_src')
File.mkfifo 'tmp/cpr_src/fifo', 0600
cp_r 'tmp/cpr_src', 'tmp/cpr_dest'
assert_equal(true, File.pipe?('tmp/cpr_dest/fifo'))
end if File.respond_to?(:mkfifo)
def test_cp_r_dev
devs = Dir['/dev/*']
chardev = Dir['/dev/*'].find{|f| File.chardev?(f)}
blockdev = Dir['/dev/*'].find{|f| File.blockdev?(f)}
Dir.mkdir('tmp/cpr_dest')
assert_raise(RuntimeError) { cp_r chardev, 'tmp/cpr_dest/cd' }
assert_raise(RuntimeError) { cp_r blockdev, 'tmp/cpr_dest/bd' }
end
begin
require 'socket'
rescue LoadError
else
def test_cp_r_socket
Dir.mkdir('tmp/cpr_src')
UNIXServer.new('tmp/cpr_src/socket').close
cp_r 'tmp/cpr_src', 'tmp/cpr_dest'
assert_equal(true, File.socket?('tmp/cpr_dest/socket'))
end if defined?(UNIXServer)
end
def test_cp_r_pathname
# pathname
touch 'tmp/cprtmp'