2015-06-24 02:21:00 +02:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-03-24 04:39:43 +01:00
|
|
|
package main
|
2015-06-24 02:21:00 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"go/ast"
|
|
|
|
"go/parser"
|
|
|
|
"go/token"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"text/template"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
output = flag.String("o", "", "output filename")
|
|
|
|
pkg = flag.String("pkg", "", "test package")
|
|
|
|
exitCode = 0
|
|
|
|
)
|
|
|
|
|
|
|
|
type data struct {
|
|
|
|
Package string
|
|
|
|
Tests []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func findTests(srcs []string) (tests []string) {
|
|
|
|
for _, src := range srcs {
|
|
|
|
f, err := parser.ParseFile(token.NewFileSet(), src, nil, 0)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
for _, obj := range f.Scope.Objects {
|
|
|
|
if obj.Kind != ast.Fun || !strings.HasPrefix(obj.Name, "Test") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tests = append(tests, obj.Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
if flag.NArg() == 0 {
|
|
|
|
fmt.Fprintln(os.Stderr, "error: must pass at least one input")
|
|
|
|
exitCode = 1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
|
|
|
|
d := data{
|
|
|
|
Package: *pkg,
|
|
|
|
Tests: findTests(flag.Args()),
|
|
|
|
}
|
|
|
|
|
|
|
|
err := testMainTmpl.Execute(buf, d)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ioutil.WriteFile(*output, buf.Bytes(), 0666)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testMainTmpl = template.Must(template.New("testMain").Parse(`
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-01-18 23:37:13 +01:00
|
|
|
"regexp"
|
2015-06-24 02:21:00 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
pkg "{{.Package}}"
|
|
|
|
)
|
|
|
|
|
|
|
|
var t = []testing.InternalTest{
|
|
|
|
{{range .Tests}}
|
|
|
|
{"{{.}}", pkg.{{.}}},
|
|
|
|
{{end}}
|
|
|
|
}
|
|
|
|
|
2017-01-18 23:37:13 +01:00
|
|
|
var matchPat string
|
|
|
|
var matchRe *regexp.Regexp
|
|
|
|
|
|
|
|
func matchString(pat, str string) (result bool, err error) {
|
|
|
|
if matchRe == nil || matchPat != pat {
|
|
|
|
matchPat = pat
|
|
|
|
matchRe, err = regexp.Compile(matchPat)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return matchRe.MatchString(str), nil
|
2015-06-24 02:21:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
testing.Main(matchString, t, nil, nil)
|
|
|
|
}
|
|
|
|
`))
|