Class ActionController::Integration::Session
In: vendor/rails/actionpack/lib/action_controller/integration.rb
Parent: Object

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.

Typically, you will instantiate a new session using IntegrationTest#open_session, rather than instantiating Integration::Session directly.

Methods

Included Modules

Test::Unit::Assertions ActionController::Assertions ActionController::TestProcess ControllerCapture

Attributes

accept  [RW]  The Accept header to send.
controller  [R]  A reference to the controller instance used by the last request.
cookies  [R]  A map of the cookies returned by the last response, and which will be sent with the next request.
headers  [R]  A map of the headers returned by the last response.
host  [RW]  The hostname used in the last request.
path  [R]  The URI of the last request.
remote_addr  [RW]  The remote_addr used in the last request.
request  [R]  A reference to the request instance used by the last request.
request_count  [RW]  A running counter of the number of requests processed.
response  [R]  A reference to the response instance used by the last request.
status  [R]  The integer HTTP status code of the last request.
status_message  [R]  The status message that accompanied the status code of the last request.

Public Class methods

Create and initialize a new Session instance.

[Source]

    # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 58
58:       def initialize
59:         reset!
60:       end

Public Instance methods

Performs a DELETE request with the given parameters. See get() for more details.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 186
186:       def delete(path, parameters = nil, headers = nil)
187:         process :delete, path, parameters, headers
188:       end

Performs a DELETE request, following any subsequent redirect. See request_via_redirect() for more information.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 154
154:       def delete_via_redirect(path, parameters = nil, headers = nil)
155:         request_via_redirect(:delete, path, parameters, headers)
156:       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.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 118
118:       def follow_redirect!
119:         raise "not a redirect! #{@status} #{@status_message}" unless redirect?
120:         get(interpret_uri(headers['location'].first))
121:         status
122:       end

Performs a GET request with the given parameters. The parameters may be nil, a Hash, or a string that is appropriately encoded (application/x-www-form-urlencoded or multipart/form-data). The headers should be a hash. The keys will automatically be upcased, with the prefix ‘HTTP_’ added if needed.

You can also perform POST, PUT, DELETE, and HEAD requests with post, put, delete, and head.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 171
171:       def get(path, parameters = nil, headers = nil)
172:         process :get, path, parameters, headers
173:       end

Performs a GET request, following any subsequent redirect. See request_via_redirect() for more information.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 136
136:       def get_via_redirect(path, parameters = nil, headers = nil)
137:         request_via_redirect(:get, path, parameters, headers)
138:       end

Performs a HEAD request with the given parameters. See get() for more details.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 191
191:       def head(path, parameters = nil, headers = nil)
192:         process :head, path, parameters, headers
193:       end

Set the host name to use in the next request.

  session.host! "www.example.com"

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 111
111:       def host!(name)
112:         @host = name
113:       end

Specify whether or not the session should mimic a secure HTTPS request.

  session.https!
  session.https!(false)

[Source]

    # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 95
95:       def https!(flag=true)
96:         @https = flag
97:       end

Return true if the session is mimicing a secure HTTPS request.

  if session.https?
    ...
  end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 104
104:       def https?
105:         @https
106:       end

Performs a POST request with the given parameters. See get() for more details.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 176
176:       def post(path, parameters = nil, headers = nil)
177:         process :post, path, parameters, headers
178:       end

Performs a POST request, following any subsequent redirect. See request_via_redirect() for more information.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 142
142:       def post_via_redirect(path, parameters = nil, headers = nil)
143:         request_via_redirect(:post, path, parameters, headers)
144:       end

Performs a PUT request with the given parameters. See get() for more details.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 181
181:       def put(path, parameters = nil, headers = nil)
182:         process :put, path, parameters, headers
183:       end

Performs a PUT request, following any subsequent redirect. See request_via_redirect() for more information.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 148
148:       def put_via_redirect(path, parameters = nil, headers = nil)
149:         request_via_redirect(:put, path, parameters, headers)
150:       end

Returns true if the last response was a redirect.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 159
159:       def redirect?
160:         status/100 == 3
161:       end

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.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 128
128:       def request_via_redirect(http_method, path, parameters = nil, headers = nil)
129:         send(http_method, path, parameters, headers)
130:         follow_redirect! while redirect?
131:         status
132:       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!

[Source]

    # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 67
67:       def reset!
68:         @status = @path = @headers = nil
69:         @result = @status_message = nil
70:         @https = false
71:         @cookies = {}
72:         @controller = @request = @response = nil
73:         @request_count = 0
74: 
75:         self.host        = "www.example.com"
76:         self.remote_addr = "127.0.0.1"
77:         self.accept      = "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"
78: 
79:         unless defined? @named_routes_configured
80:           # install the named routes in this session instance.
81:           klass = class<<self; self; end
82:           Routing::Routes.install_helpers(klass)
83: 
84:           # the helpers are made protected by default--we make them public for
85:           # easier access during testing and troubleshooting.
86:           klass.module_eval { public *Routing::Routes.named_routes.helpers }
87:           @named_routes_configured = true
88:         end
89:       end

Returns the URL for the given options, according to the rules specified in the application‘s routes.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 213
213:       def url_for(options)
214:         controller ? controller.url_for(options) : generic_url_rewriter.rewrite(options)
215:       end
xhr(request_method, path, parameters = nil, headers = nil)

Alias for xml_http_request

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.

[Source]

     # File vendor/rails/actionpack/lib/action_controller/integration.rb, line 202
202:       def xml_http_request(request_method, path, parameters = nil, headers = nil)
203:         headers ||= {}
204:         headers['X-Requested-With'] = 'XMLHttpRequest'
205:         headers['Accept'] ||= 'text/javascript, text/html, application/xml, text/xml, */*'
206: 
207:         process(request_method, path, parameters, headers)
208:       end

[Validate]