57 lines
1.7 KiB
Go
57 lines
1.7 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 memorylimiterprocessor
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/collector/component/componenttest"
|
|
"go.opentelemetry.io/collector/config"
|
|
"go.opentelemetry.io/collector/service/servicetest"
|
|
)
|
|
|
|
func TestLoadConfig(t *testing.T) {
|
|
factories, err := componenttest.NopFactories()
|
|
require.NoError(t, err)
|
|
factory := NewFactory()
|
|
factories.Processors[typeStr] = factory
|
|
require.NoError(t, err)
|
|
|
|
cfg, err := servicetest.LoadConfigAndValidate(filepath.Join("testdata", "config.yaml"), factories)
|
|
|
|
require.Nil(t, err)
|
|
require.NotNil(t, cfg)
|
|
|
|
p0 := cfg.Processors[config.NewComponentID(typeStr)]
|
|
assert.Equal(t, p0,
|
|
&Config{
|
|
ProcessorSettings: config.NewProcessorSettings(config.NewComponentID(typeStr)),
|
|
})
|
|
|
|
p1 := cfg.Processors[config.NewComponentIDWithName(typeStr, "with-settings")]
|
|
assert.Equal(t, p1,
|
|
&Config{
|
|
ProcessorSettings: config.NewProcessorSettings(config.NewComponentIDWithName(typeStr, "with-settings")),
|
|
CheckInterval: 5 * time.Second,
|
|
MemoryLimitMiB: 4000,
|
|
MemorySpikeLimitMiB: 500,
|
|
})
|
|
}
|