-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory_test.go
99 lines (86 loc) · 3.22 KB
/
factory_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package servicegraphprocessor
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/assert"
"go.opentelemetry.io/collector/connector/connectortest"
"go.opentelemetry.io/collector/consumer/consumertest"
"go.opentelemetry.io/collector/processor/processortest"
)
func TestNewProcessor(t *testing.T) {
for _, tc := range []struct {
name string
latencyHistogramBuckets []time.Duration
expectedLatencyHistogramBuckets []float64
}{
{
name: "simplest config (use defaults)",
expectedLatencyHistogramBuckets: defaultLatencyHistogramBucketsMs,
},
{
name: "latency histogram configured with catch-all bucket to check no additional catch-all bucket inserted",
latencyHistogramBuckets: []time.Duration{2 * time.Millisecond},
expectedLatencyHistogramBuckets: []float64{2},
},
{
name: "full config with no catch-all bucket and check the catch-all bucket is inserted",
latencyHistogramBuckets: []time.Duration{2 * time.Millisecond},
expectedLatencyHistogramBuckets: []float64{2},
},
} {
t.Run(tc.name, func(t *testing.T) {
// Prepare
factory := NewFactory()
creationParams := processortest.NewNopCreateSettings()
cfg := factory.CreateDefaultConfig().(*Config)
cfg.LatencyHistogramBuckets = tc.latencyHistogramBuckets
// Test
traceProcessor, err := factory.CreateTracesProcessor(context.Background(), creationParams, cfg, consumertest.NewNop())
smp := traceProcessor.(*serviceGraphProcessor)
// Verify
assert.NoError(t, err)
assert.NotNil(t, smp)
assert.Equal(t, tc.expectedLatencyHistogramBuckets, smp.reqDurationBounds)
})
}
}
func TestNewConnector(t *testing.T) {
for _, tc := range []struct {
name string
latencyHistogramBuckets []time.Duration
expectedLatencyHistogramBuckets []float64
}{
{
name: "simplest config (use defaults)",
expectedLatencyHistogramBuckets: defaultLatencyHistogramBucketsMs,
},
{
name: "latency histogram configured with catch-all bucket to check no additional catch-all bucket inserted",
latencyHistogramBuckets: []time.Duration{2 * time.Millisecond},
expectedLatencyHistogramBuckets: []float64{2},
},
{
name: "full config with no catch-all bucket and check the catch-all bucket is inserted",
latencyHistogramBuckets: []time.Duration{2 * time.Millisecond},
expectedLatencyHistogramBuckets: []float64{2},
},
} {
t.Run(tc.name, func(t *testing.T) {
// Prepare
factory := newConnectorFactory()
creationParams := connectortest.NewNopCreateSettings()
cfg := factory.CreateDefaultConfig().(*Config)
cfg.LatencyHistogramBuckets = tc.latencyHistogramBuckets
// Test
conn, err := factory.CreateTracesToMetrics(context.Background(), creationParams, cfg, consumertest.NewNop())
smc := conn.(*serviceGraphProcessor)
// Verify
assert.NoError(t, err)
assert.NotNil(t, smc)
assert.Equal(t, tc.expectedLatencyHistogramBuckets, smc.reqDurationBounds)
})
}
}