integration.rb 23.1 KB
Newer Older
1 2
require 'stringio'
require 'uri'
3
require 'active_support/test_case'
4

5 6 7 8 9 10 11 12 13 14 15
# Monkey patch Rack::Lint to support rewind
module Rack
  class Lint
    class InputWrapper
      def rewind
        @input.rewind
      end
    end
  end
end

16
module ActionController
D
David Heinemeier Hansson 已提交
17
  module Integration #:nodoc:
18 19 20 21 22
    # An integration Session instance represents a set of requests and responses
    # performed sequentially by some virtual user. Becase you can instantiate
    # multiple sessions and run them side-by-side, you can also mimic (to some
    # limited extent) multiple simultaneous users interacting with your system.
    #
23 24 25
    # Typically, you will instantiate a new session using
    # IntegrationTest#open_session, rather than instantiating
    # Integration::Session directly.
26
    class Session
27
      include Test::Unit::Assertions
28
      include ActionController::TestCase::Assertions
29 30
      include ActionController::TestProcess

31 32 33
      # Rack application to use
      attr_accessor :application

34 35 36 37 38 39 40 41 42 43
      # The integer HTTP status code of the last request.
      attr_reader :status

      # The status message that accompanied the status code of the last request.
      attr_reader :status_message

      # The URI of the last request.
      attr_reader :path

      # The hostname used in the last request.
44 45 46 47
      attr_accessor :host

      # The remote_addr used in the last request.
      attr_accessor :remote_addr
48

49 50 51
      # The Accept header to send.
      attr_accessor :accept

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
      # A map of the cookies returned by the last response, and which will be
      # sent with the next request.
      attr_reader :cookies

      # A map of the headers returned by the last response.
      attr_reader :headers

      # A reference to the controller instance used by the last request.
      attr_reader :controller

      # A reference to the request instance used by the last request.
      attr_reader :request

      # A reference to the response instance used by the last request.
      attr_reader :response

68 69 70
      # A running counter of the number of requests processed.
      attr_accessor :request_count

71 72 73
      class MultiPartNeededException < Exception
      end

P
Pratik Naik 已提交
74
      # Create and initialize a new Session instance.
75 76
      def initialize(app)
        @application = app
77 78 79 80 81 82 83 84 85
        reset!
      end

      # Resets the instance. This can be used to reset the state information
      # in an existing session instance, so it can be used from a clean-slate
      # condition.
      #
      #   session.reset!
      def reset!
J
Jamis Buck 已提交
86
        @status = @path = @headers = nil
87 88 89 90
        @result = @status_message = nil
        @https = false
        @cookies = {}
        @controller = @request = @response = nil
91
        @request_count = 0
92

93
        self.host        = "www.example.com"
94
        self.remote_addr = "127.0.0.1"
95 96 97
        self.accept      = "text/xml,application/xml,application/xhtml+xml," +
                           "text/html;q=0.9,text/plain;q=0.8,image/png," +
                           "*/*;q=0.5"
J
Jamis Buck 已提交
98

99
        unless defined? @named_routes_configured
J
Jamis Buck 已提交
100
          # install the named routes in this session instance.
101
          klass = class << self; self; end
102
          Routing::Routes.install_helpers(klass)
J
Jamis Buck 已提交
103 104 105

          # the helpers are made protected by default--we make them public for
          # easier access during testing and troubleshooting.
106
          klass.module_eval { public *Routing::Routes.named_routes.helpers }
J
Jamis Buck 已提交
107 108
          @named_routes_configured = true
        end
109 110 111 112 113 114
      end

      # Specify whether or not the session should mimic a secure HTTPS request.
      #
      #   session.https!
      #   session.https!(false)
115
      def https!(flag = true)
116
        @https = flag
117 118
      end

P
Pratik Naik 已提交
119
      # Return +true+ if the session is mimicking a secure HTTPS request.
120 121 122 123 124 125 126 127 128 129
      #
      #   if session.https?
      #     ...
      #   end
      def https?
        @https
      end

      # Set the host name to use in the next request.
      #
