@@ -6,11 +6,14 @@ import (
6
6
"github.com/sirupsen/logrus"
7
7
"io"
8
8
"os"
9
- "strconv"
10
- "strings"
11
9
)
12
10
13
- func PrintJUnitResults (filename string , summary * SummaryTable ) {
11
+ type JUnitTestResult struct {
12
+ Passed bool
13
+ Name string
14
+ }
15
+
16
+ func PrintJUnitResults (filename string , results []* Result , ignoreLoopback bool ) {
14
17
if filename == "" {
15
18
return
16
19
}
@@ -21,58 +24,43 @@ func PrintJUnitResults(filename string, summary *SummaryTable) {
21
24
return
22
25
}
23
26
27
+ var junitResults []* JUnitTestResult
28
+ for _ , result := range results {
29
+ junitResults = append (junitResults , & JUnitTestResult {
30
+ Passed : result .Passed (ignoreLoopback ),
31
+ Name : result .TestCase .Description ,
32
+ })
33
+ }
34
+
24
35
defer f .Close ()
25
- if err := printJunit (f , summary ); err != nil {
36
+ if err := printJunit (f , junitResults ); err != nil {
26
37
logrus .Errorf ("Unable to write junit output: %v\n " , err )
27
38
}
28
39
}
29
40
30
- func printJunit (w io.Writer , summary * SummaryTable ) error {
31
- s := summaryToJunit ( summary )
41
+ func printJunit (w io.Writer , results [] * JUnitTestResult ) error {
42
+ s := resultsToJUnit ( results )
32
43
enc := xml .NewEncoder (w )
33
44
enc .Indent ("" , " " )
34
45
return enc .Encode (s )
35
46
}
36
47
37
- func summaryToJunit (summary * SummaryTable ) junit.JUnitTestSuite {
38
- s := junit.JUnitTestSuite {
39
- Name : "cyclonus" ,
40
- Failures : summary .Failed ,
41
- TestCases : []junit.JUnitTestCase {},
42
- }
48
+ func resultsToJUnit (results []* JUnitTestResult ) junit.JUnitTestSuite {
49
+ var testCases []junit.JUnitTestCase
50
+ failed := 0
43
51
44
- for _ , testStrings := range summary .Tests {
45
- _ , testName , passed := parseTestStrings (testStrings )
46
- // Only cases where the testname are non-empty are new tests, otherwise it
47
- // is multi-line output of the test.
48
- if testName == "" {
49
- continue
52
+ for _ , result := range results {
53
+ testCase := junit.JUnitTestCase {
54
+ Name : result .Name ,
50
55
}
51
- tc := junit. JUnitTestCase {
52
- Name : testName ,
56
+ if ! result . Passed {
57
+ testCase . Failure = & junit. JUnitFailure {}
53
58
}
54
- if ! passed {
55
- tc .Failure = & junit.JUnitFailure {}
56
- }
57
- s .TestCases = append (s .TestCases , tc )
58
- }
59
- return s
60
- }
61
-
62
- func parseTestStrings (input []string ) (testNumber int , testName string , passed bool ) {
63
- split := strings .SplitN (input [0 ], ": " , 2 )
64
- if len (split ) < 2 {
65
- return 0 , "" , false
66
- }
67
-
68
- testNumber , err := strconv .Atoi (split [0 ])
69
- if err != nil {
70
- logrus .Errorf ("error parsing test number from string %q for junit: %v" , split [0 ], err )
59
+ testCases = append (testCases , testCase )
71
60
}
72
-
73
- if len (input ) > 1 && input [1 ] == "passed" {
74
- passed = true
61
+ return junit.JUnitTestSuite {
62
+ Name : "cyclonus" ,
63
+ Failures : failed ,
64
+ TestCases : testCases ,
75
65
}
76
-
77
- return testNumber , split [1 ], passed
78
66
}
0 commit comments