forked from grpc-ecosystem/go-grpc-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrappers_test.go
53 lines (44 loc) · 1.35 KB
/
wrappers_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
// Copyright 2016 Michal Witkowski. All Rights Reserved.
// See LICENSE for licensing terms.
package grpc_middleware
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func TestWrapServerStream(t *testing.T) {
ctx := context.WithValue(context.TODO(), "something", 1)
fake := &fakeServerStream{ctx: ctx}
wrapped := WrapServerStream(fake)
assert.NotNil(t, wrapped.Context().Value("something"), "values from fake must propagate to wrapper")
wrapped.WrappedContext = context.WithValue(wrapped.Context(), "other", 2)
assert.NotNil(t, wrapped.Context().Value("other"), "values from wrapper must be set")
}
type fakeServerStream struct {
grpc.ServerStream
ctx context.Context
recvMessage interface{}
sentMessage interface{}
}
func (f *fakeServerStream) Context() context.Context {
return f.ctx
}
func (f *fakeServerStream) SendMsg(m interface{}) error {
if f.sentMessage != nil {
return status.Errorf(codes.AlreadyExists, "fakeServerStream only takes one message, sorry")
}
f.sentMessage = m
return nil
}
func (f *fakeServerStream) RecvMsg(m interface{}) error {
if f.recvMessage == nil {
return status.Errorf(codes.NotFound, "fakeServerStream has no message, sorry")
}
return nil
}
type fakeClientStream struct {
grpc.ClientStream
}