opentelemetry-collector/exporter/jaegerexporter/factory_test.go

67 lines
2.1 KiB
Go

// Copyright The OpenTelemetry Authors
//
// 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.
package jaegerexporter
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/component/componenterror"
"go.opentelemetry.io/collector/config/configcheck"
)
func TestCreateDefaultConfig(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
assert.NotNil(t, cfg, "failed to create default config")
assert.NoError(t, configcheck.ValidateConfig(cfg))
}
func TestCreateMetricsExporter(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
params := component.ExporterCreateParams{Logger: zap.NewNop()}
_, err := factory.CreateMetricsExporter(context.Background(), params, cfg)
assert.Error(t, err, componenterror.ErrDataTypeIsNotSupported)
}
func TestCreateInstanceViaFactory(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
// Default config doesn't have default endpoint so creating from it should
// fail.
params := component.ExporterCreateParams{Logger: zap.NewNop()}
exp, err := factory.CreateTracesExporter(context.Background(), params, cfg)
assert.NotNil(t, err)
assert.Equal(t, "\"jaeger\" config requires a non-empty \"endpoint\"", err.Error())
assert.Nil(t, exp)
// Endpoint doesn't have a default value so set it directly.
expCfg := cfg.(*Config)
expCfg.Endpoint = "some.target.org:12345"
exp, err = factory.CreateTracesExporter(context.Background(), params, cfg)
assert.NoError(t, err)
assert.NotNil(t, exp)
assert.NoError(t, exp.Shutdown(context.Background()))
}