-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathexample_stream_test.go
51 lines (41 loc) · 1.28 KB
/
example_stream_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
// Copyright (c) The go-grpc-middleware Authors.
// Licensed under the Apache License 2.0.
package protovalidate_test
import (
"net"
"github.com/bufbuild/protovalidate-go"
protovalidate_middleware "github.com/grpc-ecosystem/go-grpc-middleware/v2/interceptors/protovalidate"
testvalidatev1 "github.com/grpc-ecosystem/go-grpc-middleware/v2/testing/testvalidate/v1"
"google.golang.org/grpc"
)
type StreamService struct {
testvalidatev1.TestValidateServiceServer
}
func (s *StreamService) SendStream(_ *testvalidatev1.SendStreamRequest, _ testvalidatev1.TestValidateService_SendStreamServer) error {
return nil
}
func ExampleStreamServerInterceptor() {
validator, err := protovalidate.New()
if err != nil {
panic(err) // only for example purposes
}
var (
srv = grpc.NewServer(
grpc.StreamInterceptor(
protovalidate_middleware.StreamServerInterceptor(validator,
protovalidate_middleware.WithIgnoreMessages(
(&testvalidatev1.SendStreamRequest{}).ProtoReflect().Type(),
)),
),
)
svc = &StreamService{}
)
testvalidatev1.RegisterTestValidateServiceServer(srv, svc)
listener, err := net.Listen("tcp", ":3000")
if err != nil {
panic(err) // only for example purposes
}
if err = srv.Serve(listener); err != nil {
panic(err) // only for example purposes
}
}