mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-03 22:52:30 +02:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package zipkin
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
ottest "go.opentelemetry.io/otel/exporters/zipkin/internal/internaltest"
|
|
)
|
|
|
|
func TestEnvOrWithCollectorEndpointOptionsFromEnv(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
envEndpoint string
|
|
defaultCollectorEndpoint string
|
|
expectedCollectorEndpoint string
|
|
}{
|
|
{
|
|
name: "overrides value via environment variables",
|
|
envEndpoint: "http://localhost:19411/foo",
|
|
defaultCollectorEndpoint: defaultCollectorURL,
|
|
expectedCollectorEndpoint: "http://localhost:19411/foo",
|
|
},
|
|
{
|
|
name: "environment variables is empty, will not overwrite value",
|
|
envEndpoint: "",
|
|
defaultCollectorEndpoint: defaultCollectorURL,
|
|
expectedCollectorEndpoint: defaultCollectorURL,
|
|
},
|
|
}
|
|
|
|
envStore := ottest.NewEnvStore()
|
|
envStore.Record(envEndpoint)
|
|
defer func() {
|
|
require.NoError(t, envStore.Restore())
|
|
}()
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
require.NoError(t, os.Setenv(envEndpoint, tc.envEndpoint))
|
|
|
|
endpoint := envOr(envEndpoint, tc.defaultCollectorEndpoint)
|
|
|
|
assert.Equal(t, tc.expectedCollectorEndpoint, endpoint)
|
|
})
|
|
}
|
|
}
|