mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
401b64c4e8
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
141 lines
3.7 KiB
Ruby
141 lines
3.7 KiB
Ruby
require_relative '../../spec_helper'
|
|
|
|
platform_is_not :windows do
|
|
describe "Signal.trap" do
|
|
before :each do
|
|
ScratchPad.clear
|
|
|
|
@proc = lambda { ScratchPad.record :proc_trap }
|
|
@saved_trap = Signal.trap(:HUP, @proc)
|
|
end
|
|
|
|
after :each do
|
|
Signal.trap(:HUP, @saved_trap) if @saved_trap
|
|
end
|
|
|
|
it "returns the previous handler" do
|
|
Signal.trap(:HUP, @saved_trap).should equal(@proc)
|
|
end
|
|
|
|
it "accepts a block in place of a proc/command argument" do
|
|
done = false
|
|
|
|
Signal.trap(:HUP) do
|
|
ScratchPad.record :block_trap
|
|
done = true
|
|
end
|
|
|
|
Process.kill :HUP, Process.pid
|
|
Thread.pass until done
|
|
|
|
ScratchPad.recorded.should == :block_trap
|
|
end
|
|
|
|
it "is possible to create a new Thread when the handler runs" do
|
|
done = false
|
|
|
|
Signal.trap(:HUP) do
|
|
thr = Thread.new { }
|
|
thr.join
|
|
ScratchPad.record(thr.group == Thread.main.group)
|
|
|
|
done = true
|
|
end
|
|
|
|
Process.kill :HUP, Process.pid
|
|
Thread.pass until done
|
|
|
|
ScratchPad.recorded.should be_true
|
|
end
|
|
|
|
it "ignores the signal when passed nil" do
|
|
Signal.trap :HUP, nil
|
|
Signal.trap(:HUP, @saved_trap).should be_nil
|
|
end
|
|
|
|
it "accepts 'DEFAULT' as a symbol in place of a proc" do
|
|
Signal.trap :HUP, :DEFAULT
|
|
Signal.trap(:HUP, :DEFAULT).should == "DEFAULT"
|
|
end
|
|
|
|
it "accepts 'SIG_DFL' as a symbol in place of a proc" do
|
|
Signal.trap :HUP, :SIG_DFL
|
|
Signal.trap(:HUP, :SIG_DFL).should == "DEFAULT"
|
|
end
|
|
|
|
it "accepts 'SIG_IGN' as a symbol in place of a proc" do
|
|
Signal.trap :HUP, :SIG_IGN
|
|
Signal.trap(:HUP, :SIG_IGN).should == "IGNORE"
|
|
end
|
|
|
|
it "accepts 'IGNORE' as a symbol in place of a proc" do
|
|
Signal.trap :HUP, :IGNORE
|
|
Signal.trap(:HUP, :IGNORE).should == "IGNORE"
|
|
end
|
|
|
|
it "accepts long names as Strings" do
|
|
Signal.trap "SIGHUP", @proc
|
|
Signal.trap("SIGHUP", @saved_trap).should equal(@proc)
|
|
end
|
|
|
|
it "acceps short names as Strings" do
|
|
Signal.trap "HUP", @proc
|
|
Signal.trap("HUP", @saved_trap).should equal(@proc)
|
|
end
|
|
|
|
it "accepts long names as Symbols" do
|
|
Signal.trap :SIGHUP, @proc
|
|
Signal.trap(:SIGHUP, @saved_trap).should equal(@proc)
|
|
end
|
|
|
|
it "accepts short names as Symbols" do
|
|
Signal.trap :HUP, @proc
|
|
Signal.trap(:HUP, @saved_trap).should equal(@proc)
|
|
end
|
|
|
|
it "accepts 'SIG_DFL' in place of a proc" do
|
|
Signal.trap :HUP, "SIG_DFL"
|
|
Signal.trap(:HUP, @saved_trap).should == "DEFAULT"
|
|
end
|
|
|
|
it "accepts 'DEFAULT' in place of a proc" do
|
|
Signal.trap :HUP, "DEFAULT"
|
|
Signal.trap(:HUP, @saved_trap).should == "DEFAULT"
|
|
end
|
|
|
|
it "accepts 'SIG_IGN' in place of a proc" do
|
|
Signal.trap :HUP, "SIG_IGN"
|
|
Signal.trap(:HUP, "SIG_IGN").should == "IGNORE"
|
|
end
|
|
|
|
it "accepts 'IGNORE' in place of a proc" do
|
|
Signal.trap :HUP, "IGNORE"
|
|
Signal.trap(:HUP, "IGNORE").should == "IGNORE"
|
|
end
|
|
end
|
|
|
|
describe "Signal.trap" do
|
|
it "returns SYSTEM_DEFAULT if passed DEFAULT and no handler was ever set" do
|
|
Signal.trap("PROF", "DEFAULT").should == "SYSTEM_DEFAULT"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "Signal.trap" do
|
|
describe "the special EXIT signal code" do
|
|
it "accepts the EXIT code" do
|
|
code = "trap(:EXIT, proc { print 1 })"
|
|
ruby_exe(code).should == "1"
|
|
end
|
|
|
|
it "runs the proc before at_exit handlers" do
|
|
code = "at_exit {print 1}; trap(:EXIT, proc {print 2}); at_exit {print 3}"
|
|
ruby_exe(code).should == "231"
|
|
end
|
|
|
|
it "can unset the handler" do
|
|
code = "trap(:EXIT, proc { print 1 }); trap(:EXIT, 'DEFAULT')"
|
|
ruby_exe(code).should == ""
|
|
end
|
|
end
|
|
end
|