forked from grpc-ecosystem/go-grpc-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrappers_test.go
54 lines (45 loc) · 1.29 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
54
// Copyright (c) The go-grpc-middleware Authors.
// Licensed under the Apache License 2.0.
package middleware
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
var (
someKey struct{}
other struct{}
)
func TestWrapServerStream(t *testing.T) {
ctx := context.WithValue(context.TODO(), someKey, 1)
fake := &fakeServerStream{ctx: ctx}
wrapped := WrapServerStream(fake)
assert.NotNil(t, wrapped.Context().Value(someKey), "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 any
sentMessage any
}
func (f *fakeServerStream) Context() context.Context {
return f.ctx
}
func (f *fakeServerStream) SendMsg(m any) error {
if f.sentMessage != nil {
return status.Error(codes.AlreadyExists, "fakeServerStream only takes one message, sorry")
}
f.sentMessage = m
return nil
}
func (f *fakeServerStream) RecvMsg(m any) error {
if f.recvMessage == nil {
return status.Error(codes.NotFound, "fakeServerStream has no message, sorry")
}
return nil
}