123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package serverinterceptors
- import (
- "context"
- "sync"
- "sync/atomic"
- "testing"
- "git.i2edu.net/i2/go-zero/core/trace/tracespec"
- "github.com/stretchr/testify/assert"
- "google.golang.org/grpc"
- "google.golang.org/grpc/metadata"
- )
- func TestUnaryTracingInterceptor(t *testing.T) {
- interceptor := UnaryTracingInterceptor("foo")
- var run int32
- var wg sync.WaitGroup
- wg.Add(1)
- _, err := interceptor(context.Background(), nil, &grpc.UnaryServerInfo{
- FullMethod: "/",
- }, func(ctx context.Context, req interface{}) (interface{}, error) {
- defer wg.Done()
- atomic.AddInt32(&run, 1)
- return nil, nil
- })
- wg.Wait()
- assert.Nil(t, err)
- assert.Equal(t, int32(1), atomic.LoadInt32(&run))
- }
- func TestUnaryTracingInterceptor_GrpcFormat(t *testing.T) {
- interceptor := UnaryTracingInterceptor("foo")
- var wg sync.WaitGroup
- wg.Add(1)
- var md metadata.MD
- ctx := metadata.NewIncomingContext(context.Background(), md)
- _, err := interceptor(ctx, nil, &grpc.UnaryServerInfo{
- FullMethod: "/",
- }, func(ctx context.Context, req interface{}) (interface{}, error) {
- defer wg.Done()
- assert.True(t, len(ctx.Value(tracespec.TracingKey).(tracespec.Trace).TraceId()) > 0)
- assert.True(t, len(ctx.Value(tracespec.TracingKey).(tracespec.Trace).SpanId()) > 0)
- return nil, nil
- })
- wg.Wait()
- assert.Nil(t, err)
- }
|