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

View File

@ -7,6 +7,8 @@ import (
"io"
"runtime"
"strings"
"github.com/jstemmer/go-junit-report/parser"
)
// 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
// 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{}
// convert Report to JUnit test suites
@ -88,7 +90,7 @@ func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error {
Failure: nil,
}
if test.Result == FAIL {
if test.Result == parser.FAIL {
ts.Failures++
testCase.Failure = &JUnitFailure{
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")}
}
@ -126,9 +128,9 @@ func JUnitReportXML(report *Report, noXMLHeader bool, w io.Writer) error {
return nil
}
func countFailures(tests []Test) (result int) {
func countFailures(tests []parser.Test) (result int) {
for _, test := range tests {
if test.Result == FAIL {
if test.Result == parser.FAIL {
result++
}
}

View File

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