123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- // Copyright 2018 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package protogen
- import (
- "flag"
- "fmt"
- "testing"
- "github.com/google/go-cmp/cmp"
- "google.golang.org/protobuf/proto"
- "google.golang.org/protobuf/reflect/protoreflect"
- "google.golang.org/protobuf/types/descriptorpb"
- "google.golang.org/protobuf/types/pluginpb"
- )
- func TestPluginParameters(t *testing.T) {
- var flags flag.FlagSet
- value := flags.Int("integer", 0, "")
- opts := &Options{
- ParamFunc: flags.Set,
- }
- const params = "integer=2"
- _, err := New(&pluginpb.CodeGeneratorRequest{
- Parameter: proto.String(params),
- }, opts)
- if err != nil {
- t.Errorf("New(generator parameters %q): %v", params, err)
- }
- if *value != 2 {
- t.Errorf("New(generator parameters %q): integer=%v, want 2", params, *value)
- }
- }
- func TestPluginParameterErrors(t *testing.T) {
- for _, parameter := range []string{
- "unknown=1",
- "boolean=error",
- } {
- var flags flag.FlagSet
- flags.Bool("boolean", false, "")
- opts := &Options{
- ParamFunc: flags.Set,
- }
- _, err := New(&pluginpb.CodeGeneratorRequest{
- Parameter: proto.String(parameter),
- }, opts)
- if err == nil {
- t.Errorf("New(generator parameters %q): want error, got nil", parameter)
- }
- }
- }
- func TestNoGoPackage(t *testing.T) {
- gen, err := New(&pluginpb.CodeGeneratorRequest{
- ProtoFile: []*descriptorpb.FileDescriptorProto{
- {
- Name: proto.String("testdata/go_package/no_go_package.proto"),
- Syntax: proto.String(protoreflect.Proto3.String()),
- Package: proto.String("goproto.testdata"),
- },
- {
- Name: proto.String("testdata/go_package/no_go_package_import.proto"),
- Syntax: proto.String(protoreflect.Proto3.String()),
- Package: proto.String("goproto.testdata"),
- Dependency: []string{"go_package/no_go_package.proto"},
- },
- },
- }, nil)
- if err != nil {
- t.Fatal(err)
- }
- for i, f := range gen.Files {
- if got, want := string(f.GoPackageName), "goproto_testdata"; got != want {
- t.Errorf("gen.Files[%d].GoPackageName = %v, want %v", i, got, want)
- }
- if got, want := string(f.GoImportPath), "testdata/go_package"; got != want {
- t.Errorf("gen.Files[%d].GoImportPath = %v, want %v", i, got, want)
- }
- }
- }
- func TestPackageNamesAndPaths(t *testing.T) {
- const (
- filename = "dir/filename.proto"
- protoPackageName = "proto.package"
- )
- for _, test := range []struct {
- desc string
- parameter string
- goPackageOption string
- generate bool
- wantPackageName GoPackageName
- wantImportPath GoImportPath
- wantFilenamePrefix string
- }{
- {
- desc: "no parameters, no go_package option",
- generate: true,
- wantPackageName: "proto_package",
- wantImportPath: "dir",
- wantFilenamePrefix: "dir/filename",
- },
- {
- desc: "go_package option sets import path",
- goPackageOption: "golang.org/x/foo",
- generate: true,
- wantPackageName: "foo",
- wantImportPath: "golang.org/x/foo",
- wantFilenamePrefix: "golang.org/x/foo/filename",
- },
- {
- desc: "go_package option sets import path and package",
- goPackageOption: "golang.org/x/foo;bar",
- generate: true,
- wantPackageName: "bar",
- wantImportPath: "golang.org/x/foo",
- wantFilenamePrefix: "golang.org/x/foo/filename",
- },
- {
- desc: "go_package option sets package",
- goPackageOption: "foo",
- generate: true,
- wantPackageName: "foo",
- wantImportPath: "dir",
- wantFilenamePrefix: "dir/filename",
- },
- {
- desc: "command line sets import path for a file",
- parameter: "Mdir/filename.proto=golang.org/x/bar",
- goPackageOption: "golang.org/x/foo",
- generate: true,
- wantPackageName: "foo",
- wantImportPath: "golang.org/x/bar",
- wantFilenamePrefix: "golang.org/x/foo/filename",
- },
- {
- desc: "import_path parameter sets import path of generated files",
- parameter: "import_path=golang.org/x/bar",
- goPackageOption: "golang.org/x/foo",
- generate: true,
- wantPackageName: "foo",
- wantImportPath: "golang.org/x/bar",
- wantFilenamePrefix: "golang.org/x/foo/filename",
- },
- {
- desc: "import_path parameter does not set import path of dependencies",
- parameter: "import_path=golang.org/x/bar",
- goPackageOption: "golang.org/x/foo",
- generate: false,
- wantPackageName: "foo",
- wantImportPath: "golang.org/x/foo",
- wantFilenamePrefix: "golang.org/x/foo/filename",
- },
- } {
- context := fmt.Sprintf(`
- TEST: %v
- --go_out=%v:.
- file %q: generate=%v
- option go_package = %q;
- `,
- test.desc, test.parameter, filename, test.generate, test.goPackageOption)
- req := &pluginpb.CodeGeneratorRequest{
- Parameter: proto.String(test.parameter),
- ProtoFile: []*descriptorpb.FileDescriptorProto{
- {
- Name: proto.String(filename),
- Package: proto.String(protoPackageName),
- Options: &descriptorpb.FileOptions{
- GoPackage: proto.String(test.goPackageOption),
- },
- },
- },
- }
- if test.generate {
- req.FileToGenerate = []string{filename}
- }
- gen, err := New(req, nil)
- if err != nil {
- t.Errorf("%vNew(req) = %v", context, err)
- continue
- }
- gotFile, ok := gen.FilesByPath[filename]
- if !ok {
- t.Errorf("%v%v: missing file info", context, filename)
- continue
- }
- if got, want := gotFile.GoPackageName, test.wantPackageName; got != want {
- t.Errorf("%vGoPackageName=%v, want %v", context, got, want)
- }
- if got, want := gotFile.GoImportPath, test.wantImportPath; got != want {
- t.Errorf("%vGoImportPath=%v, want %v", context, got, want)
- }
- if got, want := gotFile.GeneratedFilenamePrefix, test.wantFilenamePrefix; got != want {
- t.Errorf("%vGeneratedFilenamePrefix=%v, want %v", context, got, want)
- }
- }
- }
- func TestPackageNameInference(t *testing.T) {
- gen, err := New(&pluginpb.CodeGeneratorRequest{
- ProtoFile: []*descriptorpb.FileDescriptorProto{
- {
- Name: proto.String("dir/file1.proto"),
- Package: proto.String("proto.package"),
- },
- {
- Name: proto.String("dir/file2.proto"),
- Package: proto.String("proto.package"),
- Options: &descriptorpb.FileOptions{
- GoPackage: proto.String("foo"),
- },
- },
- },
- FileToGenerate: []string{"dir/file1.proto", "dir/file2.proto"},
- }, nil)
- if err != nil {
- t.Fatalf("New(req) = %v", err)
- }
- if f1, ok := gen.FilesByPath["dir/file1.proto"]; !ok {
- t.Errorf("missing file info for dir/file1.proto")
- } else if f1.GoPackageName != "foo" {
- t.Errorf("dir/file1.proto: GoPackageName=%v, want foo; package name should be derived from dir/file2.proto", f1.GoPackageName)
- }
- }
- func TestInconsistentPackageNames(t *testing.T) {
- _, err := New(&pluginpb.CodeGeneratorRequest{
- ProtoFile: []*descriptorpb.FileDescriptorProto{
- {
- Name: proto.String("dir/file1.proto"),
- Package: proto.String("proto.package"),
- Options: &descriptorpb.FileOptions{
- GoPackage: proto.String("golang.org/x/foo"),
- },
- },
- {
- Name: proto.String("dir/file2.proto"),
- Package: proto.String("proto.package"),
- Options: &descriptorpb.FileOptions{
- GoPackage: proto.String("golang.org/x/foo;bar"),
- },
- },
- },
- FileToGenerate: []string{"dir/file1.proto", "dir/file2.proto"},
- }, nil)
- if err == nil {
- t.Fatalf("inconsistent package names for the same import path: New(req) = nil, want error")
- }
- }
- func TestImports(t *testing.T) {
- gen, err := New(&pluginpb.CodeGeneratorRequest{}, nil)
- if err != nil {
- t.Fatal(err)
- }
- g := gen.NewGeneratedFile("foo.go", "golang.org/x/foo")
- g.P("package foo")
- g.P()
- for _, importPath := range []GoImportPath{
- "golang.org/x/foo",
- // Multiple references to the same package.
- "golang.org/x/bar",
- "golang.org/x/bar",
- // Reference to a different package with the same basename.
- "golang.org/y/bar",
- "golang.org/x/baz",
- // Reference to a package conflicting with a predeclared identifier.
- "golang.org/z/string",
- } {
- g.P("var _ = ", GoIdent{GoName: "X", GoImportPath: importPath}, " // ", importPath)
- }
- want := `package foo
- import (
- bar "golang.org/x/bar"
- baz "golang.org/x/baz"
- bar1 "golang.org/y/bar"
- string1 "golang.org/z/string"
- )
- var _ = X // "golang.org/x/foo"
- var _ = bar.X // "golang.org/x/bar"
- var _ = bar.X // "golang.org/x/bar"
- var _ = bar1.X // "golang.org/y/bar"
- var _ = baz.X // "golang.org/x/baz"
- var _ = string1.X // "golang.org/z/string"
- `
- got, err := g.Content()
- if err != nil {
- t.Fatalf("g.Content() = %v", err)
- }
- if diff := cmp.Diff(string(want), string(got)); diff != "" {
- t.Fatalf("content mismatch (-want +got):\n%s", diff)
- }
- }
- func TestImportRewrites(t *testing.T) {
- gen, err := New(&pluginpb.CodeGeneratorRequest{}, &Options{
- ImportRewriteFunc: func(i GoImportPath) GoImportPath {
- return "prefix/" + i
- },
- })
- if err != nil {
- t.Fatal(err)
- }
- g := gen.NewGeneratedFile("foo.go", "golang.org/x/foo")
- g.P("package foo")
- g.P("var _ = ", GoIdent{GoName: "X", GoImportPath: "golang.org/x/bar"})
- want := `package foo
- import (
- bar "prefix/golang.org/x/bar"
- )
- var _ = bar.X
- `
- got, err := g.Content()
- if err != nil {
- t.Fatalf("g.Content() = %v", err)
- }
- if diff := cmp.Diff(string(want), string(got)); diff != "" {
- t.Fatalf("content mismatch (-want +got):\n%s", diff)
- }
- }
|