test_process.rb 8.9 KB
Newer Older
1 2
require File.dirname(__FILE__) + '/assertions'
require File.dirname(__FILE__) + '/deprecated_assertions'
D
Initial  
David Heinemeier Hansson 已提交
3

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
if defined?(RAILS_ROOT)
  # Temporary hack for getting functional tests in Rails running under 1.8.2
  class Object #:nodoc:
    alias_method :require_without_load_path_reloading, :require
    def require(file_name)
      begin
        require_without_load_path_reloading(file_name)
      rescue Object => e
        ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) }
        require_without_load_path_reloading(file_name)
      end
    end
  end
end


D
Initial  
David Heinemeier Hansson 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32
module ActionController #:nodoc:
  class Base
    # Process a test request called with a +TestRequest+ object.
    def self.process_test(request)
      new.process_test(request)
    end
  
    def process_test(request) #:nodoc:
      process(request, TestResponse.new)
    end
  end

  class TestRequest < AbstractRequest #:nodoc:
33
    attr_accessor :cookies
34 35
    attr_accessor :query_parameters, :request_parameters, :path, :session, :env
    attr_accessor :host, :remote_addr
D
Initial  
David Heinemeier Hansson 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

    def initialize(query_parameters = nil, request_parameters = nil, session = nil)
      @query_parameters   = query_parameters || {}
      @request_parameters = request_parameters || {}
      @session            = session || TestSession.new
      
      initialize_containers
      initialize_default_values

      super()
    end

    def reset_session
      @session = {}
    end    

52 53 54 55
    def port=(number)
      @env["SERVER_PORT"] = number.to_i
    end

D
Initial  
David Heinemeier Hansson 已提交
56 57 58 59 60
    def action=(action_name)
      @query_parameters.update({ "action" => action_name })
      @parameters = nil
    end
    
61 62 63 64 65 66 67 68
    # Used to check AbstractRequest's request_uri functionality.
    # Disables the use of @path and @request_uri so superclass can handle those.
    def set_REQUEST_URI(value)
      @env["REQUEST_URI"] = value
      @request_uri = nil
      @path = nil
    end

D
Initial  
David Heinemeier Hansson 已提交
69 70 71 72 73
    def request_uri=(uri)
      @request_uri = uri
      @path = uri.split("?").first
    end

74 75 76 77 78 79 80 81 82
    def request_uri
      @request_uri || super()
    end

    def path
      @path || super()
    end
    

D
Initial  
David Heinemeier Hansson 已提交
83 84 85 86 87 88
    private
      def initialize_containers
        @env, @cookies = {}, {}
      end
    
      def initialize_default_values
89 90 91 92
        @host                    = "test.host"
        @request_uri             = "/"
        @remote_addr, @remote_ip = "127.0.0.1"        
        @env["SERVER_PORT"]      = 80
D
Initial  
David Heinemeier Hansson 已提交
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
      end
  end
  
  class TestResponse < AbstractResponse #:nodoc:
    # the response code of the request
    def response_code
      headers['Status'][0,3].to_i rescue 0
    end
   
    # was the response successful?
    def success?
      response_code == 200
    end

    # was the URL not found?
    def missing?
      response_code == 404
    end

    # were we redirected?
    def redirect?
      (300..399).include?(response_code)
    end
    
    # was there a server-side error?
118
    def error?
D
Initial  
David Heinemeier Hansson 已提交
119 120 121
      (500..599).include?(response_code)
    end

122 123
    alias_method :server_error?, :error?

D
Initial  
David Heinemeier Hansson 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    # returns the redirection location or nil
    def redirect_url
      redirect? ? headers['location'] : nil
    end
    
    # does the redirect location match this regexp pattern?
    def redirect_url_match?( pattern )
      return false if redirect_url.nil?
      p = Regexp.new(pattern) if pattern.class == String
      p = pattern if pattern.class == Regexp
      return false if p.nil?
      p.match(redirect_url) != nil
    end
   
    # returns the template path of the file which was used to
    # render this response (or nil) 
    def rendered_file(with_controller=false)
      unless template.first_render.nil?
        unless with_controller
          template.first_render
        else
          template.first_render.split('/').last || template.first_render
        end
      end
    end

    # was this template rendered by a file?
    def rendered_with_file?
      !rendered_file.nil?
    end

    # a shortcut to the flash (or an empty hash if no flash.. hey! that rhymes!)
    def flash
      session['flash'] || {}
    end
    
    # do we have a flash? 
    def has_flash?
162
      !session['flash'].empty?
