Sha256: ba951f15708a20d182b4139a4822235e459f175a4c9983ca92a8106af92f9311
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 KB
Contents
require 'net/http' require 'uri' require 'pact' module Pact module Messages module MessageFinder @@pact_broker_url = 'http://pact-broker' module_function def pact_broker_url @@pact_broker_url end def pact_broker_url=(url) @@pact_broker_url = url end def get_message_contract(provider_name, consumer_name, provider_state = nil, contract_uri = nil) contract = get_contract(provider_name, consumer_name, contract_uri) fail "Contract between #{provider_name} and #{consumer_name} not found" unless contract find_response_for_provider_state(contract.interactions, provider_state) end def get_message_sample(provider_name, consumer_name, provider_state = nil, contract_uri = nil) Pact::Reification.from_term(get_message_contract(provider_name, consumer_name, provider_state, contract_uri)) end class << self private def get_contract(provider_name, consumer_name, contract_uri = nil) # search for it locally, if not found look on the pack broker Pact::Messages.consumer_world.find_contract(provider_name, consumer_name) || Pact::ConsumerContract.from_uri(contract_uri || pact_contract_uri(provider_name, consumer_name)) end def pact_contract_uri(provider, consumer) path = URI.encode("pacts/provider/#{provider}/consumer/#{consumer}/latest") URI("#{pact_broker_url}/#{path}") end def find_response_for_provider_state(interactions, state) interaction = interactions.find { |i| i.provider_state == state } unless interaction fail "State #{state} not found among interaction states #{interactions.map(&:provider_state)}" end interaction.response[:body] end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pact-messages-0.1.1 | lib/pact/messages/message_finder.rb |