Sha256: d35dfa8913f5f2ed7c6560f83aea1c64aa38949919f5a7be4b16bc8c4aeb2ef2

Contents?: true

Size: 1.52 KB

Versions: 1

Compression:

Stored size: 1.52 KB

Contents

require 'rake/tasklib'
require 'pact/provider/pact_spec_runner'
require_relative 'pact_task_helper'

=begin
	To create a rake pact:verify:<something> task

	Pact::VerificationTask.new(:head) do | pact |
	  pact.uri 'http://master.cd.vpc.realestate.com.au/browse/BIQ-MAS/latestSuccessful/artifact/JOB2/Pacts/mas-contract_transaction_service.json',
	              support_file: './spec/consumers/pact_helper'
    pact.uri 'http://master.cd.vpc.realestate.com.au/browse/BIQ-IMAGINARY-CONSUMER/latestSuccessful/artifact/JOB2/Pacts/imaginary_consumer-contract_transaction_service.json',
                support_file: './spec/consumers/pact_helper'
	end

	The pact.uri may be a local file system path or a remote URL.
	The support_file should include code that makes your rack app available for the rack testing framework.
	Eg.

	Pact.service_provider "My Provider" do
		app { TestApp.new }
	end

	It should also load all your app's dependencies (eg by calling out to spec_helper)

=end


module Pact
	class VerificationTask < ::Rake::TaskLib
	  attr_reader :pact_spec_config

	  include PactTaskHelper
	  def initialize(name)
	    @pact_spec_config = []

	    yield self

	    namespace :pact do

	      desc "Verify provider against the consumer pacts for #{name}"
	      task "verify:#{name}" do
	        exit_status = Provider::PactSpecRunner.run(pact_spec_config)
	        fail failure_message if exit_status != 0
	      end
	    end
	  end

	  def uri(uri, options)
	    @pact_spec_config << {uri: uri, support_file: options[:support_file]}
	  end
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pact-1.0.2 lib/pact/verification_task.rb