Sha256: 3f28b7ef174af71ee4d921b5e7f3f1f1e95748421a39e8e3466d2eee9710e0e2

Contents?: true

Size: 1.38 KB

Versions: 7

Compression:

Stored size: 1.38 KB

Contents

require 'pact/something_like'
require 'pact/term'
require 'pact/array_like'

# Protected, exposed through Pact.term and Pact.like, and included in Pact::Consumer::RSpec

module Pact
  module Helpers

    def self.included(base)
      base.extend(self)
    end

    def term arg1, arg2 = nil
      case arg1
      when Hash then Pact::Term.new(arg1)
      when Regexp then Pact::Term.new(matcher: arg1, generate: arg2)
      when String then Pact::Term.new(matcher: arg2, generate: arg1)
      else
        raise ArgumentError, "Cannot create a Pact::Term from arguments #{arg1.inspect} and #{arg2.inspect}. Please provide a Regexp and a String."
      end
    end

    def like content
      Pact::SomethingLike.new(content)
    end

    def each_like content, options = {}
      Pact::ArrayLike.new(content, options)
    end

    def like_uuid uuid
      Pact::Term.new(generate: uuid, matcher: /^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$/)
    end

    def like_datetime datetime
      Pact::Term.new(generate: datetime, matcher: /^\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d([+-][0-2]\d:[0-5]\d|Z)$/)
    end

    def like_datetime_with_miliseconds datetime
      Pact::Term.new(generate: datetime, matcher: /^\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d{3}([+-][0-2]\d:[0-5]\d|Z)$/)
    end

    def like_date date
      Pact::Term.new(generate: date, matcher: /^\d{4}-[01]\d-[0-3]\d$/)
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pact-support-0.6.1 lib/pact/helpers.rb
pact-support-0.6.0 lib/pact/helpers.rb
pact-support-0.5.9 lib/pact/helpers.rb
pact-support-0.5.8 lib/pact/helpers.rb
pact-support-0.5.7 lib/pact/helpers.rb
pact-support-0.5.5 lib/pact/helpers.rb
pact-support-0.5.4 lib/pact/helpers.rb