You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
680 B
Go
28 lines
680 B
Go
package clientinterceptors
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tal-tech/go-zero/core/trace/opentelemetry"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func TestOpenTracingInterceptor(t *testing.T) {
|
|
opentelemetry.StartAgent(opentelemetry.Config{
|
|
Name: "go-zero-test",
|
|
Endpoint: "http://localhost:14268/api/traces",
|
|
Batcher: "jaeger",
|
|
Sampler: 1.0,
|
|
})
|
|
|
|
cc := new(grpc.ClientConn)
|
|
err := UnaryOpenTracingInterceptor()(context.Background(), "/ListUser", nil, nil, cc,
|
|
func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn,
|
|
opts ...grpc.CallOption) error {
|
|
return nil
|
|
})
|
|
assert.Nil(t, err)
|
|
}
|