Skip to content

Commit c4f968e

Browse files
committed
fix: correct logic for determining if all interactions for a pact have been verified
Closes: #221
1 parent 0813498 commit c4f968e

File tree

5 files changed

+39
-30
lines changed

5 files changed

+39
-30
lines changed

lib/pact/provider/pact_source.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require 'pact/consumer_contract/pact_file'
22
require 'pact/hal/http_client'
33
require 'pact/hal/entity'
4+
require 'pact/consumer_contract'
45

56
module Pact
67
module Provider
@@ -24,6 +25,10 @@ def pending?
2425
uri.metadata[:pending]
2526
end
2627

28+
def consumer_contract
29+
@consumer_contract ||= Pact::ConsumerContract.from_json(pact_json)
30+
end
31+
2732
def hal_entity
2833
http_client_keys = [:username, :password, :token]
2934
http_client_options = uri.options.reject{ |k, _| !http_client_keys.include?(k) }

lib/pact/provider/verification_results/create.rb

+17-13
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,23 @@ def any_failures?
2828
end
2929

3030
def publishable?
31-
executed_interactions_count == all_interactions_count && all_interactions_count > 0
31+
if defined?(@publishable)
32+
@publishable
33+
else
34+
@publishable = pact_source.consumer_contract.interactions.all? do | interaction |
35+
examples_for_pact_uri.any?{ |e| example_is_for_interaction?(e, interaction) }
36+
end && examples_for_pact_uri.count > 0
37+
end
38+
end
39+
40+
def example_is_for_interaction?(example, interaction)
41+
# Use the Pact Broker id if supported
42+
if interaction._id
43+
example[:pact_interaction]._id == interaction._id
44+
else
45+
# fall back to object equality (based on the field values of the interaction)
46+
example[:pact_interaction] == interaction
47+
end
3248
end
3349

3450
def examples_for_pact_uri
@@ -39,18 +55,6 @@ def count_failures_for_pact_uri
3955
examples_for_pact_uri.count{ |e| e[:status] != 'passed' }
4056
end
4157

42-
def executed_interactions_count
43-
examples_for_pact_uri
44-
.collect { |e| e[:pact_interaction].object_id }
45-
.uniq
46-
.count
47-
end
48-
49-
def all_interactions_count
50-
interactions = (pact_source.pact_hash['interactions'] || pact_source.pact_hash['messages'])
51-
interactions ? interactions.count : 0
52-
end
53-
5458
def test_results_hash_for_pact_uri
5559
{
5660
tests: examples_for_pact_uri.collect{ |e| clean_example(e) },

pact.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |gem|
3232
gem.add_runtime_dependency 'webrick', '~> 1.3'
3333
gem.add_runtime_dependency 'term-ansicolor', '~> 1.0'
3434

35-
gem.add_runtime_dependency 'pact-support', '~> 1.9'
35+
gem.add_runtime_dependency 'pact-support', '~> 1.15'
3636
gem.add_runtime_dependency 'pact-mock_service', '~> 3.0', '>= 3.3.1'
3737

3838
gem.add_development_dependency 'rake', '~> 13.0'

spec/integration/publish_verification_spec.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
require 'pact/provider/pact_uri'
33

44
describe "publishing verifications" do
5-
65
before do
76
allow(Pact.configuration).to receive(:provider).and_return(provider_configuration)
87
allow($stdout).to receive(:puts)
@@ -16,13 +15,16 @@
1615
end
1716

1817
let(:pact_sources) do
19-
[instance_double('Pact::Provider::PactSource', pact_hash: pact_hash, uri: pact_uri)]
18+
[instance_double('Pact::Provider::PactSource', consumer_contract: consumer_contract, pact_hash: pact_hash, uri: pact_uri)]
2019
end
2120

2221
let(:pact_uri) do
2322
instance_double('Pact::Provider::PactURI', uri: 'pact.json', options: {}, metadata: metadata)
2423
end
2524

25+
let(:consumer_contract) { instance_double('Pact::ConsumerContract', interactions: [pact_interaction])}
26+
let(:pact_interaction) { instance_double('Pact::Interaction', _id: "1") }
27+
2628
let(:metadata) { { notices: notices} }
2729
let(:notices) { instance_double('Pact::PactBroker::Notices', after_verification_notices_text: ['hello'] ) }
2830

@@ -53,7 +55,8 @@
5355
{
5456
testDescription: '1',
5557
status: 'passed',
56-
pact_uri: pact_uri
58+
pact_uri: pact_uri,
59+
pact_interaction: pact_interaction
5760
}
5861
]
5962
}

spec/lib/pact/provider/verification_results/create_spec.rb

+10-13
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,25 @@ module VerificationResults
1414
double('provider_configuration', application_version: '1.2.3')
1515
end
1616
let(:pact_source_1) do
17-
instance_double('Pact::Provider::PactSource', uri: pact_uri_1, pact_hash: pact_hash_1)
17+
instance_double('Pact::Provider::PactSource', uri: pact_uri_1, consumer_contract: consumer_contract)
1818
end
19+
let(:consumer_contract) { instance_double('Pact::ConsumerContract', interactions: interactions)}
20+
let(:interactions) { [interaction_1] }
21+
let(:interaction_1) { instance_double('Pact::Interaction', _id: "1") }
22+
let(:interaction_2) { instance_double('Pact::Interaction', _id: "2") }
1923
let(:pact_uri_1) { instance_double('Pact::Provider::PactURI', uri: URI('foo')) }
2024
let(:pact_uri_2) { instance_double('Pact::Provider::PactURI', uri: URI('bar')) }
2125
let(:example_1) do
2226
{
2327
pact_uri: pact_uri_1,
24-
pact_interaction: double('interaction'),
28+
pact_interaction: interaction_1,
2529
status: 'passed'
2630
}
2731
end
2832
let(:example_2) do
2933
{
3034
pact_uri: pact_uri_2,
31-
pact_interaction: double('interaction'),
35+
pact_interaction: interaction_2,
3236
status: 'passed'
3337
}
3438
end
@@ -37,11 +41,6 @@ module VerificationResults
3741
tests: [example_1, example_2]
3842
}
3943
end
40-
let(:pact_hash_1) do
41-
{
42-
'interactions' => [{}]
43-
}
44-
end
4544

4645
subject { Create.call(pact_source_1, test_results_hash) }
4746

@@ -78,11 +77,9 @@ module VerificationResults
7877
end
7978

8079
context "when not every interaction has been executed" do
81-
let(:pact_hash_1) do
82-
{
83-
'interactions' => [{}, {}]
84-
}
85-
end
80+
let(:interaction_3) { instance_double('Pact::Interaction', _id: "3") }
81+
let(:interactions) { [interaction_1, interaction_2]}
82+
8683
it "sets publishable to false" do
8784
expect(VerificationResult).to receive(:new).with(false, anything, anything, anything)
8885
subject

0 commit comments

Comments
 (0)