123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // Copyright The OpenTelemetry Authors
- // SPDX-License-Identifier: Apache-2.0
- package honeycombmarkerexporter
- import (
- "path/filepath"
- "testing"
- "github.com/stretchr/testify/assert"
- "github.com/stretchr/testify/require"
- "go.opentelemetry.io/collector/component"
- "go.opentelemetry.io/collector/confmap/confmaptest"
- "go.opentelemetry.io/collector/exporter/exporterhelper"
- "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/honeycombmarkerexporter/internal/metadata"
- )
- func TestLoadConfig(t *testing.T) {
- t.Parallel()
- cm, err := confmaptest.LoadConf(filepath.Join("testdata", "config.yaml"))
- require.NoError(t, err)
- tests := []struct {
- id component.ID
- expected component.Config
- }{
- {
- id: component.NewIDWithName(metadata.Type, ""),
- expected: &Config{
- APIKey: "test-apikey",
- APIURL: "https://api.honeycomb.io",
- Markers: []Marker{
- {
- Type: "fooType",
- Rules: Rules{
- LogConditions: []string{
- `body == "test"`,
- },
- },
- },
- },
- },
- },
- {
- id: component.NewIDWithName(metadata.Type, "all_fields"),
- expected: &Config{
- QueueSettings: exporterhelper.NewDefaultQueueSettings(),
- RetrySettings: exporterhelper.NewDefaultRetrySettings(),
- APIKey: "test-apikey",
- APIURL: "https://api.testhost.io",
- Markers: []Marker{
- {
- Type: "fooType",
- MessageKey: "test message",
- URLKey: "https://api.testhost.io",
- Rules: Rules{
- LogConditions: []string{
- `body == "test"`,
- },
- },
- DatasetSlug: "testing",
- },
- },
- },
- },
- {
- id: component.NewIDWithName(metadata.Type, "bad_syntax_log"),
- },
- {
- id: component.NewIDWithName(metadata.Type, "no_conditions"),
- },
- {
- id: component.NewIDWithName(metadata.Type, "no_api_key"),
- },
- {
- id: component.NewIDWithName(metadata.Type, "no_markers_supplied"),
- },
- }
- for _, tt := range tests {
- t.Run(tt.id.String(), func(t *testing.T) {
- factory := NewFactory()
- cfg := factory.CreateDefaultConfig()
- sub, err := cm.Sub(tt.id.String())
- require.NoError(t, err)
- require.NoError(t, component.UnmarshalConfig(sub, cfg))
- if tt.expected == nil {
- err = component.ValidateConfig(cfg)
- assert.Error(t, err)
- return
- }
- assert.NoError(t, component.ValidateConfig(cfg))
- assert.Equal(t, tt.expected, cfg)
- })
- }
- }
- func withDefaultConfig(fns ...func(*Config)) *Config {
- cfg := createDefaultConfig().(*Config)
- for _, fn := range fns {
- fn(cfg)
- }
- return cfg
- }
|