Skip to content

Commit 7a1cf3b

Browse files
hhhonzikslt
authored andcommitted
feat(generators): Pass context and add ProviderState generator
1 parent f5621b6 commit 7a1cf3b

File tree

5 files changed

+108
-7
lines changed

5 files changed

+108
-7
lines changed

lib/pact/provider/generators.rb

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
require 'pact/provider/generators/provider_state';
3+
4+
module Pact
5+
module Provider
6+
class Generators
7+
def self.add_generator generator
8+
generators.unshift(generator)
9+
end
10+
11+
def self.generators
12+
@generators ||= []
13+
end
14+
15+
def self.execute_generators object, interaction_context = nil
16+
generators.each do | parser |
17+
return parser.call(object, interaction_context) if parser.can_generate?(object)
18+
end
19+
20+
raise Pact::UnrecognizePactFormatError.new("This document does not use a recognised Pact generator: #{object}")
21+
end
22+
23+
add_generator(ProviderStateGenerator.new)
24+
end
25+
end
26+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
require 'pact/provider/generators'
2+
3+
module Pact
4+
module Provider
5+
class ProviderStateGenerator
6+
7+
8+
# rewrite of https://github.com/DiUS/pact-jvm/blob/master/core/support/src/main/kotlin/au/com/dius/pact/core/support/expressions/ExpressionParser.kt#L27
9+
VALUES_SEPARATOR = ","
10+
START_EXPRESSION = "\${"
11+
END_EXPRESSION = '}'
12+
def parse_expression expression, params
13+
14+
return_string = []
15+
16+
buffer = expression;
17+
# initial value
18+
position = buffer.index(START_EXPRESSION)
19+
20+
while (position && position >= 0)
21+
if (position > 0)
22+
# add string
23+
return_string.push(buffer[0...position])
24+
end
25+
end_position = buffer.index(END_EXPRESSION, position)
26+
if (end_position < 0)
27+
raise "Missing closing brace in expression string \"#{$value}\""
28+
end
29+
30+
variable = ""
31+
32+
if (end_position - position > 2)
33+
expression = params[buffer[position+2...end_position]] || ""
34+
end
35+
return_string.push(expression)
36+
37+
buffer = buffer[end_position + 1...-1]
38+
position = buffer.index(START_EXPRESSION)
39+
end
40+
41+
return_string.join("")
42+
end
43+
44+
def call hash, interaction_context = nil
45+
params = interaction_context.state_params || {}
46+
47+
parse_expression hash["expression"], params
48+
end
49+
50+
def can_generate?(hash)
51+
hash.key?('type') && hash['type'] === 'ProviderState'
52+
end
53+
end
54+
end
55+
end
56+
57+
58+

lib/pact/provider/request.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require 'json'
22
require 'pact/reification'
33
require 'pact/shared/null_expectation'
4+
require 'pact/provider/generators'
45

56
module Pact
67
module Provider
@@ -10,15 +11,21 @@ class Replayable
1011
# See https://github.com/rack/rack/blob/e7d741c6282ca4cf4e01506f5681e6e6b14c0b32/SPEC#L87-89
1112
NO_HTTP_PREFIX = ["CONTENT-TYPE", "CONTENT-LENGTH"]
1213

13-
def initialize expected_request
14+
def initialize expected_request, interaction_context = nil
1415
@expected_request = expected_request
16+
@interaction_context = interaction_context
1517
end
1618

1719
def method
1820
expected_request.method
1921
end
2022

2123
def path
24+
if expected_request.methods.include? :generators
25+
if expected_request.generators["path"]
26+
return Pact::Provider::Generators.execute_generators(expected_request.generators["path"], @interaction_context)
27+
end
28+
end
2229
expected_request.full_path
2330
end
2431

lib/pact/provider/rspec.rb

+7-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def honour_pactfile pact_source, pact_json, options
2525
pact_uri = pact_source.uri
2626
Pact.configuration.output_stream.puts "INFO: Reading pact at #{pact_uri}"
2727
consumer_contract = Pact::ConsumerContract.from_json(pact_json)
28+
2829
suffix = pact_uri.metadata[:pending] ? " [PENDING]": ""
2930
example_group_description = "Verifying a pact between #{consumer_contract.consumer.name} and #{consumer_contract.provider.name}#{suffix}"
3031
example_group_metadata = { pactfile_uri: pact_uri, pact_criteria: options[:criteria] }
@@ -77,7 +78,6 @@ def describe_interaction_with_provider_state interaction, options
7778
end
7879

7980
def describe_interaction interaction, options
80-
8181
# pact_uri and pact_interaction are used by
8282
# Pact::Provider::RSpec::PactBrokerFormatter
8383

@@ -103,8 +103,9 @@ def describe_interaction interaction, options
103103
before do | example |
104104
interaction_context.run_once :before do
105105
Pact.configuration.logger.info "Running example '#{Pact::RSpec.full_description(example)}'"
106-
set_up_provider_states interaction.provider_states, options[:consumer]
107-
replay_interaction interaction, options[:request_customizer]
106+
state_params = set_up_provider_states interaction.provider_states, options[:consumer]
107+
interaction_context.state_params = state_params
108+
replay_interaction interaction, options[:request_customizer], interaction_context
108109
interaction_context.last_response = last_response
109110
end
110111
end
@@ -129,6 +130,7 @@ def describe_message expected_response, interaction_context
129130
include Pact::RSpec::Matchers
130131
extend Pact::Matchers::Messages
131132

133+
132134
let(:expected_contents) { expected_response.body[:contents].as_json }
133135
let(:response) { interaction_context.last_response }
134136
let(:differ) { Pact.configuration.body_differ_for_content_type diff_content_type }
@@ -214,6 +216,8 @@ class InteractionContext
214216

215217
attr_accessor :last_response
216218

219+
attr_accessor :state_params
220+
217221
def initialize
218222
@already_run = []
219223
end

lib/pact/provider/test_methods.rb

+9-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ module TestMethods
1414
include Pact::Logging
1515
include Rack::Test::Methods
1616

17-
def replay_interaction interaction, request_customizer = nil
18-
request = Request::Replayable.new(interaction.request)
17+
def replay_interaction interaction, request_customizer = nil, interaction_context
18+
request = Request::Replayable.new(interaction.request, interaction_context)
1919
request = request_customizer.call(request, interaction) if request_customizer
2020
args = [request.path, request.body, request.headers]
2121

@@ -42,11 +42,17 @@ def parse_body_from_response rack_response
4242
end
4343

4444
def set_up_provider_states provider_states, consumer, options = {}
45+
state_params = {};
4546
# If there are no provider state, execute with an nil state to ensure global and base states are executed
4647
Pact.configuration.provider_state_set_up.call(nil, consumer, options) if provider_states.nil? || provider_states.empty?
4748
provider_states.each do | provider_state |
48-
Pact.configuration.provider_state_set_up.call(provider_state.name, consumer, options.merge(params: provider_state.params))
49+
result = Pact.configuration.provider_state_set_up.call(provider_state.name, consumer, options.merge(params: provider_state.params))
50+
if result.is_a?(Hash)
51+
state_params = state_params.merge(result)
52+
end
4953
end
54+
55+
state_params
5056
end
5157

5258
def tear_down_provider_states provider_states, consumer, options = {}

0 commit comments

Comments
 (0)