@@ -25,6 +25,7 @@ def honour_pactfile pact_source, pact_json, options
25
25
pact_uri = pact_source . uri
26
26
Pact . configuration . output_stream . puts "INFO: Reading pact at #{ pact_uri } "
27
27
consumer_contract = Pact ::ConsumerContract . from_json ( pact_json )
28
+
28
29
suffix = pact_uri . metadata [ :pending ] ? " [PENDING]" : ""
29
30
example_group_description = "Verifying a pact between #{ consumer_contract . consumer . name } and #{ consumer_contract . provider . name } #{ suffix } "
30
31
example_group_metadata = { pactfile_uri : pact_uri , pact_criteria : options [ :criteria ] }
@@ -77,7 +78,6 @@ def describe_interaction_with_provider_state interaction, options
77
78
end
78
79
79
80
def describe_interaction interaction , options
80
-
81
81
# pact_uri and pact_interaction are used by
82
82
# Pact::Provider::RSpec::PactBrokerFormatter
83
83
@@ -103,8 +103,9 @@ def describe_interaction interaction, options
103
103
before do | example |
104
104
interaction_context . run_once :before do
105
105
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
108
109
interaction_context . last_response = last_response
109
110
end
110
111
end
@@ -129,6 +130,7 @@ def describe_message expected_response, interaction_context
129
130
include Pact ::RSpec ::Matchers
130
131
extend Pact ::Matchers ::Messages
131
132
133
+
132
134
let ( :expected_contents ) { expected_response . body [ :contents ] . as_json }
133
135
let ( :response ) { interaction_context . last_response }
134
136
let ( :differ ) { Pact . configuration . body_differ_for_content_type diff_content_type }
@@ -214,6 +216,8 @@ class InteractionContext
214
216
215
217
attr_accessor :last_response
216
218
219
+ attr_accessor :state_params
220
+
217
221
def initialize
218
222
@already_run = [ ]
219
223
end
0 commit comments