mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-28 21:09:17 +02:00
5331939a74
This is a follow-up to the comments in https://github.com/open-telemetry/opentelemetry-go/pull/5468#discussion_r1624173196, introducing `logtest.AssertRecordEqual` so bridges can compare log records more easily. --------- Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package logtest
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.opentelemetry.io/otel/log"
|
|
)
|
|
|
|
func TestRecordFactory(t *testing.T) {
|
|
now := time.Now()
|
|
observed := now.Add(time.Second)
|
|
severity := log.SeverityDebug
|
|
severityText := "DBG"
|
|
body := log.StringValue("Message")
|
|
attrs := []log.KeyValue{
|
|
log.Int("int", 1),
|
|
log.String("str", "foo"),
|
|
log.Float64("flt", 3.14),
|
|
}
|
|
|
|
got := RecordFactory{
|
|
Timestamp: now,
|
|
ObservedTimestamp: observed,
|
|
Severity: severity,
|
|
SeverityText: severityText,
|
|
Body: body,
|
|
Attributes: attrs,
|
|
}.NewRecord()
|
|
|
|
assert.Equal(t, now, got.Timestamp())
|
|
assert.Equal(t, observed, got.ObservedTimestamp())
|
|
assert.Equal(t, severity, got.Severity())
|
|
assert.Equal(t, severityText, got.SeverityText())
|
|
assertBody(t, body, got)
|
|
assertAttributes(t, attrs, got)
|
|
}
|
|
|
|
func TestRecordFactoryMultiple(t *testing.T) {
|
|
now := time.Now()
|
|
attrs := []log.KeyValue{
|
|
log.Int("int", 1),
|
|
log.String("str", "foo"),
|
|
log.Float64("flt", 3.14),
|
|
}
|
|
|
|
f := RecordFactory{
|
|
Timestamp: now,
|
|
Attributes: attrs,
|
|
}
|
|
|
|
record1 := f.NewRecord()
|
|
f.Attributes = append(f.Attributes, log.Bool("added", true))
|
|
|
|
record2 := f.NewRecord()
|
|
assert.Equal(t, now, record2.Timestamp())
|
|
assertAttributes(t, append(attrs, log.Bool("added", true)), record2)
|
|
|
|
// Previously returned record is unharmed by the builder changes.
|
|
assert.Equal(t, now, record1.Timestamp())
|
|
assertAttributes(t, attrs, record1)
|
|
}
|