Sha256: 0caad03ab45aaa66271d11a9175d37dc789c3ff8ebb2d68a11159eb1e8c21959
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 KB
Contents
require 'pact/matchers' require 'pact/symbolize_keys' module Pact module Request class Base include Pact::Matchers include Pact::SymbolizeKeys extend Pact::Matchers attr_reader :method, :path, :headers, :body, :query, :options def initialize(method, path, headers, body, query) @method = method.to_s @path = path.chomp('/') @headers = headers @body = body @query = query end def to_json(options = {}) as_json.to_json(options) end def as_json options = {} to_hash end def to_hash hash = { method: method, path: path, } hash.merge!(query: query) unless query.is_a? self.class.key_not_found.class hash.merge!(headers: headers) unless headers.is_a? self.class.key_not_found.class hash.merge!(body: body) unless body.is_a? self.class.key_not_found.class hash end def method_and_path "#{method.upcase} #{display_path}" end def full_path display_path + display_query end protected def self.key_not_found raise NotImplementedError end def to_hash_without_body keep_keys = [:method, :path, :headers, :query] as_json.reject{ |key, value| !keep_keys.include? key } end def display_path path.empty? ? "/" : path end def display_query (query.nil? || query.empty?) ? '' : "?#{Pact::Reification.from_term(query)}" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pact-1.1.0 | lib/pact/shared/request.rb |
pact-1.1.0.rc5 | lib/pact/shared/request.rb |
pact-1.1.0.rc4 | lib/pact/shared/request.rb |