Sha256: f11890d2f06c85b881a71b7963f342dc599219571223b873aa87a3043a6a6349

Contents?: true

Size: 1.33 KB

Versions: 23

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true

# :markup: markdown

module ActionDispatch
  # 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.
  class AssertionResponse
    attr_reader :code, :name

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

    # 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).
    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

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

    private
      def code_from_name(name)
        GENERIC_RESPONSE_CODES[name] || Rack::Utils.status_code(name)
      end

      def name_from_code(code)
        GENERIC_RESPONSE_CODES.invert[code] || Rack::Utils::HTTP_STATUS_CODES[code]
      end
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
actionpack-8.0.1 lib/action_dispatch/testing/assertion_response.rb
actionpack-8.0.0.1 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.2.1 lib/action_dispatch/testing/assertion_response.rb
actionpack-8.0.0 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.2 lib/action_dispatch/testing/assertion_response.rb
actionpack-8.0.0.rc2 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.1.2 lib/action_dispatch/testing/assertion_response.rb
actionpack-8.0.0.rc1 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.1.1 lib/action_dispatch/testing/assertion_response.rb
actionpack-8.0.0.beta1 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha9 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha8 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha7 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha4 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha3 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha2 lib/action_dispatch/testing/assertion_response.rb
omg-actionpack-8.0.0.alpha1 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.1 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.0 lib/action_dispatch/testing/assertion_response.rb
actionpack-7.2.0.rc1 lib/action_dispatch/testing/assertion_response.rb