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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package metric
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAggregationErr(t *testing.T) {
t.Run("DropOperation", func(t *testing.T) {
assert.NoError(t, AggregationDrop{}.err())
})
t.Run("SumOperation", func(t *testing.T) {
assert.NoError(t, AggregationSum{}.err())
})
t.Run("LastValueOperation", func(t *testing.T) {
assert.NoError(t, AggregationLastValue{}.err())
})
t.Run("ExplicitBucketHistogramOperation", func(t *testing.T) {
assert.NoError(t, AggregationExplicitBucketHistogram{}.err())
assert.NoError(t, AggregationExplicitBucketHistogram{
Boundaries: []float64{0},
NoMinMax: true,
}.err())
assert.NoError(t, AggregationExplicitBucketHistogram{
Boundaries: []float64{0, 5, 10, 25, 50, 75, 100, 250, 500, 1000},
}.err())
})
t.Run("NonmonotonicHistogramBoundaries", func(t *testing.T) {
assert.ErrorIs(t, AggregationExplicitBucketHistogram{
Boundaries: []float64{2, 1},
}.err(), errAgg)
assert.ErrorIs(t, AggregationExplicitBucketHistogram{
Boundaries: []float64{0, 1, 2, 1, 3, 4},
}.err(), errAgg)
})
t.Run("ExponentialHistogramOperation", func(t *testing.T) {
assert.NoError(t, AggregationBase2ExponentialHistogram{
MaxSize: 160,
MaxScale: 20,
}.err())
assert.NoError(t, AggregationBase2ExponentialHistogram{
MaxSize: 1,
NoMinMax: true,
}.err())
assert.NoError(t, AggregationBase2ExponentialHistogram{
MaxSize: 1024,
MaxScale: -3,
}.err())
})
t.Run("InvalidExponentialHistogramOperation", func(t *testing.T) {
// MazSize must be greater than 0
assert.ErrorIs(t, AggregationBase2ExponentialHistogram{}.err(), errAgg)
// MaxScale Must be <=20
assert.ErrorIs(t, AggregationBase2ExponentialHistogram{
MaxSize: 1,
MaxScale: 30,
}.err(), errAgg)
})
}
func TestExplicitBucketHistogramDeepCopy(t *testing.T) {
const orig = 0.0
b := []float64{orig}
h := AggregationExplicitBucketHistogram{Boundaries: b}
cpH := h.copy().(AggregationExplicitBucketHistogram)
b[0] = orig + 1
assert.Equal(t, orig, cpH.Boundaries[0], "changing the underlying slice data should not affect the copy")
}
|