mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
91091b44eb
* Add comments on needed filed alignment Add comment about alignment requirements to all struct fields who's values are passed to 64-bit atomic operations. Update any struct's field ordering if one or more of those fields has alignment requirements to support 64-bit atomic operations. * Add 64-bit alignment tests Most `struct` that have field alignment requirements are now statically validated prior to testing. The only `struct`s not validated that have these requirements are ones defined in tests themselves where multiple `TestMain` functions would be needed to test them. Given the fields are already identified with comments specifying the alignment requirements and they are in the test themselves, this seems like an OK omission. Co-authored-by: Liz Fong-Jones <elizabeth@ctyalcove.org>
245 lines
5.6 KiB
Go
245 lines
5.6 KiB
Go
// Copyright 2019, 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"
|
|
"os"
|
|
"testing"
|
|
"unsafe"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
ottest "go.opentelemetry.io/otel/internal/testing"
|
|
export "go.opentelemetry.io/otel/sdk/export/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
|
|
},
|
|
}
|
|
)
|
|
|
|
// Ensure struct alignment prior to running tests.
|
|
func TestMain(m *testing.M) {
|
|
fields := []ottest.FieldOffset{
|
|
{
|
|
Name: "Aggregator.current",
|
|
Offset: unsafe.Offsetof(Aggregator{}.current),
|
|
},
|
|
{
|
|
Name: "Aggregator.checkpoint",
|
|
Offset: unsafe.Offsetof(Aggregator{}.checkpoint),
|
|
},
|
|
{
|
|
Name: "state.count",
|
|
Offset: unsafe.Offsetof(state{}.count),
|
|
},
|
|
{
|
|
Name: "state.sum",
|
|
Offset: unsafe.Offsetof(state{}.sum),
|
|
},
|
|
{
|
|
Name: "state.min",
|
|
Offset: unsafe.Offsetof(state{}.min),
|
|
},
|
|
{
|
|
Name: "state.max",
|
|
Offset: unsafe.Offsetof(state{}.max),
|
|
},
|
|
}
|
|
if !ottest.Aligned8Byte(fields, os.Stderr) {
|
|
os.Exit(1)
|
|
}
|
|
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
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(export.MeasureKind, profile.NumberKind, !policy.absolute)
|
|
|
|
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(export.MeasureKind, profile.NumberKind, false)
|
|
|
|
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(export.MeasureKind, profile.NumberKind, false)
|
|
|
|
agg := New(descriptor)
|
|
agg.Checkpoint(ctx, descriptor)
|
|
|
|
asum, err := agg.Sum()
|
|
require.Equal(t, core.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.ErrEmptyDataSet, err)
|
|
require.Equal(t, core.Number(0), max)
|
|
})
|
|
}
|