Move junit-formatter.go to its own package for use as a library.

This lets JUnit xml generation be integrated into larger tools
instead of having to run the `go-junit-report` binary as a subprocess.
This commit is contained in:
John Millikin 2018-03-16 16:09:48 -07:00
parent d9db44172d
commit 03cda22671
No known key found for this signature in database
GPG Key ID: 1F7686B8DA217791
3 changed files with 5 additions and 3 deletions

View File

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

View File

@ -5,6 +5,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/jstemmer/go-junit-report/formatter"
"github.com/jstemmer/go-junit-report/parser" "github.com/jstemmer/go-junit-report/parser"
) )
@ -33,7 +34,7 @@ func main() {
} }
// Write xml // Write xml
err = JUnitReportXML(report, noXMLHeader, goVersionFlag, os.Stdout) err = formatter.JUnitReportXML(report, noXMLHeader, goVersionFlag, os.Stdout)
if err != nil { if err != nil {
fmt.Printf("Error writing XML: %s\n", err) fmt.Printf("Error writing XML: %s\n", err)
os.Exit(1) os.Exit(1)

View File

@ -9,6 +9,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/jstemmer/go-junit-report/formatter"
"github.com/jstemmer/go-junit-report/parser" "github.com/jstemmer/go-junit-report/parser"
) )
@ -849,7 +850,7 @@ func testJUnitFormatter(t *testing.T, goVersion string) {
var junitReport bytes.Buffer var junitReport bytes.Buffer
if err = JUnitReportXML(testCase.report, testCase.noXMLHeader, goVersion, &junitReport); err != nil { if err = formatter.JUnitReportXML(testCase.report, testCase.noXMLHeader, goVersion, &junitReport); err != nil {
t.Fatal(err) t.Fatal(err)
} }