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, #warn_about_regexp

Class Method Details

.escape(str) ⇒ Object



52
53
54
# File 'lib/pact/reification.rb', line 52

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
45
46
47
48
49
50
# File 'lib/pact/reification.rb', line 14

def self.from_term(term)
  case term
  when Pact::Term, Pact::SomethingLike, Pact::ArrayLike
    from_term(term.generate)
  when Regexp
    from_term(Expgen.gen(term))
  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
    if term.original_string
      term.original_string
    else
      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('&')
    end
  when Pact::StringWithMatchingRules
    String.new(term)
  else
    term
  end
end