Skip to content

Commit bdc2711

Browse files
committed
feat: expose full notice object in JSON output
1 parent 498518c commit bdc2711

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ def query
7373
end
7474

7575
def extract_notices(pact)
76-
(pact["verificationProperties"]["notices"] || []).collect{ |notice| notice["text"] }.compact
76+
(pact["verificationProperties"]["notices"] || []).collect{ |notice| symbolize_keys(notice) }.compact
77+
end
78+
79+
def symbolize_keys(hash)
80+
hash.each_with_object({}){ |(k,v), h| h[k.to_sym] = v }
7781
end
7882

7983
def log_message

lib/pact/provider/rspec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module ClassMethods
2424
def honour_pactfile pact_uri, pact_json, options
2525
Pact.configuration.output_stream.puts "INFO: Reading pact at #{pact_uri}"
2626
(pact_uri.metadata[:notices] || EMPTY_ARRAY).each do | notice |
27-
Pact.configuration.output_stream.puts("DEBUG: #{notice}")
27+
Pact.configuration.output_stream.puts("DEBUG: #{notice[:text]}")
2828
end
2929
Pact.configuration.output_stream.puts "DEBUG: Filtering interactions by: #{options[:criteria]}" if options[:criteria] && options[:criteria].any?
3030
consumer_contract = Pact::ConsumerContract.from_json(pact_json)

spec/service_providers/pact_ruby_fetch_pacts_for_verification_test.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@
9292
let(:expected_metadata) do
9393
{
9494
pending: true,
95-
notices: ["some text"]
95+
notices: [
96+
text: "some text"
97+
]
9698
}
9799
end
98100

0 commit comments

Comments
 (0)