moving parser into subpackage

This commit is contained in:
Craig Peterson 2015-05-14 17:07:05 -06:00
parent 38eb577ca2
commit a30d4886ed
3 changed files with 11 additions and 7 deletions

View File

@ -4,6 +4,8 @@ import (
"flag" "flag"
"fmt" "fmt"
"os" "os"
"github.com/jstemmer/go-junit-report/parser"
) )
var ( var (
@ -22,7 +24,7 @@ func main() {
flag.Parse() flag.Parse()
// Read input // Read input
report, err := Parse(os.Stdin, packageName) report, err := parser.Parse(os.Stdin, packageName)
if err != nil { if err != nil {
fmt.Printf("Error reading input: %s\n", err) fmt.Printf("Error reading input: %s\n", err)
os.Exit(1) os.Exit(1)

View File

@ -7,6 +7,8 @@ import (
"io" "io"
"runtime" "runtime"
"strings" "strings"
"github.com/jstemmer/go-junit-report/parser"
) )
// JUnitTestSuites is a collection of JUnit test suites. // JUnitTestSuites is a collection of JUnit test suites.
@ -57,7 +59,7 @@ type JUnitFailure struct {
// JUnitReportXML writes a JUnit xml representation of the given report to w // JUnitReportXML writes a JUnit xml representation of the given report to w
// in the format described at http://windyroad.org/dl/Open%20Source/JUnit.xsd // in the format described at http://windyroad.org/dl/Open%20Source/JUnit.xsd
func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error { func JUnitReportXML(report *parser.Report, noXMLHeader bool, w io.Writer) error {
suites := JUnitTestSuites{} suites := JUnitTestSuites{}
// convert Report to JUnit test suites // convert Report to JUnit test suites
@ -88,7 +90,7 @@ func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error {
Failure: nil, Failure: nil,
} }
if test.Result == FAIL { if test.Result == parser.FAIL {
ts.Failures++ ts.Failures++
testCase.Failure = &JUnitFailure{ testCase.Failure = &JUnitFailure{
Message: "Failed", Message: "Failed",
@ -97,7 +99,7 @@ func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error {
} }
} }
if test.Result == SKIP { if test.Result == parser.SKIP {
testCase.SkipMessage = &JUnitSkipMessage{strings.Join(test.Output, "\n")} testCase.SkipMessage = &JUnitSkipMessage{strings.Join(test.Output, "\n")}
} }
@ -126,9 +128,9 @@ func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error {
return nil return nil
} }
func countFailures(tests []Test) (result int) { func countFailures(tests []parser.Test) (result int) {
for _, test := range tests { for _, test := range tests {
if test.Result == FAIL { if test.Result == parser.FAIL {
result++ result++
} }
} }

View File

@ -1,4 +1,4 @@
package main package parser
import ( import (
"bufio" "bufio"