1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
require File.expand_path('../../../spec_helper', __FILE__)
describe "SignalException.new" do
ruby_version_is "" ... "1.9" do
it "takes a signal number as the first argument" do
exc = SignalException.new(Signal.list["INT"])
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
end
ruby_version_is "1.9" do
it "takes a signal number as the first argument" do
exc = SignalException.new(Signal.list["INT"])
exc.signo.should == Signal.list["INT"]
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
end
it "raises an exception with an invalid signal number" do
lambda { SignalException.new(100000) }.should raise_error(ArgumentError)
end
ruby_version_is "" ... "1.9" do
it "takes a signal name without SIG prefix as the first argument" do
exc = SignalException.new("INT")
exc.signm.should == "INT"
exc.message.should == "INT"
end
it "takes a signal name with SIG prefix as the first argument" do
exc = SignalException.new("SIGINT")
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
end
ruby_version_is "1.9" do
it "takes a signal name without SIG prefix as the first argument" do
exc = SignalException.new("INT")
exc.signo.should == Signal.list["INT"]
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
it "takes a signal name with SIG prefix as the first argument" do
exc = SignalException.new("SIGINT")
exc.signo.should == Signal.list["INT"]
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
end
it "raises an exception with an invalid signal name" do
lambda { SignalException.new("NONEXISTANT") }.should raise_error(ArgumentError)
end
ruby_version_is "" ... "1.9" do
it "takes a signal symbol without SIG prefix as the first argument" do
exc = SignalException.new(:INT)
exc.signm.should == "INT"
exc.message.should == "INT"
end
it "takes a signal symbol with SIG prefix as the first argument" do
exc = SignalException.new(:SIGINT)
exc.signm.should == "INT"
exc.message.should == "INT"
end
end
ruby_version_is "1.9" do
it "takes a signal symbol without SIG prefix as the first argument" do
exc = SignalException.new(:INT)
exc.signo.should == Signal.list["INT"]
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
it "takes a signal symbol with SIG prefix as the first argument" do
exc = SignalException.new(:SIGINT)
exc.signo.should == Signal.list["INT"]
exc.signm.should == "SIGINT"
exc.message.should == "SIGINT"
end
end
it "raises an exception with an invalid signal name" do
lambda { SignalException.new(:NONEXISTANT) }.should raise_error(ArgumentError)
end
ruby_version_is "" ... "1.9" do
it "takes an optional message argument with a signal number" do
exc = SignalException.new(Signal.list["INT"], "name")
exc.signm.should == "name"
exc.message.should == "name"
end
end
ruby_version_is "1.9" do
it "takes an optional message argument with a signal number" do
exc = SignalException.new(Signal.list["INT"], "name")
exc.signo.should == Signal.list["INT"]
exc.signm.should == "name"
exc.message.should == "name"
end
end
it "raises an exception for an optional argument with a signal name" do
lambda { SignalException.new("INT","name") }.should raise_error(ArgumentError)
end
end
describe "rescueing SignalException" do
it "raises a SignalException when sent a signal" do
begin
Process.kill :TERM, Process.pid
rescue SignalException => e
e.signo.should == Signal.list["TERM"]
end
end
end
|