Module: ActionDispatch::Integration::Runner
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
self,
::ActionDispatch::Assertions ,
Rails::Dom::Testing::Assertions,
::ActionDispatch::Assertions::RoutingAssertions ,
::ActionDispatch::Assertions::ResponseAssertions
|
|
Defined in: | actionpack/lib/action_dispatch/testing/integration.rb |
Constant Summary
-
APP_SESSIONS =
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 328{}
Instance Attribute Summary
- #app readonly
- #default_url_options rw
- #default_url_options=(options) rw
Instance Method Summary
- #create_session(app)
- #initialize(*args, &blk)
- #integration_session
-
#open_session
Open a new session instance.
-
#reset!
Reset the current session.
::ActionDispatch::Assertions
- Included
::ActionDispatch::Assertions::RoutingAssertions
- Included
#assert_generates | Asserts that the provided options can be used to generate the provided path. |
#assert_recognizes | Asserts that the routing of the given |
#assert_routing | Asserts that path and options match both ways; in other words, it verifies that |
#method_missing | ROUTES TODO: These assertions should really work in an integration context. |
#with_routing | A helper to make it easier to test different route configurations. |
::ActionDispatch::Assertions::ResponseAssertions
- Included
#assert_redirected_to | Asserts that the response is a redirect to a URL matching the given options. |
#assert_response | Asserts that the response is one of the following types: |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) (private)
Delegate unhandled messages to the current session instance.
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 434
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 (readonly)
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 330
attr_reader :app
#default_url_options (rw)
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 420
def integration_session. end
#default_url_options=(options) (rw)
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 424
def ( ) integration_session. = end
Instance Method Details
#create_session(app)
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 353
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
#initialize(*args, &blk)
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 333
def initialize(*args, &blk) super(*args, &blk) @integration_session = nil end
#integration_session
[ GitHub ]# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 343
def integration_session @integration_session ||= create_session(app) end
#open_session
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.
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 396
def open_session dup.tap do |session| session.reset! session.root_session = self.root_session || self yield session if block_given? end end
#reset!
Reset the current session. This is useful for testing multiple sessions in a single test case.
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 349
def reset! @integration_session = create_session(app) end