61 lines
1.6 KiB
Go
61 lines
1.6 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 batchprocessor
|
|
|
|
import (
|
|
"path"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/collector/component/componenttest"
|
|
"go.opentelemetry.io/collector/config/configmodels"
|
|
"go.opentelemetry.io/collector/config/configtest"
|
|
)
|
|
|
|
func TestLoadConfig(t *testing.T) {
|
|
factories, err := componenttest.NopFactories()
|
|
assert.NoError(t, err)
|
|
|
|
factory := NewFactory()
|
|
factories.Processors[typeStr] = factory
|
|
cfg, err := configtest.LoadConfigFile(t, path.Join(".", "testdata", "config.yaml"), factories)
|
|
|
|
require.Nil(t, err)
|
|
require.NotNil(t, cfg)
|
|
|
|
p0 := cfg.Processors["batch"]
|
|
assert.Equal(t, p0, factory.CreateDefaultConfig())
|
|
|
|
p1 := cfg.Processors["batch/2"]
|
|
|
|
timeout := time.Second * 10
|
|
sendBatchSize := uint32(10000)
|
|
sendBatchMaxSize := uint32(11000)
|
|
|
|
assert.Equal(t, p1,
|
|
&Config{
|
|
ProcessorSettings: configmodels.ProcessorSettings{
|
|
TypeVal: "batch",
|
|
NameVal: "batch/2",
|
|
},
|
|
SendBatchSize: sendBatchSize,
|
|
SendBatchMaxSize: sendBatchMaxSize,
|
|
Timeout: timeout,
|
|
})
|
|
}
|