opentelemetry-collector/component/processor_test.go

95 lines
2.5 KiB
Go

// Copyright 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 component
import (
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"go.opentelemetry.io/collector/config/configerror"
"go.opentelemetry.io/collector/config/configmodels"
"go.opentelemetry.io/collector/consumer"
)
type TestProcessorFactory struct {
name string
}
// Type gets the type of the Processor config created by this factory.
func (f *TestProcessorFactory) Type() configmodels.Type {
return configmodels.Type(f.name)
}
// CreateDefaultConfig creates the default configuration for the Processor.
func (f *TestProcessorFactory) CreateDefaultConfig() configmodels.Processor {
return nil
}
// CreateTraceProcessor creates a trace processor based on this config.
func (f *TestProcessorFactory) CreateTraceProcessor(
logger *zap.Logger,
nextConsumer consumer.TraceConsumerOld,
cfg configmodels.Processor,
) (TraceProcessorOld, error) {
return nil, configerror.ErrDataTypeIsNotSupported
}
// CreateMetricsProcessor creates a metrics processor based on this config.
func (f *TestProcessorFactory) CreateMetricsProcessor(
logger *zap.Logger,
nextConsumer consumer.MetricsConsumerOld,
cfg configmodels.Processor,
) (MetricsProcessorOld, error) {
return nil, configerror.ErrDataTypeIsNotSupported
}
func TestFactoriesBuilder(t *testing.T) {
type testCase struct {
in []ProcessorFactoryBase
out map[configmodels.Type]ProcessorFactoryBase
}
testCases := []testCase{
{
in: []ProcessorFactoryBase{
&TestProcessorFactory{"p1"},
&TestProcessorFactory{"p2"},
},
out: map[configmodels.Type]ProcessorFactoryBase{
"p1": &TestProcessorFactory{"p1"},
"p2": &TestProcessorFactory{"p2"},
},
},
{
in: []ProcessorFactoryBase{
&TestProcessorFactory{"p1"},
&TestProcessorFactory{"p1"},
},
},
}
for _, c := range testCases {
out, err := MakeProcessorFactoryMap(c.in...)
if c.out == nil {
assert.Error(t, err)
continue
}
assert.NoError(t, err)
assert.Equal(t, c.out, out)
}
}