Skip to content

Commit a2b7cb0

Browse files
committed
move files out of tests
1 parent 5eaa603 commit a2b7cb0

6 files changed

+55
-80
lines changed

pkg/connectivity/junit.go

+12-18
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"encoding/xml"
55
junit "github.com/jstemmer/go-junit-report/formatter"
66
"github.com/sirupsen/logrus"
7-
"io"
87
"os"
98
)
109

@@ -13,15 +12,9 @@ type JUnitTestResult struct {
1312
Name string
1413
}
1514

16-
func PrintJUnitResults(filename string, results []*Result, ignoreLoopback bool) {
15+
func PrintJUnitResults(filename string, results []*Result, ignoreLoopback bool) error {
1716
if filename == "" {
18-
return
19-
}
20-
21-
f, err := os.Create(filename)
22-
if err != nil {
23-
logrus.Errorf("Unable to create file %q for junit output: %v\n", filename, err)
24-
return
17+
return nil
2518
}
2619

2720
var junitResults []*JUnitTestResult
@@ -32,20 +25,20 @@ func PrintJUnitResults(filename string, results []*Result, ignoreLoopback bool)
3225
})
3326
}
3427

35-
defer f.Close()
36-
if err := printJunit(f, junitResults); err != nil {
37-
logrus.Errorf("Unable to write junit output: %v\n", err)
28+
f, err := os.Create(filename)
29+
if err != nil {
30+
logrus.Errorf("Unable to create file %q for junit output: %v\n", filename, err)
31+
return err
3832
}
39-
}
33+
defer f.Close()
4034

41-
func printJunit(w io.Writer, results []*JUnitTestResult) error {
42-
s := resultsToJUnit(results)
43-
enc := xml.NewEncoder(w)
35+
junitTestSuite := ResultsToJUnit(junitResults)
36+
enc := xml.NewEncoder(f)
4437
enc.Indent("", " ")
45-
return enc.Encode(s)
38+
return enc.Encode(junitTestSuite)
4639
}
4740

48-
func resultsToJUnit(results []*JUnitTestResult) junit.JUnitTestSuite {
41+
func ResultsToJUnit(results []*JUnitTestResult) junit.JUnitTestSuite {
4942
var testCases []junit.JUnitTestCase
5043
failed := 0
5144

@@ -55,6 +48,7 @@ func resultsToJUnit(results []*JUnitTestResult) junit.JUnitTestSuite {
5548
}
5649
if !result.Passed {
5750
testCase.Failure = &junit.JUnitFailure{}
51+
failed++
5852
}
5953
testCases = append(testCases, testCase)
6054
}

pkg/connectivity/printer.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package connectivity
22

33
import (
44
"fmt"
5+
log "github.com/sirupsen/logrus"
56
"math"
67
"sort"
78
"strings"
@@ -33,7 +34,10 @@ func (t *Printer) PrintSummary() {
3334

3435
fmt.Printf("Feature results:\n%s\n\n", t.printMarkdownFeatureTable(summary.FeaturePrimaryCounts, summary.FeatureCounts))
3536
fmt.Printf("Tag results:\n%s\n", t.printMarkdownFeatureTable(summary.TagPrimaryCounts, summary.TagCounts))
36-
PrintJUnitResults(t.JunitResultsFile, t.Results, t.IgnoreLoopback)
37+
38+
if err := PrintJUnitResults(t.JunitResultsFile, t.Results, t.IgnoreLoopback); err != nil {
39+
log.Errorf("unable to dump JUnit test results: %+v", err)
40+
}
3741
}
3842

3943
const (

pkg/connectivity/printer_test.go

+38-44
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,51 @@
11
package connectivity
22

33
import (
4-
"bytes"
5-
"flag"
6-
"fmt"
4+
junit "github.com/jstemmer/go-junit-report/formatter"
75
. "github.com/onsi/ginkgo"
86
. "github.com/onsi/gomega"
9-
"io/ioutil"
107
)
118

12-
var update = flag.Bool("update", false, "update .golden files")
13-
149
func RunPrinterTests() {
15-
Describe("Test junit file print", func() {
16-
testCases := []struct {
17-
desc string
18-
results []*JUnitTestResult
19-
expectFile string
20-
expectErr string
21-
}{
22-
{
23-
desc: "Empty summary",
24-
results: nil,
25-
expectFile: "testdata/empty-summary.golden.xml",
26-
}, {
27-
desc: "2 pass 2 fail",
28-
results: []*JUnitTestResult{
29-
{Name: "test1", Passed: true},
30-
{Name: "test2 with spaces", Passed: false},
31-
{Name: "test3 with + special %chars/", Passed: true},
32-
{Name: "test4 with\nnewlines", Passed: false},
10+
Describe("JUnit cyclonus output", func() {
11+
It("should convert results to junit", func() {
12+
testCases := []struct {
13+
desc string
14+
results []*JUnitTestResult
15+
junit junit.JUnitTestSuite
16+
}{
17+
{
18+
desc: "Empty summary",
19+
results: nil,
20+
junit: junit.JUnitTestSuite{
21+
Failures: 0,
22+
Name: "cyclonus",
23+
TestCases: nil,
24+
},
25+
}, {
26+
desc: "2 pass 2 fail",
27+
results: []*JUnitTestResult{
28+
{Name: "test1", Passed: true},
29+
{Name: "test2 with spaces", Passed: false},
30+
{Name: "test3 with + special %chars/", Passed: true},
31+
{Name: "test4 with\nnewlines", Passed: false},
32+
},
33+
junit: junit.JUnitTestSuite{
34+
Failures: 2,
35+
Name: "cyclonus",
36+
TestCases: []junit.JUnitTestCase{
37+
{Name: "test1", Failure: nil},
38+
{Name: "test2 with spaces", Failure: &junit.JUnitFailure{}},
39+
{Name: "test3 with + special %chars/", Failure: nil},
40+
{Name: "test4 with\nnewlines", Failure: &junit.JUnitFailure{}},
41+
},
42+
},
3343
},
34-
expectFile: "testdata/2-pass-2-fail.golden.xml",
35-
},
36-
}
37-
for _, testCase := range testCases {
38-
var output bytes.Buffer
39-
err := printJunit(&output, testCase.results)
40-
if err != nil {
41-
Expect(len(testCase.expectErr)).ToNot(Equal(0))
42-
Expect(err.Error()).To(Equal(testCase.expectErr))
4344
}
44-
45-
if *update {
46-
err := ioutil.WriteFile(testCase.expectFile, output.Bytes(), 0666)
47-
Expect(err).To(BeNil())
48-
} else {
49-
fileData, err := ioutil.ReadFile(testCase.expectFile)
50-
Expect(err).To(BeNil())
51-
fmt.Printf("expected: \n%s\n", fileData)
52-
fmt.Printf("actual: \n%s\n", output.Bytes())
53-
Expect(bytes.Equal(fileData, output.Bytes())).To(BeTrue())
45+
for _, testCase := range testCases {
46+
actual := ResultsToJUnit(testCase.results)
47+
Expect(actual).To(Equal(testCase.junit))
5448
}
55-
}
49+
})
5650
})
5751
}

pkg/connectivity/testdata/2-pass-2-fail.golden.xml

-11
This file was deleted.

pkg/connectivity/testdata/empty-summary.golden.xml

-3
This file was deleted.

pkg/connectivity/testdata/use-summary-failure-count.golden.xml

-3
This file was deleted.

0 commit comments

Comments
 (0)