Skip to content

Commit 5eaa603

Browse files
committed
separate concerns
1 parent 7195b24 commit 5eaa603

File tree

4 files changed

+45
-65
lines changed

4 files changed

+45
-65
lines changed

pkg/connectivity/junit.go

+30-42
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ import (
66
"github.com/sirupsen/logrus"
77
"io"
88
"os"
9-
"strconv"
10-
"strings"
119
)
1210

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) {
1417
if filename == "" {
1518
return
1619
}
@@ -21,58 +24,43 @@ func PrintJUnitResults(filename string, summary *SummaryTable) {
2124
return
2225
}
2326

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+
2435
defer f.Close()
25-
if err := printJunit(f, summary); err != nil {
36+
if err := printJunit(f, junitResults); err != nil {
2637
logrus.Errorf("Unable to write junit output: %v\n", err)
2738
}
2839
}
2940

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)
3243
enc := xml.NewEncoder(w)
3344
enc.Indent("", " ")
3445
return enc.Encode(s)
3546
}
3647

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
4351

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,
5055
}
51-
tc := junit.JUnitTestCase{
52-
Name: testName,
56+
if !result.Passed {
57+
testCase.Failure = &junit.JUnitFailure{}
5358
}
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)
7160
}
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,
7565
}
76-
77-
return testNumber, split[1], passed
7866
}

pkg/connectivity/printer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func (t *Printer) PrintSummary() {
3333

3434
fmt.Printf("Feature results:\n%s\n\n", t.printMarkdownFeatureTable(summary.FeaturePrimaryCounts, summary.FeatureCounts))
3535
fmt.Printf("Tag results:\n%s\n", t.printMarkdownFeatureTable(summary.TagPrimaryCounts, summary.TagCounts))
36-
PrintJUnitResults(t.JunitResultsFile, summary)
36+
PrintJUnitResults(t.JunitResultsFile, t.Results, t.IgnoreLoopback)
3737
}
3838

3939
const (

pkg/connectivity/printer_test.go

+11-19
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package connectivity
33
import (
44
"bytes"
55
"flag"
6+
"fmt"
67
. "github.com/onsi/ginkgo"
78
. "github.com/onsi/gomega"
8-
"github.com/sirupsen/logrus"
99
"io/ioutil"
1010
)
1111

@@ -15,36 +15,28 @@ func RunPrinterTests() {
1515
Describe("Test junit file print", func() {
1616
testCases := []struct {
1717
desc string
18-
summary *SummaryTable
18+
results []*JUnitTestResult
1919
expectFile string
2020
expectErr string
2121
}{
2222
{
2323
desc: "Empty summary",
24-
summary: &SummaryTable{},
24+
results: nil,
2525
expectFile: "testdata/empty-summary.golden.xml",
2626
}, {
2727
desc: "2 pass 2 fail",
28-
summary: &SummaryTable{
29-
Tests: [][]string{
30-
{"1: test1", "passed", ""},
31-
{"2: test2 with spaces", "failed", ""},
32-
{"3: test3 with + special %chars/", "passed", ""},
33-
{"4: test4 with\nnewlines", "foo-is-failed", ""},
34-
},
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},
3533
},
3634
expectFile: "testdata/2-pass-2-fail.golden.xml",
37-
}, {
38-
desc: "Uses failure count from summary",
39-
summary: &SummaryTable{
40-
Failed: 10,
41-
},
42-
expectFile: "testdata/use-summary-failure-count.golden.xml",
4335
},
4436
}
4537
for _, testCase := range testCases {
4638
var output bytes.Buffer
47-
err := printJunit(&output, testCase.summary)
39+
err := printJunit(&output, testCase.results)
4840
if err != nil {
4941
Expect(len(testCase.expectErr)).ToNot(Equal(0))
5042
Expect(err.Error()).To(Equal(testCase.expectErr))
@@ -56,8 +48,8 @@ func RunPrinterTests() {
5648
} else {
5749
fileData, err := ioutil.ReadFile(testCase.expectFile)
5850
Expect(err).To(BeNil())
59-
logrus.Infof("expected: \n%s\n", fileData)
60-
logrus.Infof("actual: \n%s\n", output.Bytes())
51+
fmt.Printf("expected: \n%s\n", fileData)
52+
fmt.Printf("actual: \n%s\n", output.Bytes())
6153
Expect(bytes.Equal(fileData, output.Bytes())).To(BeTrue())
6254
}
6355
}

pkg/connectivity/probe/table.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ func NewTableFromJobResults(resources *Resources, jobResults []*JobResult) *Tabl
4747
return table
4848
}
4949

50-
func (t *Table) Set(from string, to string, value *Item) {
51-
t.Wrapped.Set(from, to, value)
52-
}
50+
//func (t *Table) Set(from string, to string, value *Item) {
51+
// t.Wrapped.Set(from, to, value)
52+
//}
5353

5454
func (t *Table) Get(from string, to string) *Item {
5555
return t.Wrapped.Get(from, to).(*Item)

0 commit comments

Comments
 (0)