forked from grpc-ecosystem/go-grpc-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interceptors_test.go
167 lines (146 loc) · 6.12 KB
/
interceptors_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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Copyright 2017 David Ackroyd. All Rights Reserved.
// See LICENSE for licensing terms.
package grpc_recovery_test
import (
"context"
"testing"
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
grpc_testing "github.com/grpc-ecosystem/go-grpc-middleware/testing"
pb_testproto "github.com/grpc-ecosystem/go-grpc-middleware/testing/testproto"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
var (
goodPing = &pb_testproto.PingRequest{Value: "something", SleepTimeMs: 9999}
panicPing = &pb_testproto.PingRequest{Value: "panic", SleepTimeMs: 9999}
nilPanicPing = &pb_testproto.PingRequest{Value: "nilpanic", SleepTimeMs: 9999}
)
type recoveryAssertService struct {
pb_testproto.TestServiceServer
}
func (s *recoveryAssertService) Ping(ctx context.Context, ping *pb_testproto.PingRequest) (*pb_testproto.PingResponse, error) {
if ping.Value == "panic" {
panic("very bad thing happened")
}
if ping.Value == "nilpanic" {
panic(nil)
}
return s.TestServiceServer.Ping(ctx, ping)
}
func (s *recoveryAssertService) PingList(ping *pb_testproto.PingRequest, stream pb_testproto.TestService_PingListServer) error {
if ping.Value == "panic" {
panic("very bad thing happened")
}
if ping.Value == "nilpanic" {
panic(nil)
}
return s.TestServiceServer.PingList(ping, stream)
}
func TestRecoverySuite(t *testing.T) {
s := &RecoverySuite{
InterceptorTestSuite: &grpc_testing.InterceptorTestSuite{
TestService: &recoveryAssertService{TestServiceServer: &grpc_testing.TestPingService{T: t}},
ServerOpts: []grpc.ServerOption{
grpc_middleware.WithStreamServerChain(
grpc_recovery.StreamServerInterceptor()),
grpc_middleware.WithUnaryServerChain(
grpc_recovery.UnaryServerInterceptor()),
},
},
}
suite.Run(t, s)
}
type RecoverySuite struct {
*grpc_testing.InterceptorTestSuite
}
func (s *RecoverySuite) TestUnary_SuccessfulRequest() {
_, err := s.Client.Ping(s.SimpleCtx(), goodPing)
require.NoError(s.T(), err, "no error must occur")
}
func (s *RecoverySuite) TestUnary_PanickingRequest() {
_, err := s.Client.Ping(s.SimpleCtx(), panicPing)
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Internal, status.Code(err), "must error with internal")
assert.Equal(s.T(), "very bad thing happened", status.Convert(err).Message(), "must error with message")
}
func (s *RecoverySuite) TestUnary_NilPanickingRequest() {
_, err := s.Client.Ping(s.SimpleCtx(), nilPanicPing)
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Internal, status.Code(err), "must error with internal")
assert.Equal(s.T(), "<nil>", status.Convert(err).Message(), "must error with <nil>")
}
func (s *RecoverySuite) TestStream_SuccessfulReceive() {
stream, err := s.Client.PingList(s.SimpleCtx(), goodPing)
require.NoError(s.T(), err, "should not fail on establishing the stream")
pong, err := stream.Recv()
require.NoError(s.T(), err, "no error must occur")
require.NotNil(s.T(), pong, "pong must not be nil")
}
func (s *RecoverySuite) TestStream_PanickingReceive() {
stream, err := s.Client.PingList(s.SimpleCtx(), panicPing)
require.NoError(s.T(), err, "should not fail on establishing the stream")
_, err = stream.Recv()
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Internal, status.Code(err), "must error with internal")
assert.Equal(s.T(), "very bad thing happened", status.Convert(err).Message(), "must error with message")
}
func (s *RecoverySuite) TestStream_NilPanickingReceive() {
stream, err := s.Client.PingList(s.SimpleCtx(), nilPanicPing)
require.NoError(s.T(), err, "should not fail on establishing the stream")
_, err = stream.Recv()
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Internal, status.Code(err), "must error with internal")
assert.Equal(s.T(), "<nil>", status.Convert(err).Message(), "must error with <nil>")
}
func TestRecoveryOverrideSuite(t *testing.T) {
opts := []grpc_recovery.Option{
grpc_recovery.WithRecoveryHandler(func(p interface{}) (err error) {
return status.Errorf(codes.Unknown, "panic triggered: %v", p)
}),
}
s := &RecoveryOverrideSuite{
InterceptorTestSuite: &grpc_testing.InterceptorTestSuite{
TestService: &recoveryAssertService{TestServiceServer: &grpc_testing.TestPingService{T: t}},
ServerOpts: []grpc.ServerOption{
grpc_middleware.WithStreamServerChain(
grpc_recovery.StreamServerInterceptor(opts...)),
grpc_middleware.WithUnaryServerChain(
grpc_recovery.UnaryServerInterceptor(opts...)),
},
},
}
suite.Run(t, s)
}
type RecoveryOverrideSuite struct {
*grpc_testing.InterceptorTestSuite
}
func (s *RecoveryOverrideSuite) TestUnary_SuccessfulRequest() {
_, err := s.Client.Ping(s.SimpleCtx(), goodPing)
require.NoError(s.T(), err, "no error must occur")
}
func (s *RecoveryOverrideSuite) TestUnary_PanickingRequest() {
_, err := s.Client.Ping(s.SimpleCtx(), panicPing)
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Unknown, status.Code(err), "must error with unknown")
assert.Equal(s.T(), "panic triggered: very bad thing happened", status.Convert(err).Message(), "must error with message")
}
func (s *RecoveryOverrideSuite) TestStream_SuccessfulReceive() {
stream, err := s.Client.PingList(s.SimpleCtx(), goodPing)
require.NoError(s.T(), err, "should not fail on establishing the stream")
pong, err := stream.Recv()
require.NoError(s.T(), err, "no error must occur")
require.NotNil(s.T(), pong, "pong must not be nil")
}
func (s *RecoveryOverrideSuite) TestStream_PanickingReceive() {
stream, err := s.Client.PingList(s.SimpleCtx(), panicPing)
require.NoError(s.T(), err, "should not fail on establishing the stream")
_, err = stream.Recv()
require.Error(s.T(), err, "there must be an error")
assert.Equal(s.T(), codes.Unknown, status.Code(err), "must error with unknown")
assert.Equal(s.T(), "panic triggered: very bad thing happened", status.Convert(err).Message(), "must error with message")
}