Module: Pact::Reification

Includes:
ActiveSupportSupport
Defined in:
lib/pact/reification.rb

Class Method Summary collapse

Methods included from ActiveSupportSupport

#fix_all_the_things, #fix_json_formatting, #fix_regexp, #remove_unicode

Class Method Details

.escape(str) ⇒ Object



46
47
48
# File 'lib/pact/reification.rb', line 46

def self.escape(str)
  URI.encode_www_form_component(str)
end

.from_term(term) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/pact/reification.rb', line 14

def self.from_term(term)
  case term
  when Pact::Term, Regexp, Pact::SomethingLike, Pact::ArrayLike
    from_term(term.generate)
  when Hash
    term.inject({}) do |mem, (key,t)|
      mem[key] = from_term(t)
      mem
    end
  when Array
    term.map{ |t| from_term(t)}
  when Pact::Request::Base
    from_term(term.to_hash)
  when Pact::QueryString
    from_term(term.query)
  when Pact::QueryHash
    from_term(term.query).map { |k, v|
      if v.nil?
        k
      elsif v.is_a?(Array) #For cases where there are multiple instance of the same parameter
        v.map { |x| "#{k}=#{escape(x)}"}.join('&')
      else
        "#{k}=#{escape(v)}"
      end
    }.join('&')
  when Pact::StringWithMatchingRules
    String.new(term)
  else
    term
  end
end