@@ -4,38 +4,54 @@ module Provider
4
4
module VerificationResults
5
5
class Create
6
6
7
- def self . call pact_json , failed_examples
8
- new ( pact_json , failed_examples ) . call
7
+ def self . call pact_source , test_results_hash
8
+ new ( pact_source , test_results_hash ) . call
9
9
end
10
10
11
- def initialize pact_json , failed_examples
12
- @pact_json = pact_json
13
- @failed_examples = failed_examples
11
+ def initialize pact_source , test_results_hash
12
+ @pact_source = pact_source
13
+ @test_results_hash = test_results_hash
14
14
end
15
15
16
16
def call
17
- VerificationResult . new ( !any_failures? , Pact . configuration . provider . application_version )
17
+ VerificationResult . new ( !any_failures? , Pact . configuration . provider . application_version , test_results_hash_for_pact_uri )
18
18
end
19
19
20
20
private
21
21
22
- def pact_hash
23
- @pact_hash ||= json_load ( pact_json )
22
+ def pact_uri
23
+ @pact_uri ||= pact_source . uri
24
24
end
25
25
26
- def json_load json
27
- JSON . load ( json , nil , { max_nesting : 50 } )
26
+ def any_failures?
27
+ count_failures_for_pact_uri > 0
28
28
end
29
29
30
- def count_failures_for_pact_json
31
- failed_examples . collect { |e | e . metadata [ :pact_json ] == pact_json } . uniq . size
30
+ def examples_for_pact_uri
31
+ @examples_for_pact_uri ||= test_results_hash [ :examples ]
32
+ . select { |e | e [ :pact_uri ] == pact_uri }
33
+ . collect { |e | clean_example ( e ) }
32
34
end
33
35
34
- def any_failures?
35
- count_failures_for_pact_json > 0
36
+ def count_failures_for_pact_uri
37
+ examples_for_pact_uri . count { |e | e [ :status ] != 'passed' }
38
+ end
39
+
40
+ def test_results_hash_for_pact_uri
41
+ {
42
+ examples : examples_for_pact_uri ,
43
+ summary : {
44
+ exampleCount : examples_for_pact_uri . size ,
45
+ failureCount : count_failures_for_pact_uri
46
+ }
47
+ }
48
+ end
49
+
50
+ def clean_example ( example )
51
+ example . reject { |k , v | k == :pact_uri }
36
52
end
37
53
38
- attr_reader :pact_json , :failed_examples
54
+ attr_reader :pact_source , :test_results_hash
39
55
end
40
56
end
41
57
end
0 commit comments