130
      #   session.host! "www.example.com"
131 132 133 134 135 136 137 138 139
      def host!(name)
        @host = name
      end

      # Follow a single redirect response. If the last response was not a
      # redirect, an exception will be raised. Otherwise, the redirect is
      # performed on the location header.
      def follow_redirect!
        raise "not a redirect! #{@status} #{@status_message}" unless redirect?
140
        get(interpret_uri(headers['location']))
141
        status
142 143
      end

144 145 146 147 148 149
      # Performs a request using the specified method, following any subsequent
      # redirect. Note that the redirects are followed until the response is
      # not a redirect--this means you may run into an infinite loop if your
      # redirect loops back to itself.
      def request_via_redirect(http_method, path, parameters = nil, headers = nil)
        send(http_method, path, parameters, headers)
150
        follow_redirect! while redirect?
151
        status
152 153
      end

154
      # Performs a GET request, following any subsequent redirect.
P
Pratik Naik 已提交
155
      # See +request_via_redirect+ for more information.
156 157 158 159 160
      def get_via_redirect(path, parameters = nil, headers = nil)
        request_via_redirect(:get, path, parameters, headers)
      end

      # Performs a POST request, following any subsequent redirect.
P
Pratik Naik 已提交
161
      # See +request_via_redirect+ for more information.
162 163 164 165 166
      def post_via_redirect(path, parameters = nil, headers = nil)
        request_via_redirect(:post, path, parameters, headers)
      end

      # Performs a PUT request, following any subsequent redirect.
P
Pratik Naik 已提交
167
      # See +request_via_redirect+ for more information.
168 169 170 171 172
      def put_via_redirect(path, parameters = nil, headers = nil)
        request_via_redirect(:put, path, parameters, headers)
      end

      # Performs a DELETE request, following any subsequent redirect.
P
Pratik Naik 已提交
173
      # See +request_via_redirect+ for more information.
174 175
      def delete_via_redirect(path, parameters = nil, headers = nil)
        request_via_redirect(:delete, path, parameters, headers)
176 177 178 179 180 181 182
      end

      # Returns +true+ if the last response was a redirect.
      def redirect?
        status/100 == 3
      end

P
Pratik Naik 已提交
183 184
      # Performs a GET request with the given parameters.
      #
185 186 187 188
      # - +path+: The URI (as a String) on which you want to perform a GET
      #   request.
      # - +parameters+: The HTTP parameters that you want to pass. This may
      #   be +nil+,
P
Pratik Naik 已提交
189
      #   a Hash, or a String that is appropriately encoded
190 191
      #   (<tt>application/x-www-form-urlencoded</tt> or
      #   <tt>multipart/form-data</tt>).
P
Pratik Naik 已提交
192 193 194
      # - +headers+: Additional HTTP headers to pass, as a Hash. The keys will
      #   automatically be upcased, with the prefix 'HTTP_' added if needed.
      #
195
      # This method returns an Response object, which one can use to
196 197 198 199
      # inspect the details of the response. Furthermore, if this method was
      # called from an ActionController::IntegrationTest object, then that
      # object's <tt>@response</tt> instance variable will point to the same
      # response object.
200
      #
P
Pratik Naik 已提交
201 202
      # You can also perform POST, PUT, DELETE, and HEAD requests with +post+,
      # +put+, +delete+, and +head+.
203
      def get(path, parameters = nil, headers = nil)
204 205 206
        process :get, path, parameters, headers
      end

207 208
      # Performs a POST request with the given parameters. See get() for more
      # details.
209
      def post(path, parameters = nil, headers = nil)
210 211 212
        process :post, path, parameters, headers
      end

213 214
      # Performs a PUT request with the given parameters. See get() for more
      # details.
215
      def put(path, parameters = nil, headers = nil)
216 217
        process :put, path, parameters, headers
      end
218

219 220
      # Performs a DELETE request with the given parameters. See get() for
      # more details.
221
      def delete(path, parameters = nil, headers = nil)
