-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
factory_test.go
84 lines (76 loc) · 2.28 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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package bigipreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/bigipreceiver"
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/config/confighttp"
"go.opentelemetry.io/collector/consumer/consumertest"
"go.opentelemetry.io/collector/receiver/receivertest"
"go.opentelemetry.io/collector/receiver/scraperhelper"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/bigipreceiver/internal/metadata"
)
func TestNewFactory(t *testing.T) {
clientConfig := confighttp.NewDefaultClientConfig()
clientConfig.Endpoint = defaultEndpoint
clientConfig.Timeout = 10 * time.Second
testCases := []struct {
desc string
testFunc func(*testing.T)
}{
{
desc: "creates a new factory with correct type",
testFunc: func(t *testing.T) {
factory := NewFactory()
require.EqualValues(t, metadata.Type, factory.Type())
},
},
{
desc: "creates a new factory with valid default config",
testFunc: func(t *testing.T) {
factory := NewFactory()
var expectedCfg component.Config = &Config{
ControllerConfig: scraperhelper.ControllerConfig{
CollectionInterval: 10 * time.Second,
},
ClientConfig: clientConfig,
MetricsBuilderConfig: metadata.DefaultMetricsBuilderConfig(),
}
require.Equal(t, expectedCfg, factory.CreateDefaultConfig())
},
},
{
desc: "creates a new factory and CreateMetrics returns no error",
testFunc: func(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
_, err := factory.CreateMetrics(
context.Background(),
receivertest.NewNopSettings(),
cfg,
consumertest.NewNop(),
)
require.NoError(t, err)
},
},
{
desc: "creates a new factory and CreateMetrics returns error with incorrect config",
testFunc: func(t *testing.T) {
factory := NewFactory()
_, err := factory.CreateMetrics(
context.Background(),
receivertest.NewNopSettings(),
nil,
consumertest.NewNop(),
)
require.ErrorIs(t, err, errConfigNotBigip)
},
},
}
for _, tc := range testCases {
t.Run(tc.desc, tc.testFunc)
}
}