aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/show_exceptions_test.rb
blob: 951fb4a22e122624fb18517a1b8314096d706375 (plain) (blame)
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
127
128
129
130
require 'abstract_unit'

module ActionDispatch
  class ShowExceptions
    private
      def public_path
        "#{FIXTURE_LOAD_PATH}/public"
      end

      # Silence logger
      def logger
        nil
      end
  end
end

class ShowExceptionsTest < ActionController::IntegrationTest
  Boomer = lambda do |env|
    req = ActionDispatch::Request.new(env)
    case req.path
    when "/not_found"
      raise ActionController::UnknownAction
    when "/method_not_allowed"
      raise ActionController::MethodNotAllowed
    when "/not_implemented"
      raise ActionController::NotImplemented
    when "/unprocessable_entity"
      raise ActionController::InvalidAuthenticityToken
    else
      raise "puke!"
    end
  end

  ProductionApp = ActionDispatch::ShowExceptions.new(Boomer, false)
  DevelopmentApp = ActionDispatch::ShowExceptions.new(Boomer, true)

  test "rescue in public from a remote ip" do
    @app = ProductionApp
    self.remote_addr = '208.77.188.166'

    get "/"
    assert_response 500
    assert_equal "500 error fixture\n", body

    get "/not_found"
    assert_response 404
    assert_equal "404 error fixture\n", body

    get "/method_not_allowed"
    assert_response 405
    assert_equal "", body
  end

  test "rescue locally from a local request" do
    @app = ProductionApp
    self.remote_addr = '127.0.0.1'

    get "/"
    assert_response 500
    assert_match /puke/, body

    get "/not_found"
    assert_response 404
    assert_match /#{ActionController::UnknownAction.name}/, body

    get "/method_not_allowed"
    assert_response 405
    assert_match /ActionController::MethodNotAllowed/, body
  end

  test "localize public rescue message" do
    # Change locale
    old_locale, I18n.locale = I18n.locale, :da

    begin
      @app = ProductionApp
      self.remote_addr = '208.77.188.166'

      get "/"
      assert_response 500
      assert_equal "500 localized error fixture\n", body

      get "/not_found"
      assert_response 404
      assert_equal "404 error fixture\n", body
    ensure
      I18n.locale = old_locale
    end
  end

  test "always rescue locally in development mode" do
    @app = DevelopmentApp
    self.remote_addr = '208.77.188.166'

    get "/"
    assert_response 500
    assert_match /puke/, body

    get "/not_found"
    assert_response 404
    assert_match /#{ActionController::UnknownAction.name}/, body

    get "/method_not_allowed"
    assert_response 405
    assert_match /ActionController::MethodNotAllowed/, body
  end

  test "publishes notifications" do
    # Wait pending notifications to be published
    ActiveSupport::Notifications.notifier.wait

    @app, event = ProductionApp, nil
    self.remote_addr = '127.0.0.1'

    ActiveSupport::Notifications.subscribe('action_dispatch.show_exception') do |*args|
      event = args
    end

    get "/"
    assert_response 500
    assert_match /puke/, body

    ActiveSupport::Notifications.notifier.wait

    assert_equal 'action_dispatch.show_exception', event.first
    assert_kind_of Hash, event.last[:env]
    assert_equal 'GET', event.last[:env]["REQUEST_METHOD"]
    assert_kind_of RuntimeError, event.last[:exception]
  end
end