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.
20 lines
430 B
Go
20 lines
430 B
Go
4 years ago
|
package serverinterceptors
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
func TestUnaryPromMetricInterceptor(t *testing.T) {
|
||
4 years ago
|
interceptor := UnaryPrometheusInterceptor()
|
||
4 years ago
|
_, err := interceptor(context.Background(), nil, &grpc.UnaryServerInfo{
|
||
|
FullMethod: "/",
|
||
|
}, func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return nil, nil
|
||
|
})
|
||
|
assert.Nil(t, err)
|
||
|
}
|