2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-08-02 22:52:55 +02:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-11-16 19:30:54 +02:00
|
|
|
package otel
|
2019-08-02 22:52:55 +02:00
|
|
|
|
|
|
|
import (
|
2019-10-22 22:19:11 +02:00
|
|
|
"testing"
|
2019-08-02 22:52:55 +02:00
|
|
|
|
2021-12-15 17:42:37 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
"go.opentelemetry.io/otel/trace"
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
|
|
|
|
2020-08-31 19:02:04 +02:00
|
|
|
type testTracerProvider struct{}
|
2019-10-22 22:19:11 +02:00
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
var _ trace.TracerProvider = &testTracerProvider{}
|
2019-10-22 22:19:11 +02:00
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
func (*testTracerProvider) Tracer(_ string, _ ...trace.TracerOption) trace.Tracer {
|
2022-04-28 21:11:17 +02:00
|
|
|
return trace.NewNoopTracerProvider().Tracer("")
|
2019-10-22 22:19:11 +02:00
|
|
|
}
|
|
|
|
|
2020-04-28 01:07:14 +02:00
|
|
|
func TestMultipleGlobalTracerProvider(t *testing.T) {
|
2020-08-31 19:02:04 +02:00
|
|
|
p1 := testTracerProvider{}
|
2020-11-07 00:13:31 +02:00
|
|
|
p2 := trace.NewNoopTracerProvider()
|
2020-11-16 19:30:54 +02:00
|
|
|
SetTracerProvider(&p1)
|
|
|
|
SetTracerProvider(p2)
|
2019-10-22 22:19:11 +02:00
|
|
|
|
2020-11-16 19:30:54 +02:00
|
|
|
got := GetTracerProvider()
|
2021-12-15 17:42:37 +02:00
|
|
|
assert.Equal(t, p2, got)
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|