Module: ActionDispatch::Integration::Runner
- Includes:
- Assertions
- Included in:
- ActionDispatch::IntegrationTest::Behavior
- Defined in:
- lib/action_dispatch/testing/integration.rb
Constant Summary collapse
- APP_SESSIONS =
{}
Constants included from Assertions::ResponseAssertions
Assertions::ResponseAssertions::RESPONSE_PREDICATES
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
Instance Method Summary collapse
-
#before_setup ⇒ Object
:nodoc:.
-
#copy_session_variables! ⇒ Object
Copy the instance variables from the current session instance into the test instance.
- #create_session(app) ⇒ Object
- #default_url_options ⇒ Object
- #default_url_options=(options) ⇒ Object
- #initialize(*args, &blk) ⇒ Object
- #integration_session ⇒ Object
-
#open_session ⇒ Object
Open a new session instance.
-
#remove! ⇒ Object
:nodoc:.
-
#reset! ⇒ Object
Reset the current session.
Methods included from Assertions
Methods included from Assertions::RoutingAssertions
#assert_generates, #assert_recognizes, #assert_routing, #setup, #with_routing
Methods included from Assertions::ResponseAssertions
#assert_redirected_to, #assert_response
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object (private)
Delegate unhandled messages to the current session instance.
402 403 404 405 406 407 408 409 410 |
# File 'lib/action_dispatch/testing/integration.rb', line 402 def method_missing(method, *args, &block) if integration_session.respond_to?(method) integration_session.public_send(method, *args, &block).tap do copy_session_variables! end else super end end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
312 313 314 |
# File 'lib/action_dispatch/testing/integration.rb', line 312 def app @app end |
Instance Method Details
#before_setup ⇒ Object
:nodoc:
319 320 321 322 |
# File 'lib/action_dispatch/testing/integration.rb', line 319 def before_setup # :nodoc: @app = nil super end |
#copy_session_variables! ⇒ Object
Copy the instance variables from the current session instance into the test instance.
382 383 384 385 386 |
# File 'lib/action_dispatch/testing/integration.rb', line 382 def copy_session_variables! #:nodoc: @controller = @integration_session.controller @response = @integration_session.response @request = @integration_session.request end |
#create_session(app) ⇒ Object
334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/action_dispatch/testing/integration.rb', line 334 def create_session(app) klass = APP_SESSIONS[app] ||= Class.new(Integration::Session) { # If the app is a Rails app, make url_helpers available on the session. # This makes app.url_for and app.foo_path available in the console. if app.respond_to?(:routes) && app.routes.is_a?(ActionDispatch::Routing::RouteSet) include app.routes.url_helpers include app.routes.mounted_helpers end } klass.new(app) end |
#default_url_options ⇒ Object
388 389 390 |
# File 'lib/action_dispatch/testing/integration.rb', line 388 def integration_session. end |
#default_url_options=(options) ⇒ Object
392 393 394 |
# File 'lib/action_dispatch/testing/integration.rb', line 392 def () integration_session. = end |
#initialize(*args, &blk) ⇒ Object
314 315 316 317 |
# File 'lib/action_dispatch/testing/integration.rb', line 314 def initialize(*args, &blk) super(*args, &blk) @integration_session = nil end |
#integration_session ⇒ Object
324 325 326 |
# File 'lib/action_dispatch/testing/integration.rb', line 324 def integration_session @integration_session ||= create_session(app) end |
#open_session ⇒ Object
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.
373 374 375 376 377 378 |
# File 'lib/action_dispatch/testing/integration.rb', line 373 def open_session dup.tap do |session| session.reset! yield session if block_given? end end |
#remove! ⇒ Object
:nodoc:
346 347 348 |
# File 'lib/action_dispatch/testing/integration.rb', line 346 def remove! # :nodoc: @integration_session = nil end |
#reset! ⇒ Object
Reset the current session. This is useful for testing multiple sessions in a single test case.
330 331 332 |
# File 'lib/action_dispatch/testing/integration.rb', line 330 def reset! @integration_session = create_session(app) end |