You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-11-27 22:49:15 +02:00
Based on the Go version we currently use, the dependency already supports 1.24+, which allows using `t.Context()` and `b.Context()` in unit tests and benchmarks respectively. - Enable `context-background` and `context-todo` in [`usetesting`](https://golangci-lint.run/docs/linters/configuration/#usetesting) - Adjust the code to support linter detection --------- Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> Co-authored-by: Tyler Yahn <codingalias@gmail.com> Co-authored-by: Damien Mathieu <42@dmathieu.com>
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package tracetest
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// TestNoop tests only that the no-op does not crash in different scenarios.
|
|
func TestNoop(t *testing.T) {
|
|
nsb := NewNoopExporter()
|
|
|
|
require.NoError(t, nsb.ExportSpans(t.Context(), nil))
|
|
require.NoError(t, nsb.ExportSpans(t.Context(), make(SpanStubs, 10).Snapshots()))
|
|
require.NoError(t, nsb.ExportSpans(t.Context(), make(SpanStubs, 0, 10).Snapshots()))
|
|
}
|
|
|
|
func TestNewInMemoryExporter(t *testing.T) {
|
|
imsb := NewInMemoryExporter()
|
|
|
|
require.NoError(t, imsb.ExportSpans(t.Context(), nil))
|
|
assert.Empty(t, imsb.GetSpans())
|
|
|
|
input := make(SpanStubs, 10)
|
|
for i := range 10 {
|
|
input[i] = SpanStub{Name: fmt.Sprintf("span %d", i)}
|
|
}
|
|
require.NoError(t, imsb.ExportSpans(t.Context(), input.Snapshots()))
|
|
sds := imsb.GetSpans()
|
|
assert.Len(t, sds, 10)
|
|
for i, sd := range sds {
|
|
assert.Equal(t, input[i], sd)
|
|
}
|
|
imsb.Reset()
|
|
// Ensure that operations on the internal storage does not change the previously returned value.
|
|
assert.Len(t, sds, 10)
|
|
assert.Empty(t, imsb.GetSpans())
|
|
|
|
require.NoError(t, imsb.ExportSpans(t.Context(), input.Snapshots()[0:1]))
|
|
sds = imsb.GetSpans()
|
|
assert.Len(t, sds, 1)
|
|
assert.Equal(t, input[0], sds[0])
|
|
}
|