123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- // This program reads all assertion functions from the assert package and
- // automatically generates the corresponding requires and forwarded assertions
- package main
- import (
- "bytes"
- "flag"
- "fmt"
- "go/ast"
- "go/build"
- "go/doc"
- "go/format"
- "go/importer"
- "go/parser"
- "go/token"
- "go/types"
- "io"
- "io/ioutil"
- "log"
- "os"
- "path"
- "strings"
- "text/template"
- "github.com/ernesto-jimenez/gogen/imports"
- )
- var (
- pkg = flag.String("assert-path", "github.com/stretchr/testify/assert", "Path to the assert package")
- outputPkg = flag.String("output-package", "", "package for the resulting code")
- tmplFile = flag.String("template", "", "What file to load the function template from")
- out = flag.String("out", "", "What file to write the source code to")
- )
- func main() {
- flag.Parse()
- scope, docs, err := parsePackageSource(*pkg)
- if err != nil {
- log.Fatal(err)
- }
- importer, funcs, err := analyzeCode(scope, docs)
- if err != nil {
- log.Fatal(err)
- }
- if err := generateCode(importer, funcs); err != nil {
- log.Fatal(err)
- }
- }
- func generateCode(importer imports.Importer, funcs []testFunc) error {
- buff := bytes.NewBuffer(nil)
- tmplHead, tmplFunc, err := parseTemplates()
- if err != nil {
- return err
- }
- // Generate header
- if err := tmplHead.Execute(buff, struct {
- Name string
- Imports map[string]string
- }{
- *outputPkg,
- importer.Imports(),
- }); err != nil {
- return err
- }
- // Generate funcs
- for _, fn := range funcs {
- buff.Write([]byte("\n\n"))
- if err := tmplFunc.Execute(buff, &fn); err != nil {
- return err
- }
- }
- code, err := format.Source(buff.Bytes())
- if err != nil {
- return err
- }
- // Write file
- output, err := outputFile()
- if err != nil {
- return err
- }
- defer output.Close()
- _, err = io.Copy(output, bytes.NewReader(code))
- return err
- }
- func parseTemplates() (*template.Template, *template.Template, error) {
- tmplHead, err := template.New("header").Parse(headerTemplate)
- if err != nil {
- return nil, nil, err
- }
- if *tmplFile != "" {
- f, err := ioutil.ReadFile(*tmplFile)
- if err != nil {
- return nil, nil, err
- }
- funcTemplate = string(f)
- }
- tmpl, err := template.New("function").Parse(funcTemplate)
- if err != nil {
- return nil, nil, err
- }
- return tmplHead, tmpl, nil
- }
- func outputFile() (*os.File, error) {
- filename := *out
- if filename == "-" || (filename == "" && *tmplFile == "") {
- return os.Stdout, nil
- }
- if filename == "" {
- filename = strings.TrimSuffix(strings.TrimSuffix(*tmplFile, ".tmpl"), ".go") + ".go"
- }
- return os.Create(filename)
- }
- // analyzeCode takes the types scope and the docs and returns the import
- // information and information about all the assertion functions.
- func analyzeCode(scope *types.Scope, docs *doc.Package) (imports.Importer, []testFunc, error) {
- testingT := scope.Lookup("TestingT").Type().Underlying().(*types.Interface)
- importer := imports.New(*outputPkg)
- var funcs []testFunc
- // Go through all the top level functions
- for _, fdocs := range docs.Funcs {
- // Find the function
- obj := scope.Lookup(fdocs.Name)
- fn, ok := obj.(*types.Func)
- if !ok {
- continue
- }
- // Check function signature has at least two arguments
- sig := fn.Type().(*types.Signature)
- if sig.Params().Len() < 2 {
- continue
- }
- // Check first argument is of type testingT
- first, ok := sig.Params().At(0).Type().(*types.Named)
- if !ok {
- continue
- }
- firstType, ok := first.Underlying().(*types.Interface)
- if !ok {
- continue
- }
- if !types.Implements(firstType, testingT) {
- continue
- }
- funcs = append(funcs, testFunc{*outputPkg, fdocs, fn})
- importer.AddImportsFrom(sig.Params())
- }
- return importer, funcs, nil
- }
- // parsePackageSource returns the types scope and the package documentation from the package
- func parsePackageSource(pkg string) (*types.Scope, *doc.Package, error) {
- pd, err := build.Import(pkg, ".", 0)
- if err != nil {
- return nil, nil, err
- }
- fset := token.NewFileSet()
- files := make(map[string]*ast.File)
- fileList := make([]*ast.File, len(pd.GoFiles))
- for i, fname := range pd.GoFiles {
- src, err := ioutil.ReadFile(path.Join(pd.SrcRoot, pd.ImportPath, fname))
- if err != nil {
- return nil, nil, err
- }
- f, err := parser.ParseFile(fset, fname, src, parser.ParseComments|parser.AllErrors)
- if err != nil {
- return nil, nil, err
- }
- files[fname] = f
- fileList[i] = f
- }
- cfg := types.Config{
- Importer: importer.Default(),
- }
- info := types.Info{
- Defs: make(map[*ast.Ident]types.Object),
- }
- tp, err := cfg.Check(pkg, fset, fileList, &info)
- if err != nil {
- return nil, nil, err
- }
- scope := tp.Scope()
- ap, _ := ast.NewPackage(fset, files, nil, nil)
- docs := doc.New(ap, pkg, 0)
- return scope, docs, nil
- }
- type testFunc struct {
- CurrentPkg string
- DocInfo *doc.Func
- TypeInfo *types.Func
- }
- func (f *testFunc) Qualifier(p *types.Package) string {
- if p == nil || p.Name() == f.CurrentPkg {
- return ""
- }
- return p.Name()
- }
- func (f *testFunc) Params() string {
- sig := f.TypeInfo.Type().(*types.Signature)
- params := sig.Params()
- p := ""
- comma := ""
- to := params.Len()
- var i int
- if sig.Variadic() {
- to--
- }
- for i = 1; i < to; i++ {
- param := params.At(i)
- p += fmt.Sprintf("%s%s %s", comma, param.Name(), types.TypeString(param.Type(), f.Qualifier))
- comma = ", "
- }
- if sig.Variadic() {
- param := params.At(params.Len() - 1)
- p += fmt.Sprintf("%s%s ...%s", comma, param.Name(), types.TypeString(param.Type().(*types.Slice).Elem(), f.Qualifier))
- }
- return p
- }
- func (f *testFunc) ForwardedParams() string {
- sig := f.TypeInfo.Type().(*types.Signature)
- params := sig.Params()
- p := ""
- comma := ""
- to := params.Len()
- var i int
- if sig.Variadic() {
- to--
- }
- for i = 1; i < to; i++ {
- param := params.At(i)
- p += fmt.Sprintf("%s%s", comma, param.Name())
- comma = ", "
- }
- if sig.Variadic() {
- param := params.At(params.Len() - 1)
- p += fmt.Sprintf("%s%s...", comma, param.Name())
- }
- return p
- }
- func (f *testFunc) Comment() string {
- return "// " + strings.Replace(strings.TrimSpace(f.DocInfo.Doc), "\n", "\n// ", -1)
- }
- func (f *testFunc) CommentWithoutT(receiver string) string {
- search := fmt.Sprintf("assert.%s(t, ", f.DocInfo.Name)
- replace := fmt.Sprintf("%s.%s(", receiver, f.DocInfo.Name)
- return strings.Replace(f.Comment(), search, replace, -1)
- }
- var headerTemplate = `/*
- * CODE GENERATED AUTOMATICALLY WITH github.com/stretchr/testify/_codegen
- * THIS FILE MUST NOT BE EDITED BY HAND
- */
- package {{.Name}}
- import (
- {{range $path, $name := .Imports}}
- {{$name}} "{{$path}}"{{end}}
- )
- `
- var funcTemplate = `{{.Comment}}
- func (fwd *AssertionsForwarder) {{.DocInfo.Name}}({{.Params}}) bool {
- return assert.{{.DocInfo.Name}}({{.ForwardedParams}})
- }`
|