1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package internal // import "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/internal"
import (
"testing"
"go.opentelemetry.io/otel/attribute"
semconv "go.opentelemetry.io/otel/semconv/v1.17.0"
"github.com/stretchr/testify/assert"
)
func TestParseFullMethod(t *testing.T) {
cases := []struct {
input string
expectedName string
expectedAttrs []attribute.KeyValue
}{
{
input: "no_slash/method",
expectedName: "no_slash/method",
},
{
input: "/slash_but_no_second_slash",
expectedName: "slash_but_no_second_slash",
},
{
input: "/service_only/",
expectedName: "service_only/",
expectedAttrs: []attribute.KeyValue{
semconv.RPCService("service_only"),
},
},
{
input: "//method_only",
expectedName: "/method_only",
expectedAttrs: []attribute.KeyValue{
semconv.RPCMethod("method_only"),
},
},
{
input: "/service/method",
expectedName: "service/method",
expectedAttrs: []attribute.KeyValue{
semconv.RPCService("service"),
semconv.RPCMethod("method"),
},
},
}
for _, tc := range cases {
t.Run(tc.input, func(t *testing.T) {
name, attrs := ParseFullMethod(tc.input)
assert.Equal(t, tc.expectedName, name)
assert.Equal(t, tc.expectedAttrs, attrs)
})
}
}
|