|
1 | 1 | package connectivity
|
2 | 2 |
|
3 | 3 | import (
|
4 |
| - "fmt" |
5 | 4 | "github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
|
6 | 5 | "github.com/mattfenwick/cyclonus/pkg/generator"
|
7 | 6 | v1 "k8s.io/api/core/v1"
|
@@ -39,118 +38,3 @@ func (r *Result) Passed(ignoreLoopback bool) bool {
|
39 | 38 | }
|
40 | 39 | return true
|
41 | 40 | }
|
42 |
| - |
43 |
| -type CombinedResults struct { |
44 |
| - Results []*Result |
45 |
| -} |
46 |
| - |
47 |
| -type Summary struct { |
48 |
| - Tests [][]string |
49 |
| - Passed int |
50 |
| - Failed int |
51 |
| - ProtocolCounts map[v1.Protocol]map[Comparison]int |
52 |
| - TagCounts map[string]map[string]map[bool]int |
53 |
| - TagPrimaryCounts map[string]map[bool]int |
54 |
| - FeatureCounts map[string]map[string]map[bool]int |
55 |
| - FeaturePrimaryCounts map[string]map[bool]int |
56 |
| -} |
57 |
| - |
58 |
| -func (c *CombinedResults) Summary(ignoreLoopback bool) *Summary { |
59 |
| - summary := &Summary{ |
60 |
| - Tests: nil, |
61 |
| - Passed: 0, |
62 |
| - Failed: 0, |
63 |
| - ProtocolCounts: map[v1.Protocol]map[Comparison]int{v1.ProtocolTCP: {}, v1.ProtocolSCTP: {}, v1.ProtocolUDP: {}}, |
64 |
| - TagCounts: map[string]map[string]map[bool]int{}, |
65 |
| - TagPrimaryCounts: map[string]map[bool]int{}, |
66 |
| - FeatureCounts: map[string]map[string]map[bool]int{}, |
67 |
| - FeaturePrimaryCounts: map[string]map[bool]int{}, |
68 |
| - } |
69 |
| - passedTotal, failedTotal := 0, 0 |
70 |
| - |
71 |
| - for testNumber, result := range c.Results { |
72 |
| - passed := result.Passed(ignoreLoopback) |
73 |
| - |
74 |
| - for primary, subs := range result.Features() { |
75 |
| - if _, ok := summary.FeatureCounts[primary]; !ok { |
76 |
| - summary.FeatureCounts[primary] = map[string]map[bool]int{} |
77 |
| - } |
78 |
| - incrementCounts(summary.FeatureCounts[primary], subs, passed) |
79 |
| - incrementCounts(summary.FeaturePrimaryCounts, []string{primary}, passed) |
80 |
| - } |
81 |
| - |
82 |
| - groupedTags := result.TestCase.Tags.GroupTags() |
83 |
| - for primary, subs := range groupedTags { |
84 |
| - if _, ok := summary.TagCounts[primary]; !ok { |
85 |
| - summary.TagCounts[primary] = map[string]map[bool]int{} |
86 |
| - } |
87 |
| - incrementCounts(summary.TagCounts[primary], subs, passed) |
88 |
| - incrementCounts(summary.TagPrimaryCounts, []string{primary}, passed) |
89 |
| - } |
90 |
| - |
91 |
| - var testResult string |
92 |
| - if passed { |
93 |
| - testResult = "passed" |
94 |
| - passedTotal++ |
95 |
| - } else { |
96 |
| - testResult = "failed" |
97 |
| - failedTotal++ |
98 |
| - } |
99 |
| - |
100 |
| - summary.Tests = append(summary.Tests, []string{ |
101 |
| - fmt.Sprintf("%d: %s", testNumber+1, result.TestCase.Description), |
102 |
| - testResult, "", "", "", "", |
103 |
| - "", "", "", |
104 |
| - }) |
105 |
| - |
106 |
| - for stepNumber, step := range result.Steps { |
107 |
| - for tryNumber := range step.KubeProbes { |
108 |
| - counts := step.Comparison(tryNumber).ValueCounts(ignoreLoopback) |
109 |
| - tryProtocolCounts := step.Comparison(tryNumber).ValueCountsByProtocol(ignoreLoopback) |
110 |
| - tcp := tryProtocolCounts[v1.ProtocolTCP] |
111 |
| - sctp := tryProtocolCounts[v1.ProtocolSCTP] |
112 |
| - udp := tryProtocolCounts[v1.ProtocolUDP] |
113 |
| - summary.Tests = append(summary.Tests, []string{ |
114 |
| - "", |
115 |
| - "", |
116 |
| - fmt.Sprintf("Step %d, try %d", stepNumber+1, tryNumber+1), |
117 |
| - intToString(counts[DifferentComparison]), |
118 |
| - intToString(counts[SameComparison]), |
119 |
| - intToString(counts[IgnoredComparison]), |
120 |
| - protocolResult(tcp[SameComparison], tcp[DifferentComparison]), |
121 |
| - protocolResult(sctp[SameComparison], sctp[DifferentComparison]), |
122 |
| - protocolResult(udp[SameComparison], udp[DifferentComparison]), |
123 |
| - }) |
124 |
| - |
125 |
| - summary.ProtocolCounts[v1.ProtocolTCP][SameComparison] += tcp[SameComparison] |
126 |
| - summary.ProtocolCounts[v1.ProtocolTCP][DifferentComparison] += tcp[DifferentComparison] |
127 |
| - summary.ProtocolCounts[v1.ProtocolSCTP][SameComparison] += sctp[SameComparison] |
128 |
| - summary.ProtocolCounts[v1.ProtocolSCTP][DifferentComparison] += sctp[DifferentComparison] |
129 |
| - summary.ProtocolCounts[v1.ProtocolUDP][SameComparison] += udp[SameComparison] |
130 |
| - summary.ProtocolCounts[v1.ProtocolUDP][DifferentComparison] += udp[DifferentComparison] |
131 |
| - } |
132 |
| - } |
133 |
| - } |
134 |
| - |
135 |
| - summary.Passed = passedTotal |
136 |
| - summary.Failed = failedTotal |
137 |
| - |
138 |
| - return summary |
139 |
| -} |
140 |
| - |
141 |
| -func incrementCounts(dict map[string]map[bool]int, keys []string, b bool) { |
142 |
| - for _, k := range keys { |
143 |
| - if _, ok := dict[k]; !ok { |
144 |
| - dict[k] = map[bool]int{} |
145 |
| - } |
146 |
| - dict[k][b]++ |
147 |
| - } |
148 |
| -} |
149 |
| - |
150 |
| -func protocolResult(passed int, failed int) string { |
151 |
| - total := passed + failed |
152 |
| - if total == 0 { |
153 |
| - return "-" |
154 |
| - } |
155 |
| - return fmt.Sprintf("%d / %d (%.0f%%)", passed, total, percentage(passed, total)) |
156 |
| -} |
0 commit comments