Skip to content

Commit a5181b6

Browse files
committed
feat(message pact): add DSL for configuring Message Pact verifications
1 parent 89ed9ef commit a5181b6

File tree

7 files changed

+86
-2
lines changed

7 files changed

+86
-2
lines changed

lib/pact/consumer/configuration/dsl.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require 'pact/consumer/configuration/service_consumer'
22

33
module Pact
4-
54
module Consumer
65
module DSL
76
def service_consumer name, &block

lib/pact/provider/configuration/dsl.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'pact/provider/configuration/service_provider_dsl'
2+
require 'pact/provider/configuration/message_provider_dsl'
23

34
module Pact
45

@@ -8,6 +9,10 @@ module DSL
89
def service_provider name, &block
910
Configuration::ServiceProviderDSL.build(name, &block)
1011
end
12+
13+
def message_provider name, &block
14+
Configuration::MessageProviderDSL.build(name, &block)
15+
end
1116
end
1217
end
13-
end
18+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
require 'pact/provider/configuration/service_provider_dsl'
2+
3+
module Pact
4+
module Provider
5+
module Configuration
6+
class MessageProviderDSL < ServiceProviderDSL
7+
class RackToMessageAdapter
8+
def initialize(message_builder)
9+
@message_builder = message_builder
10+
end
11+
12+
def call(env)
13+
request_body_json = JSON.parse(env['rack.input'].read)
14+
contents = @message_builder.call(request_body_json['description'])
15+
[200, {"Content-Type" => "application/json"}, [{ contents: contents }.to_json]]
16+
end
17+
end
18+
19+
def initialize name
20+
super
21+
@mapper_block = lambda { |args| }
22+
end
23+
24+
dsl do
25+
def builder &block
26+
self.app_block = lambda { RackToMessageAdapter.new(block) }
27+
end
28+
end
29+
end
30+
end
31+
end
32+
end

pact.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ Gem::Specification.new do |gem|
4545
gem.add_development_dependency 'appraisal', '~> 2.2'
4646
gem.add_development_dependency 'conventional-changelog', '~> 1.3'
4747
gem.add_development_dependency 'bump', '~> 0.5'
48+
gem.add_development_dependency 'pact-message'
4849
end

spec/support/message_spec_helper.rb

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
require 'pact/message'
2+
3+
# Example data store
4+
5+
class DataStore
6+
def self.greeting_recipient= greeting_recipient
7+
@greeting_recipient = greeting_recipient
8+
end
9+
10+
def self.greeting_recipient
11+
@greeting_recipient
12+
end
13+
end
14+
15+
# Example message producer
16+
17+
class BarProvider
18+
def create_message
19+
{
20+
text: "Hello #{DataStore.greeting_recipient}"
21+
}
22+
end
23+
end
24+
25+
# Provider states
26+
27+
Pact.provider_states_for "Foo" do
28+
provider_state "a world exists" do
29+
set_up do
30+
DataStore.greeting_recipient = "world"
31+
end
32+
end
33+
end
34+
35+
CONFIG = {
36+
"a message" => lambda { BarProvider.new.create_message }
37+
}
38+
39+
Pact.message_provider "Bar" do
40+
builder { |description| CONFIG[description].call }
41+
end

tasks/message-test.rake

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require 'pact/tasks'
2+
3+
Pact::VerificationTask.new(:message) do | pact |
4+
pact.uri 'spec/pacts/foo-bar-message.json', pact_helper: 'spec/support/message_spec_helper.rb'
5+
end

tasks/pact-test.rake

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ namespace :pact do
8080
Rake::Task['pact:verify:term_v2'].execute
8181
Rake::Task['pact:verify:test_app_with_provider_state_params'].execute
8282
Rake::Task['pact:verify:test_app:wip'].execute
83+
Rake::Task['pact:verify:message'].execute
8384
end
8485

8586
desc "All the verification tests with active support loaded"

0 commit comments

Comments
 (0)