Add -match test flag to make testing specific tests easier

This commit is contained in:
Joël Stemmer 2018-04-21 14:37:15 +01:00
parent 6e1ccef4d8
commit c1eb342963

View File

@ -2,9 +2,11 @@ package main
import (
"bytes"
"flag"
"fmt"
"io/ioutil"
"os"
"regexp"
"runtime"
"strings"
"testing"
@ -13,6 +15,8 @@ import (
"github.com/jstemmer/go-junit-report/parser"
)
var matchTest = flag.String("match", "", "only test testdata matching this pattern")
type TestCase struct {
name string
reportName string
@ -830,7 +834,11 @@ var testCases = []TestCase{
}
func TestParser(t *testing.T) {
matchRegex := compileMatch(t)
for _, testCase := range testCases {
if !matchRegex.MatchString(testCase.name) {
continue
}
t.Logf("Test %s", testCase.name)
file, err := os.Open("testdata/" + testCase.name)
@ -904,7 +912,12 @@ func TestVersionFlag(t *testing.T) {
}
func testJUnitFormatter(t *testing.T, goVersion string) {
match := compileMatch(t)
for _, testCase := range testCases {
if !match.MatchString(testCase.name) {
continue
}
report, err := loadTestReport(testCase.reportName, goVersion)
if err != nil {
t.Fatal(err)
@ -938,3 +951,11 @@ func loadTestReport(name, goVersion string) (string, error) {
return report, nil
}
func compileMatch(t *testing.T) *regexp.Regexp {
rx, err := regexp.Compile(*matchTest)
if err != nil {
t.Fatalf("Error compiling -match flag %q: %v", *matchTest, err)
}
return rx
}