mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-07 23:02:15 +02:00
f0855b7d08
Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com>
206 lines
4.8 KiB
Go
206 lines
4.8 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 minmaxsumcount
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/api/metric"
|
|
"go.opentelemetry.io/otel/sdk/export/metric/aggregator"
|
|
"go.opentelemetry.io/otel/sdk/metric/aggregator/test"
|
|
)
|
|
|
|
const count = 100
|
|
|
|
type policy struct {
|
|
name string
|
|
absolute bool
|
|
sign func() int
|
|
}
|
|
|
|
var (
|
|
positiveOnly = policy{
|
|
name: "absolute",
|
|
absolute: true,
|
|
sign: func() int { return +1 },
|
|
}
|
|
negativeOnly = policy{
|
|
name: "negative",
|
|
absolute: false,
|
|
sign: func() int { return -1 },
|
|
}
|
|
positiveAndNegative = policy{
|
|
name: "positiveAndNegative",
|
|
absolute: false,
|
|
sign: func() int {
|
|
if rand.Uint32() > math.MaxUint32/2 {
|
|
return -1
|
|
}
|
|
return 1
|
|
},
|
|
}
|
|
)
|
|
|
|
func TestMinMaxSumCountAbsolute(t *testing.T) {
|
|
test.RunProfiles(t, func(t *testing.T, profile test.Profile) {
|
|
minMaxSumCount(t, profile, positiveOnly)
|
|
})
|
|
}
|
|
|
|
func TestMinMaxSumCountNegativeOnly(t *testing.T) {
|
|
test.RunProfiles(t, func(t *testing.T, profile test.Profile) {
|
|
minMaxSumCount(t, profile, negativeOnly)
|
|
})
|
|
}
|
|
|
|
func TestMinMaxSumCountPositiveAndNegative(t *testing.T) {
|
|
test.RunProfiles(t, func(t *testing.T, profile test.Profile) {
|
|
minMaxSumCount(t, profile, positiveAndNegative)
|
|
})
|
|
}
|
|
|
|
// Validates min, max, sum and count for a given profile and policy
|
|
func minMaxSumCount(t *testing.T, profile test.Profile, policy policy) {
|
|
ctx := context.Background()
|
|
descriptor := test.NewAggregatorTest(metric.MeasureKind, profile.NumberKind)
|
|
|
|
agg := New(descriptor)
|
|
|
|
all := test.NewNumbers(profile.NumberKind)
|
|
|
|
for i := 0; i < count; i++ {
|
|
x := profile.Random(policy.sign())
|
|
all.Append(x)
|
|
test.CheckedUpdate(t, agg, x, descriptor)
|
|
}
|
|
|
|
agg.Checkpoint(ctx, descriptor)
|
|
|
|
all.Sort()
|
|
|
|
aggSum, err := agg.Sum()
|
|
require.Nil(t, err)
|
|
allSum := all.Sum()
|
|
require.InEpsilon(t,
|
|
(&allSum).CoerceToFloat64(profile.NumberKind),
|
|
aggSum.CoerceToFloat64(profile.NumberKind),
|
|
0.000000001,
|
|
"Same sum - "+policy.name)
|
|
|
|
count, err := agg.Count()
|
|
require.Equal(t, all.Count(), count, "Same count -"+policy.name)
|
|
require.Nil(t, err)
|
|
|
|
min, err := agg.Min()
|
|
require.Nil(t, err)
|
|
require.Equal(t,
|
|
all.Min(),
|
|
min,
|
|
"Same min -"+policy.name)
|
|
|
|
max, err := agg.Max()
|
|
require.Nil(t, err)
|
|
require.Equal(t,
|
|
all.Max(),
|
|
max,
|
|
"Same max -"+policy.name)
|
|
}
|
|
|
|
func TestMinMaxSumCountMerge(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
test.RunProfiles(t, func(t *testing.T, profile test.Profile) {
|
|
descriptor := test.NewAggregatorTest(metric.MeasureKind, profile.NumberKind)
|
|
|
|
agg1 := New(descriptor)
|
|
agg2 := New(descriptor)
|
|
|
|
all := test.NewNumbers(profile.NumberKind)
|
|
|
|
for i := 0; i < count; i++ {
|
|
x := profile.Random(+1)
|
|
all.Append(x)
|
|
test.CheckedUpdate(t, agg1, x, descriptor)
|
|
}
|
|
for i := 0; i < count; i++ {
|
|
x := profile.Random(+1)
|
|
all.Append(x)
|
|
test.CheckedUpdate(t, agg2, x, descriptor)
|
|
}
|
|
|
|
agg1.Checkpoint(ctx, descriptor)
|
|
agg2.Checkpoint(ctx, descriptor)
|
|
|
|
test.CheckedMerge(t, agg1, agg2, descriptor)
|
|
|
|
all.Sort()
|
|
|
|
aggSum, err := agg1.Sum()
|
|
require.Nil(t, err)
|
|
allSum := all.Sum()
|
|
require.InEpsilon(t,
|
|
(&allSum).CoerceToFloat64(profile.NumberKind),
|
|
aggSum.CoerceToFloat64(profile.NumberKind),
|
|
0.000000001,
|
|
"Same sum - absolute")
|
|
|
|
count, err := agg1.Count()
|
|
require.Equal(t, all.Count(), count, "Same count - absolute")
|
|
require.Nil(t, err)
|
|
|
|
min, err := agg1.Min()
|
|
require.Nil(t, err)
|
|
require.Equal(t,
|
|
all.Min(),
|
|
min,
|
|
"Same min - absolute")
|
|
|
|
max, err := agg1.Max()
|
|
require.Nil(t, err)
|
|
require.Equal(t,
|
|
all.Max(),
|
|
max,
|
|
"Same max - absolute")
|
|
})
|
|
}
|
|
|
|
func TestMaxSumCountNotSet(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
test.RunProfiles(t, func(t *testing.T, profile test.Profile) {
|
|
descriptor := test.NewAggregatorTest(metric.MeasureKind, profile.NumberKind)
|
|
|
|
agg := New(descriptor)
|
|
agg.Checkpoint(ctx, descriptor)
|
|
|
|
asum, err := agg.Sum()
|
|
require.Equal(t, metric.Number(0), asum, "Empty checkpoint sum = 0")
|
|
require.Nil(t, err)
|
|
|
|
count, err := agg.Count()
|
|
require.Equal(t, int64(0), count, "Empty checkpoint count = 0")
|
|
require.Nil(t, err)
|
|
|
|
max, err := agg.Max()
|
|
require.Equal(t, aggregator.ErrNoData, err)
|
|
require.Equal(t, metric.Number(0), max)
|
|
})
|
|
}
|