D
Initial  
David Heinemeier Hansson 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    end

    # do we have a flash that has contents?
    def has_flash_with_contents?
      !flash.empty?
    end

    # does the specified flash object exist?
    def has_flash_object?(name=nil)
      !flash[name].nil?
    end

    # does the specified object exist in the session?
    def has_session_object?(name=nil)
      !session[name].nil?
    end

    # a shortcut to the template.assigns
    def template_objects
      template.assigns || {}
    end
   
    # does the specified template object exist? 
    def has_template_object?(name=nil)
      !template_objects[name].nil?      
    end
189 190 191 192 193 194 195 196 197
    
    # Returns the response cookies, converted to a Hash of (name => CGI::Cookie) pairs
    # Example:
    # 
    # assert_equal ['AuthorOfNewPage'], r.cookies['author'].value
    def cookies
      headers['cookie'].inject({}) { |hash, cookie| hash[cookie.name] = cookie; hash }
    end

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    # Returns binary content (downloadable file), converted to a String
    def binary_content
      raise "Response body is not a Proc: #{body.inspect}" unless body.kind_of?(Proc)
      require 'stringio'

      sio = StringIO.new

      begin 
        $stdout = sio
        body.call
      ensure
        $stdout = STDOUT
      end

      sio.rewind
      sio.read
    end
D
Initial  
David Heinemeier Hansson 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
end

  class TestSession #:nodoc:
    def initialize(attributes = {})
      @attributes = attributes
    end

    def [](key)
      @attributes[key]
    end

    def []=(key, value)
      @attributes[key] = value
    end
    
230 231 232 233
    def session_id
      ""
    end
    
D
Initial  
David Heinemeier Hansson 已提交
234 235 236 237 238 239
    def update() end
    def close() end
    def delete() @attributes = {} end
  end
end

D
David Heinemeier Hansson 已提交
240 241 242 243 244
module Test
  module Unit
    class TestCase #:nodoc:
      private  
        # execute the request and set/volley the response
245
        def process(action, parameters = nil, session = nil, flash = nil)
246
          @html_document = nil
D
David Heinemeier Hansson 已提交
247 248
          @request.env['REQUEST_METHOD'] ||= "GET"
          @request.action = action.to_s
249 250
          @request.path_parameters = { :controller => @controller.class.controller_path,
                                       :action => action.to_s }
D
David Heinemeier Hansson 已提交
251 252
          @request.parameters.update(parameters) unless parameters.nil?
          @request.session = ActionController::TestSession.new(session) unless session.nil?
253
          @request.session["flash"] = ActionController::Flash::FlashHash.new.update(flash) if flash
254
          build_request_uri(action, parameters)
D
David Heinemeier Hansson 已提交
255 256
          @controller.process(@request, @response)
        end
257
    
D
David Heinemeier Hansson 已提交
258 259 260
        # execute the request simulating a specific http method and set/volley the response
        %w( get post put delete head ).each do |method|
          class_eval <<-EOV
261
            def #{method}(action, parameters = nil, session = nil, flash = nil)
D
David Heinemeier Hansson 已提交
262
              @request.env['REQUEST_METHOD'] = "#{method.upcase}"
263
              process(action, parameters, session, flash)
D
David Heinemeier Hansson 已提交
264 265
            end
          EOV
266
        end
267

268 269 270 271 272 273
        def xml_http_request(request_method, action, parameters = nil, session = nil, flash = nil)
          @request.env['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest'
          self.send(request_method, action, parameters, session, flash)
        end
        alias xhr :xml_http_request

274 275 276 277 278
        def follow_redirect
          if @response.redirected_to[:controller]
            raise "Can't follow redirects outside of current controller (#{@response.redirected_to[:controller]})"
          end
          
279
          get(@response.redirected_to.delete(:action), @response.redirected_to.stringify_keys)
280
        end
281

282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
        def assigns(key = nil)
          if key.nil?
            @response.template.assigns
          else
            @response.template.assigns[key.to_s]
          end
        end
        
        def session
          @response.session
        end

        def flash
          @response.flash
        end

        def cookies
          @response.cookies
        end

        def redirect_to_url
          @response.redirect_url
304
        end
305 306 307 308 309 310 311 312

        def build_request_uri(action, parameters)
          return if @request.env['REQUEST_URI']
          url = ActionController::UrlRewriter.new(@request, parameters)
          @request.set_REQUEST_URI(
            url.rewrite(@controller.send(:rewrite_options,
              (parameters||{}).update(:only_path => true, :action=>action))))
        end
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333

        def html_document
          require_html_scanner
          @html_document ||= HTML::Document.new(@response.body)
        end
        
        def find_tag(conditions)
          html_document.find(conditions)
        end

        def find_all_tag(conditions)
          html_document.find_all(conditions)
        end

        def require_html_scanner
          return true if defined?(HTML::Document)
          require 'html/document'
        rescue LoadError
          $:.unshift File.dirname(__FILE__) + "/vendor/html-scanner"
          require 'html/document'
        end
334
      end
D
David Heinemeier Hansson 已提交
335
  end
336
end