2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2003-09-04 12:18:59 -04:00
|
|
|
require 'test/unit'
|
2005-06-03 10:39:15 -04:00
|
|
|
require 'timeout'
|
2011-05-18 09:36:46 -04:00
|
|
|
require 'tempfile'
|
2003-09-04 12:18:59 -04:00
|
|
|
|
|
|
|
class TestSignal < Test::Unit::TestCase
|
|
|
|
def test_signal
|
2003-10-19 22:31:47 -04:00
|
|
|
begin
|
2006-12-31 10:02:22 -05:00
|
|
|
x = 0
|
|
|
|
oldtrap = Signal.trap(:INT) {|sig| x = 2 }
|
|
|
|
Process.kill :INT, Process.pid
|
2009-10-18 07:19:33 -04:00
|
|
|
10.times do
|
|
|
|
break if 2 == x
|
|
|
|
sleep 0.1
|
|
|
|
end
|
2006-12-31 10:02:22 -05:00
|
|
|
assert_equal 2, x
|
2003-09-05 11:15:43 -04:00
|
|
|
|
2006-12-31 10:02:22 -05:00
|
|
|
Signal.trap(:INT) { raise "Interrupt" }
|
2013-10-09 04:43:12 -04:00
|
|
|
assert_raise_with_message(RuntimeError, /Interrupt/) {
|
2006-12-31 10:02:22 -05:00
|
|
|
Process.kill :INT, Process.pid
|
2003-09-04 12:18:59 -04:00
|
|
|
sleep 0.1
|
2006-12-31 10:02:22 -05:00
|
|
|
}
|
2003-10-19 22:31:47 -04:00
|
|
|
ensure
|
2006-12-31 10:02:22 -05:00
|
|
|
Signal.trap :INT, oldtrap if oldtrap
|
2003-09-04 12:18:59 -04:00
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2005-06-03 10:39:15 -04:00
|
|
|
|
2011-05-15 09:37:47 -04:00
|
|
|
def test_signal_process_group
|
|
|
|
bug4362 = '[ruby-dev:43169]'
|
|
|
|
assert_nothing_raised(bug4362) do
|
2013-06-19 02:14:15 -04:00
|
|
|
pid = Process.spawn(EnvUtil.rubybin, '-e', 'sleep 10', :pgroup => true)
|
2011-05-15 09:37:47 -04:00
|
|
|
Process.kill(:"-TERM", pid)
|
|
|
|
Process.waitpid(pid)
|
|
|
|
assert_equal(true, $?.signaled?)
|
|
|
|
assert_equal(Signal.list["TERM"], $?.termsig)
|
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill) and
|
|
|
|
Process.respond_to?(:pgroup) # for mswin32
|
2011-05-15 09:37:47 -04:00
|
|
|
|
2005-06-03 10:39:15 -04:00
|
|
|
def test_exit_action
|
2013-06-19 11:57:14 -04:00
|
|
|
if Signal.list[sig = "USR1"]
|
|
|
|
term = :TERM
|
|
|
|
else
|
|
|
|
sig = "INT"
|
|
|
|
term = :KILL
|
|
|
|
end
|
|
|
|
IO.popen([EnvUtil.rubybin, '-e', <<-"End"], 'r+') do |io|
|
|
|
|
Signal.trap(:#{sig}, "EXIT")
|
|
|
|
STDOUT.syswrite("a")
|
2008-10-23 21:28:32 -04:00
|
|
|
Thread.start { sleep(2) }
|
2013-06-19 11:57:14 -04:00
|
|
|
STDIN.sysread(4096)
|
2010-08-09 09:12:54 -04:00
|
|
|
End
|
2013-06-19 11:57:14 -04:00
|
|
|
pid = io.pid
|
|
|
|
io.sysread(1)
|
2005-06-03 10:39:15 -04:00
|
|
|
sleep 0.1
|
|
|
|
assert_nothing_raised("[ruby-dev:26128]") {
|
2013-06-19 11:57:14 -04:00
|
|
|
Process.kill(term, pid)
|
2005-06-05 03:04:06 -04:00
|
|
|
begin
|
2006-12-31 10:02:22 -05:00
|
|
|
Timeout.timeout(3) {
|
2005-06-05 03:04:06 -04:00
|
|
|
Process.waitpid pid
|
|
|
|
}
|
|
|
|
rescue Timeout::Error
|
2013-06-19 03:47:12 -04:00
|
|
|
if term
|
|
|
|
Process.kill(term, pid)
|
|
|
|
term = (:KILL if term != :KILL)
|
|
|
|
retry
|
|
|
|
end
|
2005-06-05 03:04:06 -04:00
|
|
|
raise
|
|
|
|
end
|
2005-06-03 10:39:15 -04:00
|
|
|
}
|
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
def test_invalid_signal_name
|
|
|
|
assert_raise(ArgumentError) { Process.kill(:XXXXXXXXXX, $$) }
|
2014-07-30 10:27:15 -04:00
|
|
|
assert_raise_with_message(ArgumentError, /\u{30eb 30d3 30fc}/) { Process.kill("\u{30eb 30d3 30fc}", $$) }
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
def test_signal_exception
|
|
|
|
assert_raise(ArgumentError) { SignalException.new }
|
|
|
|
assert_raise(ArgumentError) { SignalException.new(-1) }
|
|
|
|
assert_raise(ArgumentError) { SignalException.new(:XXXXXXXXXX) }
|
2014-03-30 22:34:43 -04:00
|
|
|
assert_raise_with_message(ArgumentError, /\u{30eb 30d3 30fc}/) { SignalException.new("\u{30eb 30d3 30fc}") }
|
2008-05-30 09:42:23 -04:00
|
|
|
Signal.list.each do |signm, signo|
|
|
|
|
next if signm == "EXIT"
|
|
|
|
assert_equal(SignalException.new(signm).signo, signo)
|
|
|
|
assert_equal(SignalException.new(signm.to_sym).signo, signo)
|
|
|
|
assert_equal(SignalException.new(signo).signo, signo)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_interrupt
|
|
|
|
assert_raise(Interrupt) { raise Interrupt.new }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_signal2
|
|
|
|
begin
|
|
|
|
x = false
|
|
|
|
oldtrap = Signal.trap(:INT) {|sig| x = true }
|
|
|
|
GC.start
|
|
|
|
|
|
|
|
assert_raise(ArgumentError) { Process.kill }
|
|
|
|
|
|
|
|
Timeout.timeout(10) do
|
|
|
|
x = false
|
|
|
|
Process.kill(SignalException.new(:INT).signo, $$)
|
2011-05-27 09:37:37 -04:00
|
|
|
sleep(0.01) until x
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
x = false
|
|
|
|
Process.kill("INT", $$)
|
2011-05-27 09:37:37 -04:00
|
|
|
sleep(0.01) until x
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
x = false
|
|
|
|
Process.kill("SIGINT", $$)
|
2011-05-27 09:37:37 -04:00
|
|
|
sleep(0.01) until x
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
x = false
|
|
|
|
o = Object.new
|
|
|
|
def o.to_str; "SIGINT"; end
|
|
|
|
Process.kill(o, $$)
|
2011-05-27 09:37:37 -04:00
|
|
|
sleep(0.01) until x
|
2008-05-30 09:42:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise(ArgumentError) { Process.kill(Object.new, $$) }
|
|
|
|
|
|
|
|
ensure
|
|
|
|
Signal.trap(:INT, oldtrap) if oldtrap
|
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
def test_trap
|
|
|
|
begin
|
|
|
|
oldtrap = Signal.trap(:INT) {|sig| }
|
|
|
|
|
|
|
|
assert_raise(ArgumentError) { Signal.trap }
|
|
|
|
|
|
|
|
assert_raise(SecurityError) do
|
|
|
|
s = proc {}.taint
|
|
|
|
Signal.trap(:INT, s)
|
|
|
|
end
|
|
|
|
|
|
|
|
# FIXME!
|
|
|
|
Signal.trap(:INT, nil)
|
|
|
|
Signal.trap(:INT, "")
|
|
|
|
Signal.trap(:INT, "SIG_IGN")
|
|
|
|
Signal.trap(:INT, "IGNORE")
|
|
|
|
|
|
|
|
Signal.trap(:INT, "SIG_DFL")
|
|
|
|
Signal.trap(:INT, "SYSTEM_DEFAULT")
|
|
|
|
|
|
|
|
Signal.trap(:INT, "EXIT")
|
|
|
|
|
2008-07-16 15:12:41 -04:00
|
|
|
Signal.trap(:INT, "xxxxxx")
|
|
|
|
Signal.trap(:INT, "xxxx")
|
2008-05-30 09:42:23 -04:00
|
|
|
|
|
|
|
Signal.trap(SignalException.new(:INT).signo, "SIG_DFL")
|
|
|
|
|
|
|
|
assert_raise(ArgumentError) { Signal.trap(-1, "xxxx") }
|
|
|
|
|
|
|
|
o = Object.new
|
|
|
|
def o.to_str; "SIGINT"; end
|
|
|
|
Signal.trap(o, "SIG_DFL")
|
|
|
|
|
|
|
|
assert_raise(ArgumentError) { Signal.trap("XXXXXXXXXX", "SIG_DFL") }
|
|
|
|
|
2014-07-30 10:27:15 -04:00
|
|
|
assert_raise_with_message(ArgumentError, /\u{30eb 30d3 30fc}/) { Signal.trap("\u{30eb 30d3 30fc}", "SIG_DFL") }
|
2008-05-30 09:42:23 -04:00
|
|
|
ensure
|
|
|
|
Signal.trap(:INT, oldtrap) if oldtrap
|
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2010-04-27 08:27:13 -04:00
|
|
|
|
2014-09-20 22:03:34 -04:00
|
|
|
%w"KILL STOP".each do |sig|
|
|
|
|
if Signal.list.key?(sig)
|
|
|
|
define_method("test_trap_uncatchable_#{sig}") do
|
|
|
|
assert_raise(Errno::EINVAL, "SIG#{sig} is not allowed to be caught") { Signal.trap(sig) {} }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-21 01:10:14 -04:00
|
|
|
def test_sigexit
|
|
|
|
assert_in_out_err([], 'Signal.trap(:EXIT) {print "OK"}', ["OK"])
|
|
|
|
assert_in_out_err([], 'Signal.trap("EXIT") {print "OK"}', ["OK"])
|
|
|
|
assert_in_out_err([], 'Signal.trap(:SIGEXIT) {print "OK"}', ["OK"])
|
|
|
|
assert_in_out_err([], 'Signal.trap("SIGEXIT") {print "OK"}', ["OK"])
|
|
|
|
assert_in_out_err([], 'Signal.trap(0) {print "OK"}', ["OK"])
|
|
|
|
end
|
|
|
|
|
2010-04-27 08:27:13 -04:00
|
|
|
def test_kill_immediately_before_termination
|
2013-06-19 11:57:11 -04:00
|
|
|
Signal.list[sig = "USR1"] or sig = "INT"
|
|
|
|
assert_in_out_err(["-e", <<-"end;"], "", %w"foo")
|
|
|
|
Signal.trap(:#{sig}) { STDOUT.syswrite("foo") }
|
|
|
|
Process.kill :#{sig}, $$
|
2013-06-19 03:47:15 -04:00
|
|
|
end;
|
|
|
|
end if Process.respond_to?(:kill)
|
2011-05-18 09:36:46 -04:00
|
|
|
|
2014-05-09 19:48:47 -04:00
|
|
|
def test_trap_system_default
|
|
|
|
assert_separately([], <<-End)
|
|
|
|
trap(:QUIT, "SYSTEM_DEFAULT")
|
|
|
|
assert_equal("SYSTEM_DEFAULT", trap(:QUIT, "DEFAULT"))
|
|
|
|
End
|
2014-05-09 21:00:37 -04:00
|
|
|
end if Signal.list.key?('QUIT')
|
2014-05-09 19:48:47 -04:00
|
|
|
|
2011-07-12 00:55:50 -04:00
|
|
|
def test_reserved_signal
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
Signal.trap(:SEGV) {}
|
|
|
|
}
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
Signal.trap(:BUS) {}
|
|
|
|
}
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
Signal.trap(:ILL) {}
|
|
|
|
}
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
Signal.trap(:FPE) {}
|
|
|
|
}
|
|
|
|
assert_raise(ArgumentError) {
|
|
|
|
Signal.trap(:VTALRM) {}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-11-19 04:43:53 -05:00
|
|
|
def test_signame
|
2015-03-01 23:04:30 -05:00
|
|
|
Signal.list.each do |name, num|
|
|
|
|
assert_equal(num, Signal.list[Signal.signame(num)], name)
|
|
|
|
end
|
|
|
|
assert_nil(Signal.signame(-1))
|
|
|
|
signums = Signal.list.invert
|
|
|
|
assert_nil(Signal.signame((1..1000).find {|num| !signums[num]}))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_signame_delivered
|
2012-11-19 19:50:58 -05:00
|
|
|
10.times do
|
|
|
|
IO.popen([EnvUtil.rubybin, "-e", <<EOS, :err => File::NULL]) do |child|
|
|
|
|
Signal.trap("INT") do |signo|
|
|
|
|
signame = Signal.signame(signo)
|
|
|
|
Marshal.dump(signame, STDOUT)
|
|
|
|
STDOUT.flush
|
|
|
|
exit 0
|
|
|
|
end
|
2012-11-20 00:39:14 -05:00
|
|
|
Process.kill("INT", $$)
|
|
|
|
sleep 1 # wait signal deliver
|
2012-11-19 19:50:58 -05:00
|
|
|
EOS
|
2012-11-20 00:39:14 -05:00
|
|
|
|
2012-11-19 19:50:58 -05:00
|
|
|
signame = Marshal.load(child)
|
2012-11-19 04:43:53 -05:00
|
|
|
assert_equal(signame, "INT")
|
|
|
|
end
|
|
|
|
end
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2012-11-28 03:30:51 -05:00
|
|
|
|
|
|
|
def test_trap_puts
|
|
|
|
assert_in_out_err([], <<-INPUT, ["a"*10000], [])
|
|
|
|
Signal.trap(:INT) {
|
|
|
|
# for enable internal io mutex
|
2013-01-31 02:08:23 -05:00
|
|
|
STDOUT.sync = false
|
2012-11-28 03:30:51 -05:00
|
|
|
# larger than internal io buffer
|
|
|
|
print "a"*10000
|
|
|
|
}
|
|
|
|
Process.kill :INT, $$
|
|
|
|
sleep 0.1
|
|
|
|
INPUT
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2013-03-19 00:40:22 -04:00
|
|
|
|
|
|
|
def test_hup_me
|
|
|
|
# [Bug #7951] [ruby-core:52864]
|
2013-03-19 14:34:13 -04:00
|
|
|
# This is MRI specific spec. ruby has no guarantee
|
|
|
|
# that signal will be deliverd synchronously.
|
|
|
|
# This ugly workaround was introduced to don't break
|
|
|
|
# compatibility against silly example codes.
|
2014-05-09 12:15:30 -04:00
|
|
|
assert_separately([], <<-RUBY)
|
2014-05-09 11:13:11 -04:00
|
|
|
trap(:HUP, "DEFAULT")
|
2013-03-19 00:40:22 -04:00
|
|
|
assert_raise(SignalException) {
|
2013-03-21 10:17:10 -04:00
|
|
|
Process.kill('HUP', Process.pid)
|
|
|
|
}
|
2014-05-09 11:13:11 -04:00
|
|
|
RUBY
|
2013-03-21 10:17:10 -04:00
|
|
|
bug8137 = '[ruby-dev:47182] [Bug #8137]'
|
|
|
|
assert_nothing_raised(bug8137) {
|
|
|
|
Timeout.timeout(1) {
|
|
|
|
Process.kill(0, Process.pid)
|
|
|
|
}
|
2013-03-19 00:40:22 -04:00
|
|
|
}
|
2013-06-19 03:47:15 -04:00
|
|
|
end if Process.respond_to?(:kill) and Signal.list.key?('HUP')
|
2014-05-10 12:10:32 -04:00
|
|
|
|
|
|
|
def test_ignored_interrupt
|
|
|
|
bug9820 = '[ruby-dev:48203] [Bug #9820]'
|
|
|
|
assert_separately(['-', bug9820], <<-'end;') # begin
|
|
|
|
bug = ARGV.shift
|
|
|
|
trap(:INT, "IGNORE")
|
|
|
|
assert_nothing_raised(SignalException, bug) do
|
|
|
|
Process.kill(:INT, $$)
|
|
|
|
end
|
|
|
|
end;
|
2014-10-06 03:23:06 -04:00
|
|
|
|
|
|
|
if trap = Signal.list['TRAP']
|
|
|
|
bug9820 = '[ruby-dev:48592] [Bug #9820]'
|
|
|
|
status = assert_in_out_err(['-e', 'Process.kill(:TRAP, $$)'])
|
|
|
|
assert_predicate(status, :signaled?, bug9820)
|
|
|
|
assert_equal(trap, status.termsig, bug9820)
|
|
|
|
end
|
2014-10-07 10:40:16 -04:00
|
|
|
|
|
|
|
if Signal.list['CONT']
|
|
|
|
bug9820 = '[ruby-dev:48606] [Bug #9820]'
|
|
|
|
assert_ruby_status(['-e', 'Process.kill(:CONT, $$)'])
|
|
|
|
end
|
2014-05-10 12:10:32 -04:00
|
|
|
end if Process.respond_to?(:kill)
|
2016-01-26 00:33:28 -05:00
|
|
|
|
|
|
|
def test_signal_list_dedupe_keys
|
|
|
|
a = Signal.list.keys.map(&:object_id).sort
|
|
|
|
b = Signal.list.keys.map(&:object_id).sort
|
|
|
|
assert_equal a, b
|
|
|
|
end
|
2003-09-04 12:18:59 -04:00
|
|
|
end
|