dumping ground for random patches and texts
 help / color / mirror / Atom feed
* [PATCH] test/ruby/test_process.rb: test for fd=3 usability in child
@ 2015-07-05  0:18 Eric Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2015-07-05  0:18 UTC (permalink / raw)
  To: spew

Ensure we can redirect anything to fd=3 in a child process.
fd=3 is a commonly reserved FD for the timer thread pipe in the
parent, but fd=3 is the first FD used by the sd_listen_fds function
for systemd.

This test should ensure the continued viability of systemd
replacements in Ruby :>
---
 test/ruby/test_process.rb | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index a43dcf4..cda4cfc 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -2029,4 +2029,29 @@ EOS
     }
     assert_equal(th, x)
   end if defined?(fork)
+
+  def test_exec_fd_3_redirect
+    # ensure we can redirect anything to fd=3 in a child process.
+    # fd=3 is a commonly reserved FD for the timer thread pipe in the
+    # parent, but fd=3 is the first FD used by the sd_listen_fds function
+    # for systemd
+    assert_separately(['-', RUBY], <<-INPUT, timeout: 60)
+      ruby = ARGV.shift
+      begin
+        assert_raises(ArgumentError) { IO.for_fd(3) }
+        a = IO.pipe
+        b = IO.pipe
+        pid = fork do
+          exec ruby, '-e', 'print IO.for_fd(3).read(1)', 3 => a[0], 1 => b[1]
+        end
+        b[1].close
+        a[0].close
+        a[1].write('.')
+        assert_equal ".", b[0].read(1)
+      ensure
+        a.each(&:close) if a
+        b.each(&:close) if b
+      end
+    INPUT
+  end if defined?(fork)
 end
-- 
EW


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH] test/ruby/test_process.rb: test for fd=3 usability in child
@ 2015-07-05  0:20 Eric Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2015-07-05  0:20 UTC (permalink / raw)
  To: spew

Ensure we can redirect anything to fd=3 in a child process.  This
test exists because fd=3 is a commonly reserved FD for a timer
thread pipe in the parent Ruby VM, but fd=3 is the first FD used by
the sd_listen_fds function for systemd.

This means there is a possibility for a bug to slip in where the
redirect to fd=3 fails to work.  This test should ensure the
continued viability of systemd replacements in Ruby :>
---
 test/ruby/test_process.rb | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index a43dcf4..cda4cfc 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -2029,4 +2029,29 @@ EOS
     }
     assert_equal(th, x)
   end if defined?(fork)
+
+  def test_exec_fd_3_redirect
+    # ensure we can redirect anything to fd=3 in a child process.
+    # fd=3 is a commonly reserved FD for the timer thread pipe in the
+    # parent, but fd=3 is the first FD used by the sd_listen_fds function
+    # for systemd
+    assert_separately(['-', RUBY], <<-INPUT, timeout: 60)
+      ruby = ARGV.shift
+      begin
+        assert_raises(ArgumentError) { IO.for_fd(3) }
+        a = IO.pipe
+        b = IO.pipe
+        pid = fork do
+          exec ruby, '-e', 'print IO.for_fd(3).read(1)', 3 => a[0], 1 => b[1]
+        end
+        b[1].close
+        a[0].close
+        a[1].write('.')
+        assert_equal ".", b[0].read(1)
+      ensure
+        a.each(&:close) if a
+        b.each(&:close) if b
+      end
+    INPUT
+  end if defined?(fork)
 end
-- 
EW


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-05  0:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-05  0:18 [PATCH] test/ruby/test_process.rb: test for fd=3 usability in child Eric Wong
  -- strict thread matches above, loose matches on Subject: below --
2015-07-05  0:20 Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).