-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
80 lines (70 loc) · 1.62 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
package main
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestSocketTypeValidation(t *testing.T) {
var testCases = []struct {
value string
valid bool
}{
{"tcp", false},
{"unix", false},
{"unixgram", true},
{"udp", true},
{"datagram", false},
{"whatever", false},
{"", false},
}
for _, testCase := range testCases {
assert.Equal(t, testCase.valid, validateSocketType(testCase.value))
}
}
func TestStreamNameValidation(t *testing.T) {
var testCases = []struct {
streamName string
dispatcherType string
valid bool
}{
{"", "kinesis", false},
{"", "echo", true},
{"a_name", "kinesis", true},
}
for _, testCase := range testCases {
assert.Equal(t, testCase.valid,
validateStreamName(testCase.streamName, testCase.dispatcherType))
}
}
func TestInfluxValidation(t *testing.T) {
var testCases = []struct {
dispatcherType string
host string
database string
valid bool
}{
{"influx", "", "", false},
{"influx", "host", "", false},
{"influx", "", "database", false},
{"influx", "host", "database", true},
{"other", "", "", true},
{"", "", "", true},
}
for _, testCase := range testCases {
assert.Equal(t, testCase.valid,
validateInflux(testCase.dispatcherType, testCase.host, testCase.database))
}
}
func TestBatchFrequencyValidation(t *testing.T) {
var testCases = []struct {
freq time.Duration
valid bool
}{
{-1 * time.Second, false},
{0 * time.Second, false},
{1 * time.Second, true},
}
for _, testCase := range testCases {
assert.Equal(t, testCase.valid, validateBatchFrequency(testCase.freq))
}
}