59 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.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 componenttest
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"github.com/stretchr/testify/require"
 | 
						|
 | 
						|
	"go.opentelemetry.io/collector/component"
 | 
						|
	"go.opentelemetry.io/collector/config"
 | 
						|
	"go.opentelemetry.io/collector/consumer"
 | 
						|
	"go.opentelemetry.io/collector/consumer/consumertest"
 | 
						|
	"go.opentelemetry.io/collector/consumer/pdata"
 | 
						|
)
 | 
						|
 | 
						|
func TestNewNopProcessorFactory(t *testing.T) {
 | 
						|
	factory := NewNopProcessorFactory()
 | 
						|
	require.NotNil(t, factory)
 | 
						|
	assert.Equal(t, config.Type("nop"), factory.Type())
 | 
						|
	cfg := factory.CreateDefaultConfig()
 | 
						|
	assert.Equal(t, &nopProcessorConfig{ProcessorSettings: config.NewProcessorSettings(config.NewID("nop"))}, cfg)
 | 
						|
 | 
						|
	traces, err := factory.CreateTracesProcessor(context.Background(), component.ProcessorCreateParams{}, cfg, consumertest.NewNop())
 | 
						|
	require.NoError(t, err)
 | 
						|
	assert.Equal(t, consumer.Capabilities{MutatesData: false}, traces.Capabilities())
 | 
						|
	assert.NoError(t, traces.Start(context.Background(), NewNopHost()))
 | 
						|
	assert.NoError(t, traces.ConsumeTraces(context.Background(), pdata.NewTraces()))
 | 
						|
	assert.NoError(t, traces.Shutdown(context.Background()))
 | 
						|
 | 
						|
	metrics, err := factory.CreateMetricsProcessor(context.Background(), component.ProcessorCreateParams{}, cfg, consumertest.NewNop())
 | 
						|
	require.NoError(t, err)
 | 
						|
	assert.Equal(t, consumer.Capabilities{MutatesData: false}, metrics.Capabilities())
 | 
						|
	assert.NoError(t, metrics.Start(context.Background(), NewNopHost()))
 | 
						|
	assert.NoError(t, metrics.ConsumeMetrics(context.Background(), pdata.NewMetrics()))
 | 
						|
	assert.NoError(t, metrics.Shutdown(context.Background()))
 | 
						|
 | 
						|
	logs, err := factory.CreateLogsProcessor(context.Background(), component.ProcessorCreateParams{}, cfg, consumertest.NewNop())
 | 
						|
	require.NoError(t, err)
 | 
						|
	assert.Equal(t, consumer.Capabilities{MutatesData: false}, logs.Capabilities())
 | 
						|
	assert.NoError(t, logs.Start(context.Background(), NewNopHost()))
 | 
						|
	assert.NoError(t, logs.ConsumeLogs(context.Background(), pdata.NewLogs()))
 | 
						|
	assert.NoError(t, logs.Shutdown(context.Background()))
 | 
						|
}
 |