You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
// Copyright 2024 William Perron. All rights reserved. MIT License.
|
|
package sqliteexporter
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"go.wperron.io/sqliteexporter/internal/metadata"
|
|
|
|
"go.opentelemetry.io/collector/component"
|
|
"go.opentelemetry.io/collector/confmap/confmaptest"
|
|
)
|
|
|
|
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
|
|
errorMessage string
|
|
}{
|
|
{
|
|
id: component.NewIDWithName(metadata.Type, "1"),
|
|
expected: &Config{
|
|
Path: "./traces.db",
|
|
},
|
|
errorMessage: "",
|
|
},
|
|
{
|
|
id: component.NewIDWithName(metadata.Type, "2"),
|
|
expected: nil,
|
|
errorMessage: "path must be non-empty",
|
|
},
|
|
}
|
|
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 {
|
|
assert.EqualError(t, component.ValidateConfig(cfg), tt.errorMessage)
|
|
return
|
|
}
|
|
|
|
assert.NoError(t, component.ValidateConfig(cfg))
|
|
assert.Equal(t, tt.expected, cfg)
|
|
})
|
|
}
|
|
}
|