222 223
        process :delete, path, parameters, headers
      end
224

225 226
      # Performs a HEAD request with the given parameters. See get() for more
      # details.
227
      def head(path, parameters = nil, headers = nil)
228
        process :head, path, parameters, headers
229 230
      end

231 232 233 234 235 236 237 238 239 240
      # Performs an XMLHttpRequest request with the given parameters, mirroring
      # a request from the Prototype library.
      #
      # The request_method is :get, :post, :put, :delete or :head; the
      # parameters are +nil+, a hash, or a url-encoded or multipart string;
      # the headers are a hash.  Keys are automatically upcased and prefixed
      # with 'HTTP_' if not already.
      def xml_http_request(request_method, path, parameters = nil, headers = nil)
        headers ||= {}
        headers['X-Requested-With'] = 'XMLHttpRequest'
241
        headers['Accept'] ||= [Mime::JS, Mime::HTML, Mime::XML, 'text/xml', Mime::ALL].join(', ')
242
        process(request_method, path, parameters, headers)
243
      end
244
      alias xhr :xml_http_request
245 246 247 248

      # Returns the URL for the given options, according to the rules specified
      # in the application's routes.
      def url_for(options)
249 250 251
        controller ?
          controller.url_for(options) :
          generic_url_rewriter.rewrite(options)
252 253 254 255 256 257 258
      end

      private
        # Tailors the session based on the given URI, setting the HTTPS value
        # and the hostname.
        def interpret_uri(path)
          location = URI.parse(path)
J
Jamis Buck 已提交
259
          https! URI::HTTPS === location if location.scheme
260
          host! location.host if location.host
261 262 263 264
          location.query ? "#{location.path}?#{location.query}" : location.path
        end

        # Performs the actual request.
265
        def process(method, path, parameters = nil, headers = nil)
