mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-04 09:43:23 +02:00
0d0a7320e6
* PoC for span limit refactor * Rename config.go to span_limits.go * Add unit tests for truncateAttr * Add unit tests for non-string attrs * Add span limit benchmark tests * Fix lint * Isolate span limit tests * Clean span limits test * Test limits on exported spans * Remove duplicate test code * Fix lint * Add WithRawSpanLimits option * Add test for raw and orig span limits opts * Add changes to changelog * Add tests for span resource disabled * Test unlimited instead of default limit * Update docs * Add fix to changelog * Fix option docs * Do no mutate attribute * Fix truncateAttr comment * Remake NewSpanLimits to be newEnvSpanLimits Update and unify documentation accordingly. * Update truncateAttr string slice update comment * Update CHANGELOG.md Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> Co-authored-by: Anthony Mirabella <a9@aneurysm9.com>
146 lines
3.1 KiB
Go
146 lines
3.1 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package trace
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
)
|
|
|
|
func TestTruncateAttr(t *testing.T) {
|
|
const key = "key"
|
|
|
|
strAttr := attribute.String(key, "value")
|
|
strSliceAttr := attribute.StringSlice(key, []string{"value-0", "value-1"})
|
|
|
|
tests := []struct {
|
|
limit int
|
|
attr, want attribute.KeyValue
|
|
}{
|
|
{
|
|
limit: -1,
|
|
attr: strAttr,
|
|
want: strAttr,
|
|
},
|
|
{
|
|
limit: -1,
|
|
attr: strSliceAttr,
|
|
want: strSliceAttr,
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Bool(key, true),
|
|
want: attribute.Bool(key, true),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.BoolSlice(key, []bool{true, false}),
|
|
want: attribute.BoolSlice(key, []bool{true, false}),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Int(key, 42),
|
|
want: attribute.Int(key, 42),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.IntSlice(key, []int{42, -1}),
|
|
want: attribute.IntSlice(key, []int{42, -1}),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Int64(key, 42),
|
|
want: attribute.Int64(key, 42),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Int64Slice(key, []int64{42, -1}),
|
|
want: attribute.Int64Slice(key, []int64{42, -1}),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Float64(key, 42),
|
|
want: attribute.Float64(key, 42),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Float64Slice(key, []float64{42, -1}),
|
|
want: attribute.Float64Slice(key, []float64{42, -1}),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: strAttr,
|
|
want: attribute.String(key, ""),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: strSliceAttr,
|
|
want: attribute.StringSlice(key, []string{"", ""}),
|
|
},
|
|
{
|
|
limit: 0,
|
|
attr: attribute.Stringer(key, bytes.NewBufferString("value")),
|
|
want: attribute.String(key, ""),
|
|
},
|
|
{
|
|
limit: 1,
|
|
attr: strAttr,
|
|
want: attribute.String(key, "v"),
|
|
},
|
|
{
|
|
limit: 1,
|
|
attr: strSliceAttr,
|
|
want: attribute.StringSlice(key, []string{"v", "v"}),
|
|
},
|
|
{
|
|
limit: 5,
|
|
attr: strAttr,
|
|
want: strAttr,
|
|
},
|
|
{
|
|
limit: 7,
|
|
attr: strSliceAttr,
|
|
want: strSliceAttr,
|
|
},
|
|
{
|
|
limit: 6,
|
|
attr: attribute.StringSlice(key, []string{"value", "value-1"}),
|
|
want: attribute.StringSlice(key, []string{"value", "value-"}),
|
|
},
|
|
{
|
|
limit: 128,
|
|
attr: strAttr,
|
|
want: strAttr,
|
|
},
|
|
{
|
|
limit: 128,
|
|
attr: strSliceAttr,
|
|
want: strSliceAttr,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
name := fmt.Sprintf("%s->%s(limit:%d)", test.attr.Key, test.attr.Value.Emit(), test.limit)
|
|
t.Run(name, func(t *testing.T) {
|
|
assert.Equal(t, test.want, truncateAttr(test.limit, test.attr))
|
|
})
|
|
}
|
|
}
|