Sha256: 5a02dbc53e30f3604f984e30cef0686ec0929dd37341f822cb8a0d0b48c5be1c

Contents?: true

Size: 1.71 KB

Versions: 22

Compression:

Stored size: 1.71 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

    def like_datetime_rfc822 datetime
      Pact::Term.new(
        generate: datetime,
        matcher: /(?x)(Mon|Tue|Wed|Thu|Fri|Sat|Sun),
                        \s\d{2}\s
                        (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)
                        \s\d{4}\s\d{2}:\d{2}:\d{2}\s(\+|-)\d{4}/
      )
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
pact-support-1.3.1 lib/pact/helpers.rb
pact-support-1.3.0 lib/pact/helpers.rb
pact-support-1.2.99.alpha.1 lib/pact/helpers.rb
pact-support-1.3.0.alpha.2 lib/pact/helpers.rb
pact-support-1.3.0.alpha.1 lib/pact/helpers.rb
pact-support-1.2.5 lib/pact/helpers.rb
pact-support-1.2.4 lib/pact/helpers.rb
pact-support-1.2.3 lib/pact/helpers.rb
pact-support-1.2.2 lib/pact/helpers.rb
pact-support-1.2.1 lib/pact/helpers.rb
pact-support-1.2.0 lib/pact/helpers.rb
pact-support-1.1.8 lib/pact/helpers.rb
pact-support-1.1.7 lib/pact/helpers.rb
pact-support-1.1.6 lib/pact/helpers.rb
pact-support-1.1.5 lib/pact/helpers.rb
pact-support-1.1.4 lib/pact/helpers.rb
pact-support-1.1.3 lib/pact/helpers.rb
pact-support-1.1.2 lib/pact/helpers.rb
pact-support-1.1.1 lib/pact/helpers.rb
pact-support-1.1.0 lib/pact/helpers.rb