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
- #integration_session ⇒ Object
-
#method_missing(sym, *args, &block) ⇒ Object
Delegate unhandled messages to the current session instance.
-
#open_session ⇒ Object
Open a new session instance.
-
#remove! ⇒ Object
:nodoc:.
-
#reset! ⇒ Object
Reset the current session.
- #respond_to?(method, include_private = false) ⇒ Boolean
Methods included from Assertions
Methods included from Assertions::RoutingAssertions
#assert_generates, #assert_recognizes, #assert_routing, #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(sym, *args, &block) ⇒ Object
Delegate unhandled messages to the current session instance.
540 541 542 543 544 545 546 547 548 |
# File 'lib/action_dispatch/testing/integration.rb', line 540 def method_missing(sym, *args, &block) if integration_session.respond_to?(sym) integration_session.__send__(sym, *args, &block).tap do copy_session_variables! end else super end end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
455 456 457 |
# File 'lib/action_dispatch/testing/integration.rb', line 455 def app @app end |
Instance Method Details
#before_setup ⇒ Object
:nodoc:
457 458 459 460 461 |
# File 'lib/action_dispatch/testing/integration.rb', line 457 def before_setup # :nodoc: @app = nil @integration_session = nil super end |
#copy_session_variables! ⇒ Object
Copy the instance variables from the current session instance into the test instance.
521 522 523 524 525 |
# File 'lib/action_dispatch/testing/integration.rb', line 521 def copy_session_variables! #:nodoc: @controller = @integration_session.controller @response = @integration_session.response @request = @integration_session.request end |
#create_session(app) ⇒ Object
473 474 475 476 477 478 479 480 481 482 483 |
# File 'lib/action_dispatch/testing/integration.rb', line 473 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) include app.routes.url_helpers include app.routes.mounted_helpers end } klass.new(app) end |
#default_url_options ⇒ Object
527 528 529 |
# File 'lib/action_dispatch/testing/integration.rb', line 527 def integration_session. end |
#default_url_options=(options) ⇒ Object
531 532 533 |
# File 'lib/action_dispatch/testing/integration.rb', line 531 def () integration_session. = end |
#integration_session ⇒ Object
463 464 465 |
# File 'lib/action_dispatch/testing/integration.rb', line 463 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.
513 514 515 516 517 |
# File 'lib/action_dispatch/testing/integration.rb', line 513 def open_session dup.tap do |session| yield session if block_given? end end |
#remove! ⇒ Object
:nodoc:
485 486 487 |
# File 'lib/action_dispatch/testing/integration.rb', line 485 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.
469 470 471 |
# File 'lib/action_dispatch/testing/integration.rb', line 469 def reset! @integration_session = create_session(app) end |
#respond_to?(method, include_private = false) ⇒ Boolean
535 536 537 |
# File 'lib/action_dispatch/testing/integration.rb', line 535 def respond_to?(method, include_private = false) integration_session.respond_to?(method, include_private) || super end |