mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-28 21:09:17 +02:00
3e17ef99d6
Rather than the deprecated InstrumentationLibrary This is a replacement for https://github.com/open-telemetry/opentelemetry-go/pull/3104, as after this, there is no usage of `instrumentation.Library` within the SDK anymore. --------- Co-authored-by: Robert Pająk <pellared@hotmail.com> Co-authored-by: Sam Xie <sam@samxie.me>
29 lines
849 B
Go
29 lines
849 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package opencensus // import "go.opentelemetry.io/otel/bridge/opencensus"
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/sdk/trace"
|
|
"go.opentelemetry.io/otel/sdk/trace/tracetest"
|
|
)
|
|
|
|
func TestNewTraceBridge(t *testing.T) {
|
|
exporter := tracetest.NewInMemoryExporter()
|
|
tp := trace.NewTracerProvider(trace.WithSyncer(exporter))
|
|
bridge := newTraceBridge([]TraceOption{WithTracerProvider(tp)})
|
|
_, span := bridge.StartSpan(context.Background(), "foo")
|
|
span.End()
|
|
gotSpans := exporter.GetSpans()
|
|
require.Len(t, gotSpans, 1)
|
|
gotSpan := gotSpans[0]
|
|
assert.Equal(t, gotSpan.InstrumentationScope.Name, scopeName)
|
|
assert.Equal(t, gotSpan.InstrumentationScope.Version, Version())
|
|
}
|