-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathconfig_test.go
171 lines (151 loc) · 5.18 KB
/
config_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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package cloudfoundryreceiver
import (
"path/filepath"
"reflect"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/config/confighttp"
"go.opentelemetry.io/collector/config/configtls"
"go.opentelemetry.io/collector/confmap/confmaptest"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudfoundryreceiver/internal/metadata"
)
func TestLoadConfig(t *testing.T) {
t.Parallel()
cm, err := confmaptest.LoadConf(filepath.Join("testdata", "config.yaml"))
require.NoError(t, err)
clientConfig := confighttp.NewDefaultClientConfig()
clientConfig.Endpoint = "https://log-stream.sys.example.internal"
clientConfig.TLSSetting = configtls.ClientConfig{
InsecureSkipVerify: true,
}
clientConfig.Timeout = time.Second * 20
tests := []struct {
id component.ID
expected component.Config
errorMessage string
}{
{
id: component.NewIDWithName(metadata.Type, "one"),
expected: &Config{
RLPGateway: RLPGatewayConfig{
ClientConfig: clientConfig,
ShardID: "otel-test",
},
UAA: UAAConfig{
LimitedClientConfig: LimitedClientConfig{
Endpoint: "https://uaa.sys.example.internal",
TLSSetting: LimitedTLSClientSetting{
InsecureSkipVerify: true,
},
},
Username: "admin",
Password: "test",
},
},
},
{
id: component.NewIDWithName(metadata.Type, "empty"),
errorMessage: "UAA password not specified",
},
{
id: component.NewIDWithName(metadata.Type, "invalid"),
errorMessage: "failed to parse rlp_gateway.endpoint as url: parse \"https://[invalid\": missing ']' in host",
},
{
id: component.NewIDWithName(metadata.Type, "shardidnotdefined"),
expected: &Config{
RLPGateway: RLPGatewayConfig{
ClientConfig: clientConfig,
ShardID: "opentelemetry",
},
UAA: UAAConfig{
LimitedClientConfig: LimitedClientConfig{
Endpoint: "https://uaa.sys.example.internal",
TLSSetting: LimitedTLSClientSetting{
InsecureSkipVerify: true,
},
},
Username: "admin",
Password: "test",
},
},
},
}
for _, tt := range tests {
t.Run(tt.id.String(), func(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
sub, err := cm.Sub(tt.id.String())
require.NoError(t, err)
require.NoError(t, sub.Unmarshal(cfg))
if tt.expected == nil {
assert.EqualError(t, component.ValidateConfig(cfg), tt.errorMessage)
return
}
assert.NoError(t, component.ValidateConfig(cfg))
assert.Equal(t, tt.expected, cfg)
})
}
}
func TestInvalidConfigValidation(t *testing.T) {
configuration := loadSuccessfulConfig(t)
configuration.RLPGateway.Endpoint = "https://[invalid"
require.Error(t, configuration.Validate())
configuration = loadSuccessfulConfig(t)
configuration.UAA.Username = ""
require.Error(t, configuration.Validate())
configuration = loadSuccessfulConfig(t)
configuration.UAA.Password = ""
require.Error(t, configuration.Validate())
configuration = loadSuccessfulConfig(t)
configuration.RLPGateway.ShardID = ""
require.Error(t, configuration.Validate())
configuration = loadSuccessfulConfig(t)
configuration.UAA.Endpoint = "https://[invalid"
require.Error(t, configuration.Validate())
}
func TestHTTPConfigurationStructConsistency(t *testing.T) {
// LimitedClientConfig must have the same structure as ClientConfig, but without the fields that the UAA
// library does not support.
checkTypeFieldMatch(t, "Endpoint", reflect.TypeOf(LimitedClientConfig{}), reflect.TypeOf(confighttp.NewDefaultClientConfig()))
checkTypeFieldMatch(t, "TLSSetting", reflect.TypeOf(LimitedClientConfig{}), reflect.TypeOf(confighttp.NewDefaultClientConfig()))
checkTypeFieldMatch(t, "InsecureSkipVerify", reflect.TypeOf(LimitedTLSClientSetting{}), reflect.TypeOf(configtls.ClientConfig{}))
}
func loadSuccessfulConfig(t *testing.T) *Config {
clientConfig := confighttp.NewDefaultClientConfig()
clientConfig.Endpoint = "https://log-stream.sys.example.internal"
clientConfig.Timeout = time.Second * 20
clientConfig.TLSSetting = configtls.ClientConfig{
InsecureSkipVerify: true,
}
configuration := &Config{
RLPGateway: RLPGatewayConfig{
ClientConfig: clientConfig,
ShardID: "otel-test",
},
UAA: UAAConfig{
LimitedClientConfig: LimitedClientConfig{
Endpoint: "https://uaa.sys.example.internal",
TLSSetting: LimitedTLSClientSetting{
InsecureSkipVerify: true,
},
},
Username: "admin",
Password: "test",
},
}
require.NoError(t, configuration.Validate())
return configuration
}
func checkTypeFieldMatch(t *testing.T, fieldName string, localType reflect.Type, standardType reflect.Type) {
localField, localFieldPresent := localType.FieldByName(fieldName)
standardField, standardFieldPresent := standardType.FieldByName(fieldName)
require.True(t, localFieldPresent, "field %s present in local type", fieldName)
require.True(t, standardFieldPresent, "field %s present in standard type", fieldName)
require.Equal(t, localField.Tag, standardField.Tag, "field %s tag match", fieldName)
}