mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Properly handle subtest prefixes
This commit is contained in:
parent
8ec797a84c
commit
2e3761de80
@ -24,7 +24,7 @@ type Event struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
regexEndTest = regexp.MustCompile(`--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
|
regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
|
||||||
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
||||||
regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` +
|
regexSummary = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+` +
|
||||||
`(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))` +
|
`(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))` +
|
||||||
@ -57,8 +57,8 @@ func (p *parser) parseLine(line string) {
|
|||||||
p.runTest(line[8:])
|
p.runTest(line[8:])
|
||||||
} else if strings.HasPrefix(line, "=== PAUSE ") {
|
} else if strings.HasPrefix(line, "=== PAUSE ") {
|
||||||
} else if strings.HasPrefix(line, "=== CONT ") {
|
} else if strings.HasPrefix(line, "=== CONT ") {
|
||||||
} else if matches := regexEndTest.FindStringSubmatch(line); len(matches) == 4 {
|
} else if matches := regexEndTest.FindStringSubmatch(line); len(matches) == 5 {
|
||||||
p.endTest(matches[1], matches[2], matches[3])
|
p.endTest(matches[1], matches[2], matches[3], matches[4])
|
||||||
} else if matches := regexStatus.FindStringSubmatch(line); len(matches) == 2 {
|
} else if matches := regexStatus.FindStringSubmatch(line); len(matches) == 2 {
|
||||||
p.status(matches[1])
|
p.status(matches[1])
|
||||||
} else if matches := regexSummary.FindStringSubmatch(line); len(matches) == 6 {
|
} else if matches := regexSummary.FindStringSubmatch(line); len(matches) == 6 {
|
||||||
@ -93,12 +93,14 @@ func (p *parser) runTest(name string) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *parser) endTest(result, name, duration string) {
|
func (p *parser) endTest(indent, result, name, duration string) {
|
||||||
|
_, n := stripIndent(indent)
|
||||||
p.add(Event{
|
p.add(Event{
|
||||||
Type: "end_test",
|
Type: "end_test",
|
||||||
Id: p.findTest(name),
|
Id: p.findTest(name),
|
||||||
Name: name,
|
Name: name,
|
||||||
Result: result,
|
Result: result,
|
||||||
|
Indent: n,
|
||||||
Duration: parseSeconds(duration),
|
Duration: parseSeconds(duration),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -128,13 +130,10 @@ func (p *parser) coverage(percent string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *parser) output(line string) {
|
func (p *parser) output(line string) {
|
||||||
var indent int
|
l, indent := stripIndent(line)
|
||||||
for indent = 0; strings.HasPrefix(line, " "); indent++ {
|
|
||||||
line = line[4:]
|
|
||||||
}
|
|
||||||
p.add(Event{
|
p.add(Event{
|
||||||
Type: "output",
|
Type: "output",
|
||||||
Data: line,
|
Data: l,
|
||||||
Indent: indent,
|
Indent: indent,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -156,3 +155,11 @@ func parseCoverage(percent string) float64 {
|
|||||||
pct, _ := strconv.ParseFloat(percent, 64)
|
pct, _ := strconv.ParseFloat(percent, 64)
|
||||||
return pct
|
return pct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func stripIndent(line string) (string, int) {
|
||||||
|
var indent int
|
||||||
|
for indent = 0; strings.HasPrefix(line, " "); indent++ {
|
||||||
|
line = line[4:]
|
||||||
|
}
|
||||||
|
return line, indent
|
||||||
|
}
|
||||||
|
@ -139,42 +139,43 @@ var tests = []struct {
|
|||||||
{Type: "run_test", Id: 3, Name: "TestOne/Child#01"},
|
{Type: "run_test", Id: 3, Name: "TestOne/Child#01"},
|
||||||
{Type: "run_test", Id: 4, Name: "TestOne/Child=02"},
|
{Type: "run_test", Id: 4, Name: "TestOne/Child=02"},
|
||||||
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS", Duration: 10 * time.Millisecond},
|
{Type: "end_test", Id: 1, Name: "TestOne", Result: "PASS", Duration: 10 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 2, Name: "TestOne/Child", Result: "PASS", Duration: 20 * time.Millisecond},
|
{Type: "end_test", Id: 2, Name: "TestOne/Child", Result: "PASS", Indent: 1, Duration: 20 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 3, Name: "TestOne/Child#01", Result: "PASS", Duration: 30 * time.Millisecond},
|
{Type: "end_test", Id: 3, Name: "TestOne/Child#01", Result: "PASS", Indent: 1, Duration: 30 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 4, Name: "TestOne/Child=02", Result: "PASS", Duration: 40 * time.Millisecond},
|
{Type: "end_test", Id: 4, Name: "TestOne/Child=02", Result: "PASS", Indent: 1, Duration: 40 * time.Millisecond},
|
||||||
{Type: "run_test", Id: 5, Name: "TestTwo"},
|
{Type: "run_test", Id: 5, Name: "TestTwo"},
|
||||||
{Type: "run_test", Id: 6, Name: "TestTwo/Child"},
|
{Type: "run_test", Id: 6, Name: "TestTwo/Child"},
|
||||||
{Type: "run_test", Id: 7, Name: "TestTwo/Child#01"},
|
{Type: "run_test", Id: 7, Name: "TestTwo/Child#01"},
|
||||||
{Type: "run_test", Id: 8, Name: "TestTwo/Child=02"},
|
{Type: "run_test", Id: 8, Name: "TestTwo/Child=02"},
|
||||||
{Type: "end_test", Id: 5, Name: "TestTwo", Result: "PASS", Duration: 10 * time.Millisecond},
|
{Type: "end_test", Id: 5, Name: "TestTwo", Result: "PASS", Duration: 10 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 6, Name: "TestTwo/Child", Result: "PASS", Duration: 20 * time.Millisecond},
|
{Type: "end_test", Id: 6, Name: "TestTwo/Child", Result: "PASS", Indent: 1, Duration: 20 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 7, Name: "TestTwo/Child#01", Result: "PASS", Duration: 30 * time.Millisecond},
|
{Type: "end_test", Id: 7, Name: "TestTwo/Child#01", Result: "PASS", Indent: 1, Duration: 30 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 8, Name: "TestTwo/Child=02", Result: "PASS", Duration: 40 * time.Millisecond},
|
{Type: "end_test", Id: 8, Name: "TestTwo/Child=02", Result: "PASS", Indent: 1, Duration: 40 * time.Millisecond},
|
||||||
{Type: "run_test", Id: 9, Name: "TestThree"},
|
{Type: "run_test", Id: 9, Name: "TestThree"},
|
||||||
{Type: "run_test", Id: 10, Name: "TestThree/a#1"},
|
{Type: "run_test", Id: 10, Name: "TestThree/a#1"},
|
||||||
{Type: "run_test", Id: 11, Name: "TestThree/a#1/b#1"},
|
{Type: "run_test", Id: 11, Name: "TestThree/a#1/b#1"},
|
||||||
{Type: "run_test", Id: 12, Name: "TestThree/a#1/b#1/c#1"},
|
{Type: "run_test", Id: 12, Name: "TestThree/a#1/b#1/c#1"},
|
||||||
{Type: "end_test", Id: 9, Name: "TestThree", Result: "PASS", Duration: 10 * time.Millisecond},
|
{Type: "end_test", Id: 9, Name: "TestThree", Result: "PASS", Duration: 10 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 10, Name: "TestThree/a#1", Result: "PASS", Duration: 20 * time.Millisecond},
|
{Type: "end_test", Id: 10, Name: "TestThree/a#1", Result: "PASS", Indent: 1, Duration: 20 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 11, Name: "TestThree/a#1/b#1", Result: "PASS", Duration: 30 * time.Millisecond},
|
{Type: "end_test", Id: 11, Name: "TestThree/a#1/b#1", Result: "PASS", Indent: 2, Duration: 30 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 12, Name: "TestThree/a#1/b#1/c#1", Result: "PASS", Duration: 40 * time.Millisecond},
|
{Type: "end_test", Id: 12, Name: "TestThree/a#1/b#1/c#1", Result: "PASS", Indent: 3, Duration: 40 * time.Millisecond},
|
||||||
{Type: "run_test", Id: 13, Name: "TestFour"},
|
{Type: "run_test", Id: 13, Name: "TestFour"},
|
||||||
{Type: "run_test", Id: 14, Name: "TestFour/#00"},
|
{Type: "run_test", Id: 14, Name: "TestFour/#00"},
|
||||||
{Type: "run_test", Id: 15, Name: "TestFour/#01"},
|
{Type: "run_test", Id: 15, Name: "TestFour/#01"},
|
||||||
{Type: "run_test", Id: 16, Name: "TestFour/#02"},
|
{Type: "run_test", Id: 16, Name: "TestFour/#02"},
|
||||||
{Type: "end_test", Id: 13, Name: "TestFour", Result: "FAIL", Duration: 20 * time.Millisecond},
|
{Type: "end_test", Id: 13, Name: "TestFour", Result: "FAIL", Duration: 20 * time.Millisecond},
|
||||||
{Type: "end_test", Id: 14, Name: "TestFour/#00", Result: "FAIL", Duration: 0},
|
{Type: "end_test", Id: 14, Name: "TestFour/#00", Result: "FAIL", Indent: 1, Duration: 0},
|
||||||
{Type: "output", Data: "\texample.go:12: Expected abc OBTAINED:"},
|
{Type: "output", Data: "\texample.go:12: Expected abc OBTAINED:", Indent: 1},
|
||||||
{Type: "output", Data: "\t\txyz"},
|
{Type: "output", Data: "\t\txyz", Indent: 1},
|
||||||
{Type: "output", Data: "\texample.go:123: Expected and obtained are different."},
|
{Type: "output", Data: "\texample.go:123: Expected and obtained are different.", Indent: 1},
|
||||||
{Type: "end_test", Id: 15, Name: "TestFour/#01", Result: "SKIP", Duration: 0},
|
{Type: "end_test", Id: 15, Name: "TestFour/#01", Result: "SKIP", Indent: 1, Duration: 0},
|
||||||
{Type: "end_test", Id: 16, Name: "TestFour/#02", Result: "PASS", Duration: 0},
|
{Type: "output", Data: "\texample.go:1234: Not supported yet.", Indent: 1},
|
||||||
|
{Type: "end_test", Id: 16, Name: "TestFour/#02", Result: "PASS", Indent: 1, Duration: 0},
|
||||||
{Type: "run_test", Id: 17, Name: "TestFive"},
|
{Type: "run_test", Id: 17, Name: "TestFive"},
|
||||||
{Type: "end_test", Id: 17, Name: "TestFive", Result: "SKIP", Duration: 0},
|
{Type: "end_test", Id: 17, Name: "TestFive", Result: "SKIP", Duration: 0},
|
||||||
{Type: "output", Data: "example.go:1392: Not supported yet."},
|
{Type: "output", Data: "\texample.go:1392: Not supported yet."},
|
||||||
{Type: "run_test", Id: 18, Name: "TestSix"},
|
{Type: "run_test", Id: 18, Name: "TestSix"},
|
||||||
{Type: "end_test", Id: 18, Name: "TestSix", Result: "FAIL", Duration: 0},
|
{Type: "end_test", Id: 18, Name: "TestSix", Result: "FAIL", Duration: 0},
|
||||||
{Type: "output", Data: "example.go:371: This should not fail!"},
|
{Type: "output", Data: "\texample.go:371: This should not fail!"},
|
||||||
{Type: "status", Result: "FAIL"},
|
{Type: "status", Result: "FAIL"},
|
||||||
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 50 * time.Millisecond},
|
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 50 * time.Millisecond},
|
||||||
}},
|
}},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user