Skip to content

Commit 376e47a

Browse files
committed
feat: update json formatter output
1 parent 6c6ddb8 commit 376e47a

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

lib/pact/provider/rspec/json_formatter.rb

+9-10
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@ def format_example(example)
2222
:line_number => example.metadata[:line_number],
2323
:run_time => example.execution_result.run_time,
2424
:mismatches => extract_differences(example),
25-
:pact => {
26-
consumer_name: example.metadata[:pact_consumer_contract].consumer.name,
27-
provider_name: example.metadata[:pact_consumer_contract].provider.name,
28-
url: example.metadata[:pact_uri].uri,
29-
short_description: example.metadata[:pact_uri].metadata[:short_description]
30-
}
25+
:pact_url => example.metadata[:pact_uri].uri
3126
}
3227
end
3328

@@ -62,17 +57,21 @@ def calculate_status(example)
6257
# for the pacts will be mushed together in one collection, so it will be hard to know which notice
6358
# belongs to which pact.
6459
def pacts(summary)
65-
pact_uris(summary).collect do | pact_uri |
60+
unique_pact_metadatas(summary).collect do | example_metadata |
61+
pact_uri = example_metadata[:pact_uri]
6662
notices = (pact_uri.metadata[:notices] && pact_uri.metadata[:notices].before_verification_notices) || []
6763
{
6864
notices: notices,
69-
url: pact_uri.uri
65+
url: pact_uri.uri,
66+
consumer_name: example_metadata[:pact_consumer_contract].consumer.name,
67+
provider_name: example_metadata[:pact_consumer_contract].provider.name,
68+
short_description: pact_uri.metadata[:short_description]
7069
}
7170
end
7271
end
7372

74-
def pact_uris(summary)
75-
summary.examples.collect(&:metadata).collect{ |metadata| metadata[:pact_uri] }.uniq
73+
def unique_pact_metadatas(summary)
74+
summary.examples.collect(&:metadata).group_by{ | metadata | metadata[:pact_uri].uri }.values.collect(&:first)
7675
end
7776

7877
def create_custom_summary(summary)

0 commit comments

Comments
 (0)