1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00

tests: Add benchmarks to test suite

This commit is contained in:
Alexander Neumann 2017-05-13 21:12:29 +02:00
parent 1c9159d6a0
commit f142b1c22f
3 changed files with 67 additions and 17 deletions

View File

@ -19,3 +19,8 @@ var testFunctions = []struct {
{"Backend", BackendTestBackend},
{"Delete", BackendTestDelete},
}
var benchmarkFunctions = []struct {
Name string
Fn func(t testing.TB, suite *Suite)
}{}

View File

@ -4,12 +4,13 @@ package main
import (
"bufio"
"bytes"
"flag"
"fmt"
"go/format"
"io"
"log"
"os"
"os/exec"
"path/filepath"
"regexp"
"text/template"
@ -18,8 +19,9 @@ import (
)
var data struct {
Package string
Funcs []string
Package string
TestFuncs []string
BenchmarkFuncs []string
}
var testTemplate = `
@ -35,10 +37,19 @@ var testFunctions = []struct {
Name string
Fn func(t testing.TB, suite *Suite)
}{
{{ range $f := .Funcs -}}
{{ range $f := .TestFuncs -}}
{"{{ $f }}", BackendTest{{ $f }},},
{{ end }}
}
var benchmarkFunctions = []struct {
Name string
Fn func(t testing.TB, suite *Suite)
}{
{{ range $f := .BenchmarkFuncs -}}
{"{{ $f }}", BackendBenchmark{{ $f }},},
{{ end }}
}
`
var testFile = flag.String("testfile", "tests.go", "file to search test functions in")
@ -56,17 +67,23 @@ func errx(err error) {
os.Exit(1)
}
var funcRegex = regexp.MustCompile(`^func\s+BackendTest(.+)\s*\(`)
var testFuncRegex = regexp.MustCompile(`^func\s+BackendTest(.+)\s*\(`)
var benchmarkFuncRegex = regexp.MustCompile(`^func\s+BackendBenchmark(.+)\s*\(`)
func findTestFunctions() (funcs []string) {
func findFunctions() (testFuncs, benchmarkFuncs []string) {
f, err := os.Open(*testFile)
errx(err)
sc := bufio.NewScanner(f)
for sc.Scan() {
match := funcRegex.FindStringSubmatch(sc.Text())
match := testFuncRegex.FindStringSubmatch(sc.Text())
if len(match) > 0 {
funcs = append(funcs, match[1])
testFuncs = append(testFuncs, match[1])
}
match = benchmarkFuncRegex.FindStringSubmatch(sc.Text())
if len(match) > 0 {
benchmarkFuncs = append(benchmarkFuncs, match[1])
}
}
@ -75,20 +92,20 @@ func findTestFunctions() (funcs []string) {
}
errx(f.Close())
return funcs
return testFuncs, benchmarkFuncs
}
func generateOutput(wr io.Writer, data interface{}) {
t := template.Must(template.New("backendtest").Parse(testTemplate))
cmd := exec.Command("gofmt")
cmd.Stdout = wr
in, err := cmd.StdinPipe()
buf := bytes.NewBuffer(nil)
errx(t.Execute(buf, data))
source, err := format.Source(buf.Bytes())
errx(err)
_, err = wr.Write(source)
errx(err)
errx(cmd.Start())
errx(t.Execute(in, data))
errx(in.Close())
errx(cmd.Wait())
}
func packageTestFunctionPrefix(pkg string) string {
@ -120,7 +137,7 @@ func main() {
errx(err)
data.Package = pkg
data.Funcs = findTestFunctions()
data.TestFuncs, data.BenchmarkFuncs = findFunctions()
generateOutput(f, data)
errx(f.Close())

View File

@ -68,6 +68,34 @@ func (s *Suite) RunTests(t *testing.T) {
}
}
// RunBenchmarks executes all defined benchmarks as subtests of b.
func (s *Suite) RunBenchmarks(b *testing.B) {
var err error
s.Config, err = s.NewConfig()
if err != nil {
b.Fatal(err)
}
// test create/open functions first
be := s.create(b)
s.close(b, be)
for _, test := range benchmarkFunctions {
b.Run(test.Name, func(b *testing.B) {
test.Fn(b, s)
})
}
if !test.TestCleanupTempDirs {
b.Logf("not cleaning up backend")
return
}
if err = s.Cleanup(s.Config); err != nil {
b.Fatal(err)
}
}
func (s *Suite) create(t testing.TB) restic.Backend {
be, err := s.Create(s.Config)
if err != nil {