-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrpcGen_test.go
134 lines (130 loc) · 3.45 KB
/
grpcGen_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package main
import (
"go/ast"
"go/parser"
"go/token"
"reflect"
"testing"
)
func TestCorrectTypes(t *testing.T) {
expects := map[string][]*MsgMember{
"Test": []*MsgMember{
{Name: "Age", Type: "uint32"},
{Name: "Name", Type: "bytes"},
{Name: "Money", Type: "int32"},
{Name: "Account", Type: "repeated string"},
{Name: "TMap", Type: "map<string, Bar>"},
{Name: "PointerS", Type: "Bar"},
{Name: "Void", Type: "google.protobuf.Value"},
{Name: "VoidMap", Type: "map<string, google.protobuf.Value>"},
},
}
actuals := map[string][]*MsgMember{
"Test": []*MsgMember{
{Name: "Age", Type: "uint"},
{Name: "Name", Type: "[]byte"},
{Name: "Money", Type: "int"},
{Name: "Account", Type: "[]string"},
{Name: "TMap", Type: "map[string]*Bar"},
{Name: "PointerS", Type: "*Bar"},
{Name: "Void", Type: "interface{}"},
{Name: "VoidMap", Type: "map[string]interface{}"},
},
}
err := correctTypes(actuals)
if err != nil {
t.Fatal(err)
}
for i := 0; i < len(expects["Test"]); i++ {
expectName := expects["Test"][i].Name
actualName := actuals["Test"][i].Name
expectType := expects["Test"][i].Type
actualType := actuals["Test"][i].Type
if expectName != actualName {
t.Errorf("name -> expect:%q, atcaul:%q", expectName, actualName)
}
if expectType != actualType {
t.Errorf("type -> expect:%q, atcaul:%q", expectType, actualType)
}
}
}
func TestFetchMsg(t *testing.T) {
src := `
package grpc_test
// @grpcGen:Message
type Reply struct {
Name string
Email string
Counter int32
}`
expect := []*Msg{
{
Name: "Reply",
Members: []*MsgMember{
{Name: "Name", Type: "string"},
{Name: "Email", Type: "string"},
{Name: "Counter", Type: "int32"},
},
},
}
actual := []*Msg{}
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
if err != nil {
t.Fatal(err)
}
for i, decl := range f.Decls {
if genDecl, ok := decl.(*ast.GenDecl); ok {
if msg, err := fetchMsg(genDecl); err == nil {
actual = append(actual, msg)
} else {
t.Errorf("decl[%d] fetchMsg: %q", i, err)
}
} else {
t.Errorf("decl[%d] cannot be converted into GenDecl", i)
}
}
if !reflect.DeepEqual(expect, actual) {
t.Errorf("actual and expect are not the same")
}
}
func TestFetchSrv(t *testing.T) {
src := `
package grpc_test
// @grpcGen:Service
// @grpcGen:SrvName: Greeting
func (q *server) SayHello(ctx context.Context, in *pb.Request) (out *pb.Reply, err error) {
return &pb.Reply{Message: "Hello " + in.Name}, nil
}
// @grpcGen:Service
// @grpcGen:SrvName: Greeting
func (q *server) SayYa(ctx context.Context, in *pb.Request) (out *pb.Reply, err error) {
return &pb.Reply{Message: "Ya " + in.Name}, nil
}`
expect := map[string][]*SrvFunc{
"Greeting": []*SrvFunc{
{Name: "SayHello", In: "Request", Out: "Reply"},
{Name: "SayYa", In: "Request", Out: "Reply"},
},
}
actual := make(map[string][]*SrvFunc)
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
if err != nil {
t.Fatal(err)
}
for i, decl := range f.Decls {
if funcDecl, ok := decl.(*ast.FuncDecl); ok {
if srv, err := fetchSrv(funcDecl); err == nil {
actual[srv.Name] = append(actual[srv.Name], srv.Funcs)
} else {
t.Errorf("decl[%d] fetchSrv: %q", i, err)
}
} else {
t.Errorf("decl[%d] cannot be converted into FuncDecl", i)
}
}
if !reflect.DeepEqual(expect, actual) {
t.Errorf("actual and expect are not the same")
}
}