Sha256: 4abb4eca94aa609e44d40192c285f820b16aa43f6bdaee21348dd7276704f57c
Contents?: true
Size: 1.29 KB
Versions: 11
Compression:
Stored size: 1.29 KB
Contents
require 'delegate' module Restspec module Endpoints # A response is a representation of the triad returned # by the API calls. They represent the status code, the headers # and the response's body. class Response attr_accessor :endpoint, :headers, :code, :raw_body def initialize(code, headers, raw_body) self.headers = headers self.code = code self.raw_body = raw_body end def to_s if endpoint.present? url = endpoint.executed_url || endpoint.full_path "[#{endpoint.method.upcase} to #{url}]" else raw_body end end def read_body(value = parsed_body) case value when Array value.map { |item| read_body(item) } when Hash Values::SuperHash.new(value).tap do |super_hash| super_hash.find do |key, value| if value.class == Array super_hash[key] = read_body(value) end end end else value end end def parsed_body @parsed_body ||= begin JSON.parse(raw_body) rescue JSON::ParserError => e raw_body end end def body @body ||= read_body end end end end
Version data entries
11 entries across 11 versions & 1 rubygems