55 lines
1.5 KiB
Go
55 lines
1.5 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 resourceprocessor
|
|
|
|
import (
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.opentelemetry.io/collector/config"
|
|
"go.opentelemetry.io/collector/config/configmodels"
|
|
)
|
|
|
|
func TestLoadConfig(t *testing.T) {
|
|
factories, err := config.ExampleComponents()
|
|
assert.NoError(t, err)
|
|
|
|
factory := &Factory{}
|
|
factories.Processors[typeStr] = &Factory{}
|
|
|
|
cfg, err := config.LoadConfigFile(t, path.Join(".", "testdata", "config.yaml"), factories)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, cfg)
|
|
|
|
p1 := cfg.Processors["resource"]
|
|
assert.Equal(t, p1, factory.CreateDefaultConfig())
|
|
|
|
p2 := cfg.Processors["resource/2"]
|
|
assert.Equal(t, p2, &Config{
|
|
ProcessorSettings: configmodels.ProcessorSettings{
|
|
TypeVal: "resource",
|
|
NameVal: "resource/2",
|
|
},
|
|
ResourceType: "host",
|
|
Labels: map[string]string{
|
|
"cloud.zone": "zone-1",
|
|
"k8s.cluster.name": "k8s-cluster",
|
|
"host.name": "k8s-node",
|
|
},
|
|
})
|
|
}
|