|
1 | 1 | package connectivity
|
2 | 2 |
|
3 | 3 | import (
|
4 |
| - "bytes" |
5 |
| - "flag" |
6 |
| - "fmt" |
| 4 | + junit "github.com/jstemmer/go-junit-report/formatter" |
7 | 5 | . "github.com/onsi/ginkgo"
|
8 | 6 | . "github.com/onsi/gomega"
|
9 |
| - "io/ioutil" |
10 | 7 | )
|
11 | 8 |
|
12 |
| -var update = flag.Bool("update", false, "update .golden files") |
13 |
| - |
14 | 9 | 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 | + }, |
33 | 43 | },
|
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)) |
43 | 44 | }
|
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)) |
54 | 48 | }
|
55 |
| - } |
| 49 | + }) |
56 | 50 | })
|
57 | 51 | }
|
0 commit comments