diff --git a/internal/qos/grpc_test.go b/internal/qos/grpc_test.go index f51c44781..c5b4cd162 100644 --- a/internal/qos/grpc_test.go +++ b/internal/qos/grpc_test.go @@ -19,6 +19,7 @@ const ( var ( errTest = errors.New("mock") + errWrongTag = errors.New("wrong tag") errResExhausted = new(apistatus.ResourceExhausted) ) @@ -117,3 +118,15 @@ func Test_MaxActiveRPCLimiter(t *testing.T) { require.True(t, called && lim.released) }) } + +func TestSetCriticalIOTagUnaryServerInterceptor_Pass(t *testing.T) { + interceptor := qos.NewSetCriticalIOTagUnaryServerInterceptor() + handler := func(ctx context.Context, req any) (any, error) { + if tag, ok := tagging.IOTagFromContext(ctx); ok && tag == qos.IOTagCritical.String() { + return nil, nil + } + return nil, errWrongTag + } + _, err := interceptor(context.Background(), nil, nil, handler) + require.NoError(t, err) +}