2020-03-23 22:41:10 -07:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-08-02 13:52:55 -07: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.
|
|
|
|
|
2019-10-25 11:38:52 -07:00
|
|
|
package global_test
|
2019-08-02 13:52:55 -07:00
|
|
|
|
|
|
|
import (
|
2019-10-22 13:19:11 -07:00
|
|
|
"testing"
|
2019-08-02 13:52:55 -07:00
|
|
|
|
2019-11-26 12:41:24 +08:00
|
|
|
"go.opentelemetry.io/otel/api/global"
|
2019-11-01 11:40:29 -07:00
|
|
|
"go.opentelemetry.io/otel/api/trace"
|
2020-09-08 17:43:35 -07:00
|
|
|
"go.opentelemetry.io/otel/internal/trace/noop"
|
2019-08-02 13:52:55 -07:00
|
|
|
)
|
|
|
|
|
2020-08-31 10:02:04 -07:00
|
|
|
type testTracerProvider struct{}
|
2019-10-22 13:19:11 -07:00
|
|
|
|
2020-08-31 10:02:04 -07:00
|
|
|
var _ trace.Provider = &testTracerProvider{}
|
2019-10-22 13:19:11 -07:00
|
|
|
|
2020-08-31 10:02:04 -07:00
|
|
|
func (*testTracerProvider) Tracer(_ string, _ ...trace.TracerOption) trace.Tracer {
|
2020-09-08 17:43:35 -07:00
|
|
|
return noop.Tracer
|
2019-10-22 13:19:11 -07:00
|
|
|
}
|
|
|
|
|
2020-04-27 16:07:14 -07:00
|
|
|
func TestMultipleGlobalTracerProvider(t *testing.T) {
|
2020-08-31 10:02:04 -07:00
|
|
|
p1 := testTracerProvider{}
|
2020-09-08 17:43:35 -07:00
|
|
|
p2 := trace.NoopProvider()
|
2020-08-31 10:02:04 -07:00
|
|
|
global.SetTracerProvider(&p1)
|
2020-09-08 17:43:35 -07:00
|
|
|
global.SetTracerProvider(p2)
|
2019-10-22 13:19:11 -07:00
|
|
|
|
2020-08-31 10:02:04 -07:00
|
|
|
got := global.TracerProvider()
|
2020-09-08 17:43:35 -07:00
|
|
|
want := p2
|
2019-10-22 13:19:11 -07:00
|
|
|
if got != want {
|
|
|
|
t.Fatalf("Provider: got %p, want %p\n", got, want)
|
|
|
|
}
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|