You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
80cb909774
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>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package otlptrace_test
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
tracepb "go.opentelemetry.io/proto/otlp/trace/v1"
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
|
|
"go.opentelemetry.io/otel/sdk/trace/tracetest"
|
|
)
|
|
|
|
type client struct {
|
|
uploadErr error
|
|
}
|
|
|
|
var _ otlptrace.Client = &client{}
|
|
|
|
func (*client) Start(context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (*client) Stop(context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (c *client) UploadTraces(context.Context, []*tracepb.ResourceSpans) error {
|
|
return c.uploadErr
|
|
}
|
|
|
|
func TestExporterClientError(t *testing.T) {
|
|
ctx := t.Context()
|
|
exp, err := otlptrace.New(ctx, &client{
|
|
uploadErr: context.Canceled,
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
spans := tracetest.SpanStubs{{Name: "Span 0"}}.Snapshots()
|
|
err = exp.ExportSpans(ctx, spans)
|
|
|
|
assert.Error(t, err)
|
|
assert.ErrorIs(t, err, context.Canceled)
|
|
assert.True(t, strings.HasPrefix(err.Error(), "traces export: "), "%+v", err)
|
|
|
|
assert.NoError(t, exp.Shutdown(ctx))
|
|
}
|