diff --git a/go-junit-report_test.go b/go-junit-report_test.go index 76b5669..ccd50e3 100644 --- a/go-junit-report_test.go +++ b/go-junit-report_test.go @@ -355,6 +355,92 @@ var testCases = []TestCase{ }, }, }, + { + name: "12-go_1_7.txt", + reportName: "12-report.xml", + report: &parser.Report{ + Packages: []parser.Package{ + { + Name: "package/name", + Time: 50, + Tests: []*parser.Test{ + { + Name: "TestOne", + Time: 10, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestOne/Child", + Time: 20, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestOne/Child#01", + Time: 30, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestOne/Child=02", + Time: 40, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestTwo", + Time: 10, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestTwo/Child", + Time: 20, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestTwo/Child#01", + Time: 30, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestTwo/Child=02", + Time: 40, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestThree", + Time: 10, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestThree/a#1", + Time: 20, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestThree/a#1/b#1", + Time: 30, + Result: parser.PASS, + Output: []string{}, + }, + { + Name: "TestThree/a#1/b#1/c#1", + Time: 40, + Result: parser.PASS, + Output: []string{}, + }, + }, + }, + }, + }, + }, } func TestParser(t *testing.T) { diff --git a/parser/parser.go b/parser/parser.go index e2b6650..a6844e1 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -40,7 +40,7 @@ type Test struct { } var ( - regexStatus = regexp.MustCompile(`^--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`) + regexStatus = regexp.MustCompile(`^\s*--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+)(?: seconds|s)\)$`) regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements$`) regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s(?:\s+coverage:\s+(\d+\.\d+)%\s+of\s+statements)?$`) ) diff --git a/tests/12-go_1_7.txt b/tests/12-go_1_7.txt new file mode 100644 index 0000000..de88b1f --- /dev/null +++ b/tests/12-go_1_7.txt @@ -0,0 +1,26 @@ +=== RUN TestOne +=== RUN TestOne/Child +=== RUN TestOne/Child#01 +=== RUN TestOne/Child=02 +--- PASS: TestOne (0.01s) + --- PASS: TestOne/Child (0.02s) + --- PASS: TestOne/Child#01 (0.03s) + --- PASS: TestOne/Child=02 (0.04s) +=== RUN TestTwo +=== RUN TestTwo/Child +=== RUN TestTwo/Child#01 +=== RUN TestTwo/Child=02 +--- PASS: TestTwo (0.01s) + --- PASS: TestTwo/Child (0.02s) + --- PASS: TestTwo/Child#01 (0.03s) + --- PASS: TestTwo/Child=02 (0.04s) +=== RUN TestThree +=== RUN TestThree/a#1 +=== RUN TestThree/a#1/b#1 +=== RUN TestThree/a#1/b#1/c#1 +--- PASS: TestThree (0.01s) + --- PASS: TestThree/a#1 (0.02s) + --- PASS: TestThree/a#1/b#1 (0.03s) + --- PASS: TestThree/a#1/b#1/c#1 (0.04s) +PASS +ok package/name 0.050s diff --git a/tests/12-report.xml b/tests/12-report.xml new file mode 100644 index 0000000..bb21c90 --- /dev/null +++ b/tests/12-report.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + +