@@ -22,12 +22,7 @@ def format_example(example)
22
22
:line_number => example . metadata [ :line_number ] ,
23
23
:run_time => example . execution_result . run_time ,
24
24
: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
31
26
}
32
27
end
33
28
@@ -62,17 +57,21 @@ def calculate_status(example)
62
57
# for the pacts will be mushed together in one collection, so it will be hard to know which notice
63
58
# belongs to which pact.
64
59
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 ]
66
62
notices = ( pact_uri . metadata [ :notices ] && pact_uri . metadata [ :notices ] . before_verification_notices ) || [ ]
67
63
{
68
64
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 ]
70
69
}
71
70
end
72
71
end
73
72
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 )
76
75
end
77
76
78
77
def create_custom_summary ( summary )
0 commit comments