Module: ActionDispatch::Integration::Runner

Includes:
Assertions
Included in:
ActionDispatch::IntegrationTest::Behavior
Defined in:
actionpack/lib/action_dispatch/testing/integration.rb

Constant Summary collapse

APP_SESSIONS =
{}

Constants included from Assertions::ResponseAssertions

Assertions::ResponseAssertions::RESPONSE_PREDICATES

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Assertions

#html_document

Methods included from ActiveSupport::Concern

#append_features, #class_methods, extended, #included

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.



426
427
428
429
430
431
432
433
434
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 426

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

#appObject (readonly)

Returns the value of attribute app



322
323
324
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 322

def app
  @app
end

#root_sessionObject

:nodoc:



323
324
325
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 323

def root_session
  @root_session
end

Instance Method Details

#assertionsObject

:nodoc:



396
397
398
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 396

def assertions # :nodoc:
  root_session ? root_session.assertions : super
end

#assertions=(assertions) ⇒ Object

:nodoc:



400
401
402
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 400

def assertions=(assertions) # :nodoc:
  root_session ? root_session.assertions = assertions : super
end

#before_setupObject

:nodoc:



330
331
332
333
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 330

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.



406
407
408
409
410
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 406

def copy_session_variables! #:nodoc:
  @controller = @integration_session.controller
  @response   = @integration_session.response
  @request    = @integration_session.request
end

#create_session(app) ⇒ Object



345
346
347
348
349
350
351
352
353
354
355
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 345

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_optionsObject



412
413
414
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 412

def default_url_options
  integration_session.default_url_options
end

#default_url_options=(options) ⇒ Object



416
417
418
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 416

def default_url_options=(options)
  integration_session.default_url_options = options
end

#initialize(*args, &blk) ⇒ Object



325
326
327
328
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 325

def initialize(*args, &blk)
  super(*args, &blk)
  @integration_session = nil
end

#integration_sessionObject



335
336
337
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 335

def integration_session
  @integration_session ||= create_session(app)
end

#open_sessionObject

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.



388
389
390
391
392
393
394
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 388

def open_session
  dup.tap do |session|
    session.reset!
    session.root_session = self.root_session || self
    yield session if block_given?
  end
end

#remove!Object

:nodoc:



357
358
359
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 357

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.



341
342
343
# File 'actionpack/lib/action_dispatch/testing/integration.rb', line 341

def reset!
  @integration_session = create_session(app)
end