Skip to content

Commit d2da13e

Browse files
fix: fix integration with pact-message-ruby (#216)
1 parent f8a0c11 commit d2da13e

File tree

2 files changed

+225
-0
lines changed

2 files changed

+225
-0
lines changed

lib/pact/provider/configuration/message_provider_dsl.rb

+27
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,33 @@ def initialize name
2222
end
2323

2424
dsl do
25+
def app &block
26+
self.app_block = block
27+
end
28+
29+
def app_version application_version
30+
self.application_version = application_version
31+
end
32+
33+
def app_version_tags tags
34+
self.tags = tags
35+
end
36+
37+
def publish_verification_results publish_verification_results
38+
self.publish_verification_results = publish_verification_results
39+
Pact::RSpec.with_rspec_2 do
40+
Pact.configuration.error_stream.puts "WARN: Publishing of verification results is currently not supported with rspec 2. If you would like this functionality, please feel free to submit a PR!"
41+
end
42+
end
43+
44+
def honours_pact_with consumer_name, options = {}, &block
45+
create_pact_verification consumer_name, options, &block
46+
end
47+
48+
def honours_pacts_from_pact_broker &block
49+
create_pact_verification_from_broker &block
50+
end
51+
2552
def builder &block
2653
self.app_block = lambda { RackToMessageAdapter.new(block) }
2754
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
require "spec_helper"
2+
require "pact/provider/configuration/service_provider_dsl"
3+
require "pact/provider/pact_uri"
4+
require "pact/pact_broker/fetch_pacts"
5+
6+
module Pact
7+
module Provider
8+
module Configuration
9+
describe MessageProviderDSL do
10+
describe "initialize" do
11+
context "with an object instead of a block" do
12+
subject do
13+
described_class.build "name" do
14+
app "blah"
15+
end
16+
end
17+
18+
it "raises an error" do
19+
expect { subject }.to raise_error /wrong number of arguments/
20+
end
21+
end
22+
23+
end
24+
25+
describe "validate" do
26+
context "when no name is provided" do
27+
subject do
28+
described_class.new " " do
29+
app { Object.new }
30+
end
31+
end
32+
33+
it "raises an error" do
34+
expect { subject.send(:validate) }.to raise_error("Please provide a name for the Provider")
35+
end
36+
end
37+
38+
context "when nil name is provided" do
39+
subject do
40+
described_class.new nil do
41+
app { Object.new }
42+
end
43+
end
44+
45+
it "raises an error" do
46+
expect { subject.send(:validate) }.to raise_error(Pact::Provider::Configuration::Error, "Please provide a name for the Provider")
47+
end
48+
end
49+
50+
context "when publish_verification_results is true" do
51+
context "when no application version is provided" do
52+
subject do
53+
described_class.build "name" do
54+
publish_verification_results true
55+
end
56+
end
57+
58+
it "raises an error" do
59+
expect { subject.send(:validate) }.to raise_error(Pact::Provider::Configuration::Error, "Please set the app_version when publish_verification_results is true")
60+
end
61+
end
62+
63+
context "when an application version is provided" do
64+
subject do
65+
described_class.build "name" do
66+
app_version "1.2.3"
67+
publish_verification_results true
68+
end
69+
end
70+
71+
it "does not raise an error" do
72+
expect { subject.send(:validate) }.to_not raise_error
73+
end
74+
end
75+
end
76+
end
77+
78+
describe "honours_pact_with" do
79+
before do
80+
Pact.clear_provider_world
81+
end
82+
let(:pact_url) { "blah" }
83+
84+
context "with no optional params" do
85+
subject do
86+
described_class.build "some-provider" do
87+
app {}
88+
honours_pact_with "some-consumer" do
89+
pact_uri pact_url
90+
end
91+
end
92+
end
93+
94+
it "adds a verification to the Pact.provider_world" do
95+
subject
96+
pact_uri = Pact::Provider::PactURI.new(pact_url)
97+
expect(Pact.provider_world.pact_verifications.first)
98+
.to eq(Pact::Provider::PactVerification.new("some-consumer", pact_uri, :head))
99+
end
100+
end
101+
102+
context "with all params specified" do
103+
let(:pact_uri_options) do
104+
{
105+
username: "pact_user",
106+
password: "pact_pw"
107+
}
108+
end
109+
subject do
110+
described_class.build "some-provider" do
111+
app {}
112+
honours_pact_with "some-consumer", ref: :prod do
113+
pact_uri pact_url, pact_uri_options
114+
end
115+
end
116+
end
117+
118+
it "adds a verification to the Pact.provider_world" do
119+
subject
120+
pact_uri = Pact::Provider::PactURI.new(pact_url, pact_uri_options)
121+
expect(Pact.provider_world.pact_verifications.first)
122+
.to eq(Pact::Provider::PactVerification.new("some-consumer", pact_uri , :prod))
123+
end
124+
end
125+
end
126+
127+
describe "honours_pacts_from_pact_broker" do
128+
before do
129+
Pact.clear_provider_world
130+
end
131+
let(:pact_url) { "blah" }
132+
133+
context "with all params specified" do
134+
let(:tag_1) { "master" }
135+
136+
let(:tag_2) do
137+
{
138+
name: "tag-name",
139+
all: false,
140+
fallback: "master"
141+
}
142+
end
143+
144+
let(:options) do
145+
{
146+
pact_broker_base_url: "some-url",
147+
consumer_version_tags: [tag_1, tag_2]
148+
}
149+
end
150+
151+
subject do
152+
described_class.build "some-provider" do
153+
app {}
154+
app_version_tags ["dev"]
155+
honours_pacts_from_pact_broker do
156+
end
157+
end
158+
end
159+
160+
it "builds a PactVerificationFromBroker" do
161+
expect(PactVerificationFromBroker).to receive(:build).with("some-provider", ["dev"])
162+
subject
163+
end
164+
end
165+
end
166+
167+
describe "builder" do
168+
context "when builder is initialize with a object instead of a block" do
169+
subject do
170+
described_class.build "some-provider" do
171+
builder "foo"
172+
end
173+
end
174+
175+
it "raises an error" do
176+
expect { subject }.to raise_error /wrong number of arguments/
177+
end
178+
end
179+
end
180+
181+
describe "CONFIG_RU_APP" do
182+
context "when a config.ru file does not exist" do
183+
let(:path_that_does_not_exist) { "./tmp/this/path/does/not/exist/probably" }
184+
185+
before do
186+
allow(Pact.configuration).to receive(:config_ru_path).and_return(path_that_does_not_exist)
187+
end
188+
189+
it "raises an error with some helpful text" do
190+
expect { described_class::CONFIG_RU_APP.call }
191+
.to raise_error /Could not find config\.ru file.*#{Regexp.escape(path_that_does_not_exist)}/
192+
end
193+
end
194+
end
195+
end
196+
end
197+
end
198+
end

0 commit comments

Comments
 (0)