aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/testing.rb
blob: 838da3322ddcf8eb5fe757d739ac60eafe708df8 (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
module ActionController
  module Testing
    extend ActiveSupport::Concern

    include RackDelegation

    # This gets included on the second request. We only want to modify this
    # behavior on the second request. Ugh.
    module Recycled # :nodoc:
      def set_response!(request)
      end

      def process(name)
        ret = super
        if cookies = @_request.env['action_dispatch.cookies']
          cookies.write(@_response)
        end
        @_response.prepare!
        ret
      end

      def recycled?
        true
      end
    end

    def recycled? # :nodoc:
      false
    end

    def recycle!
      @_url_options = nil
      extend Recycled unless recycled?
    end

    # TODO : Rewrite tests using controller.headers= to use Rack env
    def headers=(new_headers)
      @_response ||= ActionDispatch::Response.new
      @_response.headers.replace(new_headers)
    end

    module ClassMethods
      def before_filters
        _process_action_callbacks.find_all{|x| x.kind == :before}.map{|x| x.name}
      end
    end
  end
end