-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrpc_test.go
93 lines (85 loc) · 2.34 KB
/
grpc_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
package crzerolog
import (
"bytes"
"context"
"encoding/json"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"google.golang.org/grpc"
"google.golang.org/grpc/metadata"
)
func TestInjectLoggerInterceptor(t *testing.T) {
tests := []struct {
desc string
md metadata.MD
handler func(context.Context, interface{}) (interface{}, error)
want logEntry
}{
{
desc: "With x-cloud-trace-context",
md: metadata.Pairs("x-cloud-trace-context", "0123456789abcdef0123456789abcdef/123;o=1"),
handler: func(ctx context.Context, req interface{}) (interface{}, error) {
logger := log.Ctx(ctx)
logger.Debug().Msg("hi") // Debug log is ignored
logger.Info().Msg("hello")
return nil, nil
},
want: logEntry{
Time: "ignore",
Severity: "INFO",
SourceLocation: sourceLocation{
File: "grpc_test.go",
Line: "ignore",
Function: "ignore",
},
Trace: "projects/myproject/traces/0123456789abcdef0123456789abcdef",
Message: "hello",
},
},
{
desc: "Without x-cloud-trace-context",
md: metadata.New(nil),
handler: func(ctx context.Context, req interface{}) (interface{}, error) {
logger := log.Ctx(ctx)
logger.Debug().Msg("hi") // Debug log is ignored
logger.Info().Msg("hello")
return nil, nil
},
want: logEntry{
Time: "ignore",
Severity: "INFO",
SourceLocation: sourceLocation{
File: "grpc_test.go",
Line: "ignore",
Function: "ignore",
},
Trace: "",
Message: "hello",
},
},
}
for _, tt := range tests {
projectID = "myproject"
buf := &bytes.Buffer{}
rootLogger := zerolog.New(buf)
zerolog.SetGlobalLevel(zerolog.InfoLevel)
unaryInfo := &grpc.UnaryServerInfo{
FullMethod: "TestService.TestMethod",
}
ctx := context.Background()
ctx = metadata.NewIncomingContext(ctx, tt.md)
interceptor := InjectLoggerInterceptor(&rootLogger)
interceptor(ctx, nil, unaryInfo, tt.handler)
var got logEntry
if err := json.Unmarshal(buf.Bytes(), &got); err != nil {
t.Fatalf("Unexpected error: %v", err)
}
opt := cmpopts.IgnoreFields(logEntry{}, "Time", "SourceLocation.Line", "SourceLocation.Function")
if diff := cmp.Diff(tt.want, got, opt); diff != "" {
t.Errorf("%s: Log output diff: %s", tt.desc, diff)
}
}
}