154 lines
4.8 KiB
Go
154 lines
4.8 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Code generated by "internal/cmd/pdatagen/main.go". DO NOT EDIT.
|
|
// To regenerate this file run "make genpdata".
|
|
|
|
package internal
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
gootlpmetrics "go.opentelemetry.io/proto/slim/otlp/metrics/v1"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"go.opentelemetry.io/collector/featuregate"
|
|
otlpmetrics "go.opentelemetry.io/collector/pdata/internal/data/protogen/metrics/v1"
|
|
"go.opentelemetry.io/collector/pdata/internal/json"
|
|
)
|
|
|
|
func TestCopyOrigSummary(t *testing.T) {
|
|
for name, src := range genTestEncodingValuesSummary() {
|
|
for _, pooling := range []bool{true, false} {
|
|
t.Run(name+"/Pooling="+strconv.FormatBool(pooling), func(t *testing.T) {
|
|
prevPooling := UseProtoPooling.IsEnabled()
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), pooling))
|
|
defer func() {
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), prevPooling))
|
|
}()
|
|
|
|
dest := NewOrigSummary()
|
|
CopyOrigSummary(dest, src)
|
|
assert.Equal(t, src, dest)
|
|
CopyOrigSummary(dest, dest)
|
|
assert.Equal(t, src, dest)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalJSONOrigSummaryUnknown(t *testing.T) {
|
|
iter := json.BorrowIterator([]byte(`{"unknown": "string"}`))
|
|
defer json.ReturnIterator(iter)
|
|
dest := NewOrigSummary()
|
|
UnmarshalJSONOrigSummary(dest, iter)
|
|
require.NoError(t, iter.Error())
|
|
assert.Equal(t, NewOrigSummary(), dest)
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalJSONOrigSummary(t *testing.T) {
|
|
for name, src := range genTestEncodingValuesSummary() {
|
|
for _, pooling := range []bool{true, false} {
|
|
t.Run(name+"/Pooling="+strconv.FormatBool(pooling), func(t *testing.T) {
|
|
prevPooling := UseProtoPooling.IsEnabled()
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), pooling))
|
|
defer func() {
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), prevPooling))
|
|
}()
|
|
|
|
stream := json.BorrowStream(nil)
|
|
defer json.ReturnStream(stream)
|
|
MarshalJSONOrigSummary(src, stream)
|
|
require.NoError(t, stream.Error())
|
|
|
|
iter := json.BorrowIterator(stream.Buffer())
|
|
defer json.ReturnIterator(iter)
|
|
dest := NewOrigSummary()
|
|
UnmarshalJSONOrigSummary(dest, iter)
|
|
require.NoError(t, iter.Error())
|
|
|
|
assert.Equal(t, src, dest)
|
|
DeleteOrigSummary(dest, true)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalProtoOrigSummaryFailing(t *testing.T) {
|
|
for name, buf := range genTestFailingUnmarshalProtoValuesSummary() {
|
|
t.Run(name, func(t *testing.T) {
|
|
dest := NewOrigSummary()
|
|
require.Error(t, UnmarshalProtoOrigSummary(dest, buf))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalProtoOrigSummaryUnknown(t *testing.T) {
|
|
dest := NewOrigSummary()
|
|
// message Test { required int64 field = 1313; } encoding { "field": "1234" }
|
|
require.NoError(t, UnmarshalProtoOrigSummary(dest, []byte{0x88, 0x52, 0xD2, 0x09}))
|
|
assert.Equal(t, NewOrigSummary(), dest)
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalProtoOrigSummary(t *testing.T) {
|
|
for name, src := range genTestEncodingValuesSummary() {
|
|
for _, pooling := range []bool{true, false} {
|
|
t.Run(name+"/Pooling="+strconv.FormatBool(pooling), func(t *testing.T) {
|
|
prevPooling := UseProtoPooling.IsEnabled()
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), pooling))
|
|
defer func() {
|
|
require.NoError(t, featuregate.GlobalRegistry().Set(UseProtoPooling.ID(), prevPooling))
|
|
}()
|
|
|
|
buf := make([]byte, SizeProtoOrigSummary(src))
|
|
gotSize := MarshalProtoOrigSummary(src, buf)
|
|
assert.Equal(t, len(buf), gotSize)
|
|
|
|
dest := NewOrigSummary()
|
|
require.NoError(t, UnmarshalProtoOrigSummary(dest, buf))
|
|
|
|
assert.Equal(t, src, dest)
|
|
DeleteOrigSummary(dest, true)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMarshalAndUnmarshalProtoViaProtobufSummary(t *testing.T) {
|
|
for name, src := range genTestEncodingValuesSummary() {
|
|
t.Run(name, func(t *testing.T) {
|
|
buf := make([]byte, SizeProtoOrigSummary(src))
|
|
gotSize := MarshalProtoOrigSummary(src, buf)
|
|
assert.Equal(t, len(buf), gotSize)
|
|
|
|
goDest := &gootlpmetrics.Summary{}
|
|
require.NoError(t, proto.Unmarshal(buf, goDest))
|
|
|
|
goBuf, err := proto.Marshal(goDest)
|
|
require.NoError(t, err)
|
|
|
|
dest := NewOrigSummary()
|
|
require.NoError(t, UnmarshalProtoOrigSummary(dest, goBuf))
|
|
assert.Equal(t, src, dest)
|
|
})
|
|
}
|
|
}
|
|
|
|
func genTestFailingUnmarshalProtoValuesSummary() map[string][]byte {
|
|
return map[string][]byte{
|
|
"invalid_field": {0x02},
|
|
"DataPoints/wrong_wire_type": {0xc},
|
|
"DataPoints/missing_value": {0xa},
|
|
}
|
|
}
|
|
|
|
func genTestEncodingValuesSummary() map[string]*otlpmetrics.Summary {
|
|
return map[string]*otlpmetrics.Summary{
|
|
"empty": NewOrigSummary(),
|
|
"DataPoints/default_and_test": {DataPoints: []*otlpmetrics.SummaryDataPoint{{}, GenTestOrigSummaryDataPoint()}},
|
|
}
|
|
}
|