Skip to content

Commit ce1c9bc

Browse files
authored
feat: provide configuration for build url to be published in verification results (#252)
1 parent 0dc6371 commit ce1c9bc

File tree

8 files changed

+50
-16
lines changed

8 files changed

+50
-16
lines changed

lib/pact/provider/configuration/service_provider_config.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ module Configuration
44
class ServiceProviderConfig
55

66
attr_accessor :application_version
7-
attr_reader :branch
7+
attr_reader :branch, :build_url
88

9-
def initialize application_version, branch, tags, publish_verification_results, &app_block
9+
def initialize application_version, branch, tags, publish_verification_results, build_url, &app_block
1010
@application_version = application_version
1111
@branch = branch
1212
@tags = [*tags]
1313
@publish_verification_results = publish_verification_results
1414
@app_block = app_block
15+
@build_url = build_url
1516
end
1617

1718
def app

lib/pact/provider/configuration/service_provider_dsl.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ServiceProviderDSL
1515

1616
extend Pact::DSL
1717

18-
attr_accessor :name, :app_block, :application_version, :branch, :tags, :publish_verification_results
18+
attr_accessor :name, :app_block, :application_version, :branch, :tags, :publish_verification_results, :build_url
1919

2020
CONFIG_RU_APP = lambda {
2121
unless File.exist? Pact.configuration.config_ru_path
@@ -48,6 +48,10 @@ def app_version_branch branch
4848
self.branch = branch
4949
end
5050

51+
def build_url build_url
52+
self.build_url = build_url
53+
end
54+
5155
def publish_verification_results publish_verification_results
5256
self.publish_verification_results = publish_verification_results
5357
Pact::RSpec.with_rspec_2 do
@@ -89,7 +93,7 @@ def application_version_blank?
8993
end
9094

9195
def create_service_provider
92-
Pact.configuration.provider = ServiceProviderConfig.new(application_version, branch, tags, publish_verification_results, &@app_block)
96+
Pact.configuration.provider = ServiceProviderConfig.new(application_version, branch, tags, publish_verification_results, build_url, &@app_block)
9397
end
9498
end
9599
end

lib/pact/provider/verification_results/create.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ def initialize pact_source, test_results_hash
1414
end
1515

1616
def call
17-
VerificationResult.new(publishable?, !any_failures?, Pact.configuration.provider.application_version, test_results_hash_for_pact_uri)
17+
VerificationResult.new(
18+
publishable?,
19+
!any_failures?,
20+
Pact.configuration.provider.application_version,
21+
test_results_hash_for_pact_uri,
22+
Pact.configuration.provider.build_url
23+
)
1824
end
1925

2026
private

lib/pact/provider/verification_results/verification_result.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ module VerificationResults
66
class VerificationResult
77
attr_reader :success, :provider_application_version, :test_results_hash
88

9-
def initialize publishable, success, provider_application_version, test_results_hash
9+
def initialize publishable, success, provider_application_version, test_results_hash, build_url
1010
@publishable = publishable
1111
@success = success
1212
@provider_application_version = provider_application_version
1313
@test_results_hash = test_results_hash
14+
@build_url = build_url
1415
end
1516

1617
def publishable?
@@ -25,7 +26,8 @@ def to_json(options = {})
2526
{
2627
success: success,
2728
providerApplicationVersion: provider_application_version,
28-
testResults: test_results_hash
29+
testResults: test_results_hash,
30+
buildUrl: @build_url
2931
}.to_json(options)
3032
end
3133

spec/integration/publish_verification_spec.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
application_version: '1.2.3',
1313
publish_verification_results?: true,
1414
branch: nil,
15-
tags: [])
15+
tags: [],
16+
build_url: 'http://ci/build/1')
1617
end
1718

1819
let(:pact_sources) do

spec/lib/pact/provider/configuration/service_provider_config_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module Configuration
88

99
let(:app_block) { ->{ Object.new } }
1010

11-
subject { ServiceProviderConfig.new("1.2.3'", "main", [], true, &app_block) }
11+
subject { ServiceProviderConfig.new("1.2.3'", "main", [], true, 'http://ci/build/1', &app_block) }
1212

1313
it "should execute the app_block each time" do
1414
expect(subject.app.object_id).to_not equal(subject.app.object_id)

spec/lib/pact/provider/configuration/service_provider_dsl_spec.rb

+13
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,19 @@ module Configuration
2525
end
2626
end
2727

28+
context 'with build_url' do
29+
subject(:config_build_url) { Pact.configuration.provider.build_url }
30+
let(:ci_build_url) { 'http://ci/build/1' }
31+
32+
before do
33+
ServiceProviderDSL.build 'name' do
34+
build_url ci_build_url
35+
end
36+
end
37+
38+
it { is_expected.to eq(ci_build_url) }
39+
end
40+
2841
end
2942

3043
describe "validate" do

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ module VerificationResults
1111

1212
let(:verification_result) { double('VerificationResult') }
1313
let(:provider_configuration) do
14-
double('provider_configuration', application_version: '1.2.3')
14+
double('provider_configuration', application_version: '1.2.3', build_url: ci_build)
1515
end
16+
let(:ci_build) { 'http://ci/build/1' }
1617
let(:pact_source_1) do
1718
instance_double('Pact::Provider::PactSource', uri: pact_uri_1, consumer_contract: consumer_contract)
1819
end
@@ -59,19 +60,25 @@ module VerificationResults
5960
}
6061
}
6162
}
62-
expect(VerificationResult).to receive(:new).with(anything, anything, anything, expected_test_results_hash)
63+
expect(VerificationResult).to receive(:new).with(anything, anything, anything, expected_test_results_hash, anything)
6364
subject
6465
end
6566

6667
it "creates a VerificationResult with the provider application version" do
6768
expect(provider_configuration).to receive(:application_version)
68-
expect(VerificationResult).to receive(:new).with(anything, anything, '1.2.3', anything)
69+
expect(VerificationResult).to receive(:new).with(anything, anything, '1.2.3', anything, anything)
70+
subject
71+
end
72+
73+
it "creates a VerificationResult with the provider ci build url" do
74+
expect(provider_configuration).to receive(:build_url)
75+
expect(VerificationResult).to receive(:new).with(anything, anything, anything, anything, ci_build)
6976
subject
7077
end
7178

7279
context "when every interaction has been executed" do
7380
it "sets publishable to true" do
74-
expect(VerificationResult).to receive(:new).with(true, anything, anything, anything)
81+
expect(VerificationResult).to receive(:new).with(true, anything, anything, anything, anything)
7582
subject
7683
end
7784
end
@@ -81,14 +88,14 @@ module VerificationResults
8188
let(:interactions) { [interaction_1, interaction_2]}
8289

8390
it "sets publishable to false" do
84-
expect(VerificationResult).to receive(:new).with(false, anything, anything, anything)
91+
expect(VerificationResult).to receive(:new).with(false, anything, anything, anything, anything)
8592
subject
8693
end
8794
end
8895

8996
context "when all the examples passed" do
9097
it "sets the success to true" do
91-
expect(VerificationResult).to receive(:new).with(anything, true, anything, anything)
98+
expect(VerificationResult).to receive(:new).with(anything, true, anything, anything, anything)
9299
subject
93100
end
94101
end
@@ -99,7 +106,7 @@ module VerificationResults
99106
end
100107

101108
it "sets the success to false" do
102-
expect(VerificationResult).to receive(:new).with(anything, false, anything, anything)
109+
expect(VerificationResult).to receive(:new).with(anything, false, anything, anything, anything)
103110
subject
104111
end
105112

0 commit comments

Comments
 (0)