2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-10-29 22:27:22 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-07-28 23:31:56 +02:00
|
|
|
package aggregatortest
|
2019-10-29 22:27:22 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"math/rand"
|
2020-01-06 20:08:40 +02:00
|
|
|
"os"
|
2019-10-29 22:27:22 +02:00
|
|
|
"sort"
|
|
|
|
"testing"
|
2020-01-06 20:08:40 +02:00
|
|
|
"unsafe"
|
2019-10-29 22:27:22 +02:00
|
|
|
|
2020-03-19 21:02:46 +02:00
|
|
|
"go.opentelemetry.io/otel/api/metric"
|
2020-01-06 20:08:40 +02:00
|
|
|
ottest "go.opentelemetry.io/otel/internal/testing"
|
2019-11-05 23:08:55 +02:00
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
2020-06-10 07:53:30 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/aggregator"
|
2019-10-29 22:27:22 +02:00
|
|
|
)
|
|
|
|
|
2019-11-05 00:24:01 +02:00
|
|
|
const Magnitude = 1000
|
|
|
|
|
2019-10-29 22:27:22 +02:00
|
|
|
type Profile struct {
|
2020-05-11 08:44:42 +02:00
|
|
|
NumberKind metric.NumberKind
|
|
|
|
Random func(sign int) metric.Number
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
|
|
|
|
2019-11-05 00:24:01 +02:00
|
|
|
func newProfiles() []Profile {
|
|
|
|
rnd := rand.New(rand.NewSource(rand.Int63()))
|
|
|
|
return []Profile{
|
|
|
|
{
|
2020-05-11 08:44:42 +02:00
|
|
|
NumberKind: metric.Int64NumberKind,
|
|
|
|
Random: func(sign int) metric.Number {
|
|
|
|
return metric.NewInt64Number(int64(sign) * int64(rnd.Intn(Magnitude+1)))
|
2019-11-05 00:24:01 +02:00
|
|
|
},
|
2019-10-29 22:27:22 +02:00
|
|
|
},
|
2019-11-05 00:24:01 +02:00
|
|
|
{
|
2020-05-11 08:44:42 +02:00
|
|
|
NumberKind: metric.Float64NumberKind,
|
|
|
|
Random: func(sign int) metric.Number {
|
|
|
|
return metric.NewFloat64Number(float64(sign) * rnd.Float64() * Magnitude)
|
2019-11-05 00:24:01 +02:00
|
|
|
},
|
2019-10-29 22:27:22 +02:00
|
|
|
},
|
2019-11-05 00:24:01 +02:00
|
|
|
}
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
|
|
|
|
2020-10-13 16:55:31 +02:00
|
|
|
func NewAggregatorTest(mkind metric.InstrumentKind, nkind metric.NumberKind) *metric.Descriptor {
|
2020-03-19 21:02:46 +02:00
|
|
|
desc := metric.NewDescriptor("test.name", mkind, nkind)
|
|
|
|
return &desc
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func RunProfiles(t *testing.T, f func(*testing.T, Profile)) {
|
2019-11-05 00:24:01 +02:00
|
|
|
for _, profile := range newProfiles() {
|
2019-10-29 22:27:22 +02:00
|
|
|
t.Run(profile.NumberKind.String(), func(t *testing.T) {
|
|
|
|
f(t, profile)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-06 20:08:40 +02:00
|
|
|
// Ensure local struct alignment prior to running tests.
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
fields := []ottest.FieldOffset{
|
|
|
|
{
|
|
|
|
Name: "Numbers.numbers",
|
|
|
|
Offset: unsafe.Offsetof(Numbers{}.numbers),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if !ottest.Aligned8Byte(fields, os.Stderr) {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|
|
|
|
|
2020-05-21 20:09:10 +02:00
|
|
|
// TODO: Expose Numbers in api/metric for sorting support
|
|
|
|
|
2019-11-05 00:24:01 +02:00
|
|
|
type Numbers struct {
|
2020-01-06 20:08:40 +02:00
|
|
|
// numbers has to be aligned for 64-bit atomic operations.
|
2020-05-11 08:44:42 +02:00
|
|
|
numbers []metric.Number
|
|
|
|
kind metric.NumberKind
|
2019-11-05 00:24:01 +02:00
|
|
|
}
|
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func NewNumbers(kind metric.NumberKind) Numbers {
|
2019-11-05 00:24:01 +02:00
|
|
|
return Numbers{
|
|
|
|
kind: kind,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Append(v metric.Number) {
|
2019-11-05 00:24:01 +02:00
|
|
|
n.numbers = append(n.numbers, v)
|
|
|
|
}
|
2019-10-29 22:27:22 +02:00
|
|
|
|
|
|
|
func (n *Numbers) Sort() {
|
2019-10-31 07:15:27 +02:00
|
|
|
sort.Sort(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Numbers) Less(i, j int) bool {
|
2019-11-05 00:24:01 +02:00
|
|
|
return n.numbers[i].CompareNumber(n.kind, n.numbers[j]) < 0
|
2019-10-31 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Numbers) Len() int {
|
2019-11-05 00:24:01 +02:00
|
|
|
return len(n.numbers)
|
2019-10-31 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Numbers) Swap(i, j int) {
|
2019-11-05 00:24:01 +02:00
|
|
|
n.numbers[i], n.numbers[j] = n.numbers[j], n.numbers[i]
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Sum() metric.Number {
|
|
|
|
var sum metric.Number
|
2019-11-05 00:24:01 +02:00
|
|
|
for _, num := range n.numbers {
|
|
|
|
sum.AddNumber(n.kind, num)
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
|
|
|
return sum
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Numbers) Count() int64 {
|
2019-11-05 00:24:01 +02:00
|
|
|
return int64(len(n.numbers))
|
2019-10-29 22:27:22 +02:00
|
|
|
}
|
2019-10-31 07:15:27 +02:00
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Min() metric.Number {
|
2019-11-05 00:24:01 +02:00
|
|
|
return n.numbers[0]
|
|
|
|
}
|
2019-10-31 07:15:27 +02:00
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Max() metric.Number {
|
2019-11-05 00:24:01 +02:00
|
|
|
return n.numbers[len(n.numbers)-1]
|
|
|
|
}
|
2019-10-31 07:15:27 +02:00
|
|
|
|
2019-11-05 00:24:01 +02:00
|
|
|
// Median() is an alias for Quantile(0.5).
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Median() metric.Number {
|
2019-11-05 00:24:01 +02:00
|
|
|
// Note that len(n.numbers) is 1 greater than the max element
|
|
|
|
// index, so dividing by two rounds up. This gives the
|
|
|
|
// intended definition for Quantile() in tests, which is to
|
|
|
|
// return the smallest element that is at or above the
|
|
|
|
// specified quantile.
|
|
|
|
return n.numbers[len(n.numbers)/2]
|
2019-10-31 07:15:27 +02:00
|
|
|
}
|
2019-11-15 23:01:20 +02:00
|
|
|
|
2020-05-11 08:44:42 +02:00
|
|
|
func (n *Numbers) Points() []metric.Number {
|
2019-11-26 21:47:15 +02:00
|
|
|
return n.numbers
|
|
|
|
}
|
|
|
|
|
2019-11-15 23:01:20 +02:00
|
|
|
// Performs the same range test the SDK does on behalf of the aggregator.
|
2020-05-11 08:44:42 +02:00
|
|
|
func CheckedUpdate(t *testing.T, agg export.Aggregator, number metric.Number, descriptor *metric.Descriptor) {
|
2019-11-15 23:01:20 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
// Note: Aggregator tests are written assuming that the SDK
|
|
|
|
// has performed the RangeTest. Therefore we skip errors that
|
|
|
|
// would have been detected by the RangeTest.
|
|
|
|
err := aggregator.RangeTest(number, descriptor)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := agg.Update(ctx, number, descriptor); err != nil {
|
|
|
|
t.Error("Unexpected Update failure", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-19 21:02:46 +02:00
|
|
|
func CheckedMerge(t *testing.T, aggInto, aggFrom export.Aggregator, descriptor *metric.Descriptor) {
|
2019-11-15 23:01:20 +02:00
|
|
|
if err := aggInto.Merge(aggFrom, descriptor); err != nil {
|
|
|
|
t.Error("Unexpected Merge failure", err)
|
|
|
|
}
|
|
|
|
}
|