aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_case.rb
blob: 35aad0d8bff63233f25dba3662e190ee6082b929 (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
require 'active_support/test_case'

module ActionController
  class NonInferrableControllerError < ActionControllerError
    def initialize(name)
      super "Unable to determine the controller to test from #{name}. " +
        "You'll need to specify it using tests YourController in your " +
        "test case definition"
    end
  end

  class TestCase < ActiveSupport::TestCase
    @@controller_class = nil
    class << self
      def tests(controller_class)
        self.controller_class = controller_class
      end

      def controller_class=(new_class)
        prepare_controller_class(new_class)
        write_inheritable_attribute(:controller_class, new_class)
      end

      def controller_class
        if current_controller_class = read_inheritable_attribute(:controller_class)
          current_controller_class
        else
          self.controller_class= determine_default_controller_class(name)
        end
      end

      def determine_default_controller_class(name)
        name.sub(/Test$/, '').constantize
      rescue NameError
        raise NonInferrableControllerError.new(name)
      end

      def prepare_controller_class(new_class)
        new_class.class_eval do
          def rescue_action(e)
            raise e
          end
        end
      end
    end

    def setup
      @controller = self.class.controller_class.new
      @request    = TestRequest.new
      @response   = TestResponse.new
    end
  end
end