266 267 268 269 270 271 272 273 274 275 276
          data = requestify(parameters)
          path = interpret_uri(path) if path =~ %r{://}
          path = "/#{path}" unless path[0] == ?/
          @path = path
          env = {}

          if method == :get
            env["QUERY_STRING"] = data
            data = nil
          end

277 278 279 280
          env["QUERY_STRING"] ||= ""

          data = data.is_a?(IO) ? data : StringIO.new(data || '')

281
          env.update(
282 283 284 285 286 287 288
            "REQUEST_METHOD"  => method.to_s.upcase,
            "SERVER_NAME"     => host,
            "SERVER_PORT"     => (https? ? "443" : "80"),
            "HTTPS"           => https? ? "on" : "off",
            "rack.url_scheme" => https? ? "https" : "http",
            "SCRIPT_NAME"     => "",

289
            "REQUEST_URI"    => path,
290
            "PATH_INFO"      => path,
291
            "HTTP_HOST"      => host,
292
            "REMOTE_ADDR"    => remote_addr,
293 294 295
            "CONTENT_TYPE"   => "application/x-www-form-urlencoded",
            "CONTENT_LENGTH" => data ? data.length.to_s : nil,
            "HTTP_COOKIE"    => encode_cookies,
J
Joshua Peek 已提交
296
            "HTTP_ACCEPT"    => accept,
297 298 299 300 301 302 303 304

            "rack.version"      => [0,1],
            "rack.input"        => data,
            "rack.errors"       => StringIO.new,
            "rack.multithread"  => true,
            "rack.multiprocess" => true,
            "rack.run_once"     => false,

J
Joshua Peek 已提交
305
            "rack.test" => true
306 307 308 309
          )

          (headers || {}).each do |key, value|
            key = key.to_s.upcase.gsub(/-/, "_")
310
            key = "HTTP_#{key}" unless env.has_key?(key) || key =~ /^HTTP_/
311 312 313 314
            env[key] = value
          end

          unless ActionController::Base.respond_to?(:clear_last_instantiation!)
315
            ActionController::Base.module_eval { include ControllerCapture }
316 317 318 319
          end

          ActionController::Base.clear_last_instantiation!

320 321 322
          app = Rack::Lint.new(@application)

          status, headers, body = app.call(env)
323
          @request_count += 1
324

325 326
          @html_document = nil

327 328
          @status = status.to_i
          @status_message = StatusCodes::STATUS_CODES[@status]
329

330
          @headers = Rack::Utils::HeaderHash.new(headers)
331

332
          (@headers['Set-Cookie'] || []).each do |cookie|
333
            name, value = cookie.match(/^([^=]*)=([^;]*);/)[1,2]
334 335 336
            @cookies[name] = value
          end

337 338 339
          @body = ""
          body.each { |part| @body << part }

340 341 342 343 344
          if @controller = ActionController::Base.last_instantiation
            @request = @controller.request
            @response = @controller.response
          else
            # Decorate responses from Rack Middleware and Rails Metal
345 346
            # as an Response for the purposes of integration testing
            @response = Response.new
347
            @response.status = status.to_s
348
            @response.headers.replace(@headers)
349 350 351 352 353 354 355 356
            @response.body = @body
          end

          # Decorate the response with the standard behavior of the
          # TestResponse so that things like assert_response can be
          # used in integration tests.
          @response.extend(TestResponseBehavior)

357
          return @status
358 359
        rescue MultiPartNeededException
          boundary = "----------XnJLe9ZIbbGUYtzPQJ16u1"
360 361 362 363
          status = process(method, path,
            multipart_body(parameters, boundary),
            (headers || {}).merge(
              {"CONTENT_TYPE" => "multipart/form-data; boundary=#{boundary}"}))
364
          return status
365 366
        end

367
        # Encode the cookies hash in a format suitable for passing to a
368 369 370 371 372 373 374
        # request.
        def encode_cookies
          cookies.inject("") do |string, (name, value)|
            string << "#{name}=#{value}; "
          end
        end

375
        # Get a temporary URL writer object
376
        def generic_url_rewriter
377 378 379 380 381 382 383 384
          env = {
            'REQUEST_METHOD' => "GET",
            'QUERY_STRING'   => "",
            "REQUEST_URI"    => "/",
            "HTTP_HOST"      => host,
            "SERVER_PORT"    => https? ? "443" : "80",
            "HTTPS"          => https? ? "on" : "off"
          }
P
Pratik Naik 已提交
385
          UrlRewriter.new(Request.new(env), {})
386 387
        end

J
Jamis Buck 已提交
388 389 390 391
        def name_with_prefix(prefix, name)
          prefix ? "#{prefix}[#{name}]" : name.to_s
        end

392 393
        # Convert the given parameters to a request string. The parameters may
        # be a string, +nil+, or a Hash.
J
Jamis Buck 已提交
394
        def requestify(parameters, prefix=nil)
395 396 397
          if TestUploadedFile === parameters
            raise MultiPartNeededException
          elsif Hash === parameters
J
Jamis Buck 已提交
398
            return nil if parameters.empty?
399 400 401
            parameters.map { |k,v|
              requestify(v, name_with_prefix(prefix, k))
            }.join("&")
J
Jamis Buck 已提交
402
          elsif Array === parameters
403 404 405
            parameters.map { |v|
              requestify(v, name_with_prefix(prefix, ""))
            }.join("&")
J
Jamis Buck 已提交
406
          elsif prefix.nil?
407
            parameters
J
Jamis Buck 已提交
408 409
          else
            "#{CGI.escape(prefix)}=#{CGI.escape(parameters.to_s)}"
410 411
          end
        end
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431

        def multipart_requestify(params, first=true)
          returning Hash.new do |p|
            params.each do |key, value|
              k = first ? CGI.escape(key.to_s) : "[#{CGI.escape(key.to_s)}]"
              if Hash === value
                multipart_requestify(value, false).each do |subkey, subvalue|
                  p[k + subkey] = subvalue
                end
              else
                p[k] = value
              end
            end
          end
        end

        def multipart_body(params, boundary)
          multipart_requestify(params).map do |key, value|
            if value.respond_to?(:original_filename)
              File.open(value.path) do |f|
432 433
                f.set_encoding(Encoding::BINARY) if f.respond_to?(:set_encoding)

434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
                <<-EOF
--#{boundary}\r
Content-Disposition: form-data; name="#{key}"; filename="#{CGI.escape(value.original_filename)}"\r
Content-Type: #{value.content_type}\r
Content-Length: #{File.stat(value.path).size}\r
\r
#{f.read}\r
EOF
              end
            else
<<-EOF
--#{boundary}\r
Content-Disposition: form-data; name="#{key}"\r
\r
#{value}\r
EOF
            end
          end.join("")+"--#{boundary}--\r"
        end
453 454 455 456 457 458 459 460
    end

    # A module used to extend ActionController::Base, so that integration tests
    # can capture the controller used to satisfy a request.
    module ControllerCapture #:nodoc:
      def self.included(base)
        base.extend(ClassMethods)
        base.class_eval do
461 462
          class << self
            alias_method_chain :new, :capture
463 464 465 466
          end
        end
      end

D
David Heinemeier Hansson 已提交
467
      module ClassMethods #:nodoc:
468 469 470 471 472
        mattr_accessor :last_instantiation

        def clear_last_instantiation!
          self.last_instantiation = nil
        end
473

474
        def new_with_capture(*args)
475 476 477
          controller = new_without_capture(*args)
          self.last_instantiation ||= controller
          controller
478 479 480
        end
      end
    end
481 482 483 484 485 486 487 488 489

    module Runner
      # Reset the current session. This is useful for testing multiple sessions
      # in a single test case.
      def reset!
        @integration_session = open_session
      end

      %w(get post put head delete cookies assigns
490
         xml_http_request xhr get_via_redirect post_via_redirect).each do |method|
491 492 493 494
        define_method(method) do |*args|
          reset! unless @integration_session
          # reset the html_document variable, but only for new get/post calls
          @html_document = nil unless %w(cookies assigns).include?(method)
495
          returning @integration_session.__send__(method, *args) do
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
            copy_session_variables!
          end
        end
      end

      # Open a new session instance. If a block is given, the new session is
      # yielded to the block before being returned.
      #
      #   session = open_session do |sess|
      #     sess.extend(CustomAssertions)
      #   end
      #
      # By default, a single session is automatically created for you, but you
      # can use this method to open multiple sessions that ought to be tested
      # simultaneously.
J
Joshua Peek 已提交
511 512
      def open_session(application = nil)
        application ||= ActionController::Dispatcher.new
513
        session = Integration::Session.new(application)
514 515 516 517 518 519 520

        # delegate the fixture accessors back to the test instance
        extras = Module.new { attr_accessor :delegate, :test_result }
        if self.class.respond_to?(:fixture_table_names)
          self.class.fixture_table_names.each do |table_name|
            name = table_name.tr(".", "_")
            next unless respond_to?(name)
521 522 523
            extras.__send__(:define_method, name) { |*args|
              delegate.send(name, *args)
            }
524 525 526 527
          end
        end

        # delegate add_assertion to the test case
528 529 530
        extras.__send__(:define_method, :add_assertion) {
          test_result.add_assertion
        }
531 532 533 534 535 536 537 538 539 540 541 542 543
        session.extend(extras)
        session.delegate = self
        session.test_result = @_result

        yield session if block_given?
        session
      end

      # Copy the instance variables from the current session instance into the
      # test instance.
      def copy_session_variables! #:nodoc:
        return unless @integration_session
        %w(controller response request).each do |var|
544
          instance_variable_set("@#{var}", @integration_session.__send__(var))
545 546 547 548 549 550
        end
      end

      # Delegate unhandled messages to the current session instance.
      def method_missing(sym, *args, &block)
        reset! unless @integration_session
551
        returning @integration_session.__send__(sym, *args, &block) do
552 553 554 555
          copy_session_variables!
        end
      end
    end
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
  end

  # An IntegrationTest is one that spans multiple controllers and actions,
  # tying them all together to ensure they work together as expected. It tests
  # more completely than either unit or functional tests do, exercising the
  # entire stack, from the dispatcher to the database.
  #
  # At its simplest, you simply extend IntegrationTest and write your tests
  # using the get/post methods:
  #
  #   require "#{File.dirname(__FILE__)}/test_helper"
  #
  #   class ExampleTest < ActionController::IntegrationTest
  #     fixtures :people
  #
  #     def test_login
  #       # get the login page
  #       get "/login"
  #       assert_equal 200, status
  #
  #       # post the login and follow through to the home page
  #       post "/login", :username => people(:jamis).username,
  #         :password => people(:jamis).password
  #       follow_redirect!
  #       assert_equal 200, status
  #       assert_equal "/home", path
  #     end
  #   end
  #
  # However, you can also have multiple session instances open per test, and
  # even extend those instances with assertions and methods to create a very
  # powerful testing DSL that is specific for your application. You can even
  # reference any named routes you happen to have defined!
  #
  #   require "#{File.dirname(__FILE__)}/test_helper"
  #
  #   class AdvancedTest < ActionController::IntegrationTest
  #     fixtures :people, :rooms
  #
  #     def test_login_and_speak
  #       jamis, david = login(:jamis), login(:david)
  #       room = rooms(:office)
  #
  #       jamis.enter(room)
  #       jamis.speak(room, "anybody home?")
  #
  #       david.enter(room)
  #       david.speak(room, "hello!")
  #     end
  #
  #     private
  #
  #       module CustomAssertions
  #         def enter(room)
  #           # reference a named route, for maximum internal consistency!
  #           get(room_url(:id => room.id))
  #           assert(...)
  #           ...
  #         end
  #
  #         def speak(room, message)
  #           xml_http_request "/say/#{room.id}", :message => message
  #           assert(...)
  #           ...
  #         end
  #       end
  #
  #       def login(who)
  #         open_session do |sess|
  #           sess.extend(CustomAssertions)
  #           who = people(who)
  #           sess.post "/login", :username => who.username,
  #             :password => who.password
  #           assert(...)
  #         end
  #       end
  #   end
633
  class IntegrationTest < ActiveSupport::TestCase
634 635
    include Integration::Runner

636 637 638 639 640 641 642 643
    # Work around a bug in test/unit caused by the default test being named
    # as a symbol (:default_test), which causes regex test filters
    # (like "ruby test.rb -n /foo/") to fail because =~ doesn't work on
    # symbols.
    def initialize(name) #:nodoc:
      super(name.to_s)
    end

644 645 646 647 648
    # Work around test/unit's requirement that every subclass of TestCase have
    # at least one test method. Note that this implementation extends to all
    # subclasses, as well, so subclasses of IntegrationTest may also exist
    # without any test methods.
    def run(*args) #:nodoc:
649
      return if @method_name == "default_test"
650
      super
651 652
    end

653 654 655 656 657
    # Because of how use_instantiated_fixtures and use_transactional_fixtures
    # are defined, we need to treat them as special cases. Otherwise, users
    # would potentially have to set their values for both Test::Unit::TestCase
    # ActionController::IntegrationTest, since by the time the value is set on
    # TestCase, IntegrationTest has already been defined and cannot inherit
658 659
    # changes to those variables. So, we make those two attributes
    # copy-on-write.
660

661
    class << self
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
      def use_transactional_fixtures=(flag) #:nodoc:
        @_use_transactional_fixtures = true
        @use_transactional_fixtures = flag
      end

      def use_instantiated_fixtures=(flag) #:nodoc:
        @_use_instantiated_fixtures = true
        @use_instantiated_fixtures = flag
      end

      def use_transactional_fixtures #:nodoc:
        @_use_transactional_fixtures ?
          @use_transactional_fixtures :
          superclass.use_transactional_fixtures
      end

      def use_instantiated_fixtures #:nodoc:
        @_use_instantiated_fixtures ?
          @use_instantiated_fixtures :
          superclass.use_instantiated_fixtures
      end
    end
684
  end
685
end