Class: ActionDispatch::AssertionResponse

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/testing/assertion_response.rb

Overview

This is a class that abstracts away an asserted response. It purposely does not inherit from Response because it doesn’t need it. That means it does not have headers or a body.

Constant Summary collapse

GENERIC_RESPONSE_CODES =

:nodoc:

{ # :nodoc:
  success: "2XX",
  missing: "404",
  redirect: "3XX",
  error: "5XX"
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code_or_name) ⇒ AssertionResponse

Accepts a specific response status code as an Integer (404) or String (‘404’) or a response status range as a Symbol pseudo-code (:success, indicating any 200-299 status code).

Raises:

  • (ArgumentError)


20
21
22
23
24
25
26
27
28
29
30
31
# File 'actionpack/lib/action_dispatch/testing/assertion_response.rb', line 20

def initialize(code_or_name)
  if code_or_name.is_a?(Symbol)
    @name = code_or_name
    @code = code_from_name(code_or_name)
  else
    @name = name_from_code(code_or_name)
    @code = code_or_name
  end

  raise ArgumentError, "Invalid response name: #{name}" if @code.nil?
  raise ArgumentError, "Invalid response code: #{code}" if @name.nil?
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code



8
9
10
# File 'actionpack/lib/action_dispatch/testing/assertion_response.rb', line 8

def code
  @code
end

#nameObject (readonly)

Returns the value of attribute name



8
9
10
# File 'actionpack/lib/action_dispatch/testing/assertion_response.rb', line 8

def name
  @name
end

Instance Method Details

#code_and_nameObject



33
34
35
# File 'actionpack/lib/action_dispatch/testing/assertion_response.rb', line 33

def code_and_name
  "#{code}: #{name}"
end