@@ -24,28 +24,34 @@ module ClassMethods
24
24
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
- if pact_uri . metadata [ :notices ]
28
- pact_uri . metadata [ :notices ] . before_verification_notices_text . each do | text |
29
- Pact . configuration . output_stream . puts ( "DEBUG: #{ text } " )
30
- end
31
- end
32
-
33
- Pact . configuration . output_stream . puts "DEBUG: Filtering interactions by: #{ options [ :criteria ] } " if options [ :criteria ] && options [ :criteria ] . any?
34
27
consumer_contract = Pact ::ConsumerContract . from_json ( pact_json )
35
28
suffix = pact_uri . metadata [ :pending ] ? " [PENDING]" : ""
29
+
36
30
::RSpec . describe "Verifying a pact between #{ consumer_contract . consumer . name } and #{ consumer_contract . provider . name } #{ suffix } " , pactfile_uri : pact_uri do
37
- honour_consumer_contract consumer_contract , options . merge ( pact_json : pact_json , pact_uri : pact_uri , pact_source : pact_source , consumer_contract : consumer_contract )
31
+ honour_consumer_contract consumer_contract , options . merge (
32
+ pact_json : pact_json ,
33
+ pact_uri : pact_uri ,
34
+ pact_source : pact_source ,
35
+ consumer_contract : consumer_contract ,
36
+ criteria : options [ :criteria ]
37
+ )
38
38
end
39
39
end
40
40
41
41
def honour_consumer_contract consumer_contract , options = { }
42
- describe_consumer_contract consumer_contract , options . merge ( consumer : consumer_contract . consumer . name )
42
+ describe_consumer_contract consumer_contract , options . merge ( consumer : consumer_contract . consumer . name , pact_context : InteractionContext . new )
43
43
end
44
44
45
45
private
46
46
47
47
def describe_consumer_contract consumer_contract , options
48
- consumer_interactions ( consumer_contract , options ) . each do |interaction |
48
+ consumer_interactions ( consumer_contract , options ) . tap { |interactions |
49
+ if interactions . empty?
50
+ # If there are no interactions, the documentation formatter never fires to print this out,
51
+ # so print it out here.
52
+ Pact . configuration . output_stream . puts "DEBUG: All interactions for #{ options [ :pact_uri ] } have been filtered out by criteria: #{ options [ :criteria ] } " if options [ :criteria ] && options [ :criteria ] . any?
53
+ end
54
+ } . each do |interaction |
49
55
describe_interaction_with_provider_state interaction , options
50
56
end
51
57
end
@@ -54,7 +60,7 @@ def consumer_interactions(consumer_contract, options)
54
60
if options [ :criteria ] . nil?
55
61
consumer_contract . interactions
56
62
else
57
- consumer_contract . find_interactions options [ :criteria ]
63
+ consumer_contract . find_interactions ( options [ :criteria ] )
58
64
end
59
65
end
60
66
@@ -84,14 +90,19 @@ def describe_interaction interaction, options
84
90
pact_uri : options [ :pact_uri ] ,
85
91
pact_source : options [ :pact_source ] ,
86
92
pact_ignore_failures : options [ :pact_uri ] . metadata [ :pending ] || options [ :ignore_failures ] ,
87
- pact_consumer_contract : options [ :consumer_contract ]
93
+ pact_consumer_contract : options [ :consumer_contract ] ,
94
+ pact_criteria : options [ :criteria ]
88
95
}
89
96
90
97
describe description_for ( interaction ) , metadata do
91
98
92
99
interaction_context = InteractionContext . new
100
+ pact_context = options [ :pact_context ]
93
101
94
102
before do | example |
103
+ pact_context . run_once :before do
104
+ ::RSpec . configuration . reporter . message "THIS IS A PACT"
105
+ end
95
106
interaction_context . run_once :before do
96
107
Pact . configuration . logger . info "Running example '#{ Pact ::RSpec . full_description ( example ) } '"
97
108
set_up_provider_states interaction . provider_states , options [ :consumer ]
0 commit comments