summaryrefslogtreecommitdiff
path: root/spec/ruby/core/exception/signal_exception_spec.rb
blob: e0b30236f7c2f478e97d3e07dccc9283a4f4b20f (plain)
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
require_relative '../../spec_helper'

describe "SignalException.new" 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

  it "raises an exception with an invalid signal number" do
    -> { SignalException.new(100000) }.should raise_error(ArgumentError)
  end

  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

  it "raises an exception with an invalid signal name" do
    -> { SignalException.new("NONEXISTENT") }.should raise_error(ArgumentError)
  end

  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

  it "raises an exception with an invalid signal name" do
    -> { SignalException.new(:NONEXISTENT) }.should raise_error(ArgumentError)
  end

  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

  it "raises an exception for an optional argument with a signal name" do
    -> { SignalException.new("INT","name") }.should raise_error(ArgumentError)
  end
end

describe "rescuing SignalException" do
  it "raises a SignalException when sent a signal" do
    begin
      Process.kill :TERM, Process.pid
      sleep
    rescue SignalException => e
      e.signo.should == Signal.list["TERM"]
      e.signm.should == "SIGTERM"
      e.message.should == "SIGTERM"
    end
  end
end