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.
33 lines
819 B
Go
33 lines
819 B
Go
package serverinterceptors
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/core/prometheus"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func TestUnaryPromMetricInterceptor_Disabled(t *testing.T) {
|
|
_, err := UnaryPrometheusInterceptor(context.Background(), nil, &grpc.UnaryServerInfo{
|
|
FullMethod: "/",
|
|
}, func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return nil, nil
|
|
})
|
|
assert.Nil(t, err)
|
|
}
|
|
|
|
func TestUnaryPromMetricInterceptor_Enabled(t *testing.T) {
|
|
prometheus.StartAgent(prometheus.Config{
|
|
Host: "localhost",
|
|
Path: "/",
|
|
})
|
|
_, err := UnaryPrometheusInterceptor(context.Background(), nil, &grpc.UnaryServerInfo{
|
|
FullMethod: "/",
|
|
}, func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return nil, nil
|
|
})
|
|
assert.Nil(t, err)
|
|
}
|