module ActionDispatch::Integration::Runner

Constants

APP_SESSIONS

Attributes

app[R]

Public Class Methods

new(*args, &blk) click to toggle source
Calls superclass method
# File lib/action_dispatch/testing/integration.rb, line 324
def initialize(*args, &blk)
  super(*args, &blk)
  @integration_session = nil
end

Public Instance Methods

create_session(app) click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 344
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() click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 413
def default_url_options
  integration_session.default_url_options
end
default_url_options=(options) click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 417
def default_url_options=(options)
  integration_session.default_url_options = options
end
integration_session() click to toggle source
# File lib/action_dispatch/testing/integration.rb, line 334
def integration_session
  @integration_session ||= create_session(app)
end
open_session() { |session| ... } click to toggle source

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 lib/action_dispatch/testing/integration.rb, line 389
def open_session
  dup.tap do |session|
    session.reset!
    session.root_session = self.root_session || self
    yield session if block_given?
  end
end
reset!() click to toggle source

Reset the current session. This is useful for testing multiple sessions in a single test case.

# File lib/action_dispatch/testing/integration.rb, line 340
def reset!
  @integration_session = create_session(app)
end

Private Instance Methods

method_missing(method, *args, &block) click to toggle source

Delegate unhandled messages to the current session instance.

Calls superclass method
# File lib/action_dispatch/testing/integration.rb, line 427
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
respond_to_missing?(method, _) click to toggle source
Calls superclass method
# File lib/action_dispatch/testing/integration.rb, line 422
def respond_to_missing?(method, _)
  integration_session.respond_to?(method) || super
end