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 (c) The go-grpc-middleware Authors.
// Licensed under the Apache License 2.0.
package protovalidate_test
import (
"context"
"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 UnaryService struct {
testvalidatev1.TestValidateServiceServer
}
func (s *UnaryService) Send(_ context.Context, _ *testvalidatev1.SendRequest) (*testvalidatev1.SendResponse, error) {
return &testvalidatev1.SendResponse{}, nil
}
func ExampleUnaryServerInterceptor() {
validator, err := protovalidate.New()
if err != nil {
panic(err) // only for example purposes
}
var (
srv = grpc.NewServer(
grpc.UnaryInterceptor(
protovalidate_middleware.UnaryServerInterceptor(validator,
protovalidate_middleware.WithIgnoreMessages(
(&testvalidatev1.SendRequest{}).ProtoReflect().Type(),
),
),
),
)
svc = &UnaryService{}
)
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
}
}
|