forked from aws/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
influxdb_test.go
103 lines (98 loc) · 2.01 KB
/
influxdb_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
package influxdb_v2_test
import (
"testing"
"github.com/influxdata/telegraf/internal/tls"
"github.com/influxdata/telegraf/plugins/outputs"
influxdb "github.com/influxdata/telegraf/plugins/outputs/influxdb_v2"
"github.com/stretchr/testify/require"
)
func TestDefaultURL(t *testing.T) {
output := influxdb.InfluxDB{}
err := output.Connect()
require.NoError(t, err)
if len(output.URLs) < 1 {
t.Fatal("Default URL failed to get set")
}
require.Equal(t, "http://localhost:9999", output.URLs[0])
}
func TestConnect(t *testing.T) {
tests := []struct {
err bool
out influxdb.InfluxDB
}{
{
out: influxdb.InfluxDB{
URLs: []string{"http://localhost:1234"},
HTTPProxy: "http://localhost:9999",
HTTPHeaders: map[string]string{
"x": "y",
},
},
},
{
err: true,
out: influxdb.InfluxDB{
URLs: []string{"!@#$qwert"},
HTTPProxy: "http://localhost:9999",
HTTPHeaders: map[string]string{
"x": "y",
},
},
},
{
err: true,
out: influxdb.InfluxDB{
URLs: []string{"http://localhost:1234"},
HTTPProxy: "!@#$%^&*()_+",
HTTPHeaders: map[string]string{
"x": "y",
},
},
},
{
err: true,
out: influxdb.InfluxDB{
URLs: []string{"!@#$%^&*()_+"},
HTTPProxy: "http://localhost:9999",
HTTPHeaders: map[string]string{
"x": "y",
},
},
},
{
err: true,
out: influxdb.InfluxDB{
URLs: []string{":::@#$qwert"},
HTTPProxy: "http://localhost:9999",
HTTPHeaders: map[string]string{
"x": "y",
},
},
},
{
err: true,
out: influxdb.InfluxDB{
URLs: []string{"https://localhost:8080"},
ClientConfig: tls.ClientConfig{
TLSCA: "thing",
},
},
},
}
for i := range tests {
err := tests[i].out.Connect()
if !tests[i].err {
require.NoError(t, err)
} else {
require.Error(t, err)
t.Log(err)
}
}
}
func TestUnused(t *testing.T) {
thing := influxdb.InfluxDB{}
thing.Close()
thing.Description()
thing.SampleConfig()
outputs.Outputs["influxdb_v2"]()
}