-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_test.go
More file actions
100 lines (96 loc) · 2.2 KB
/
config_test.go
File metadata and controls
100 lines (96 loc) · 2.2 KB
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
package sink
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_ConfigValidation(t *testing.T) {
tests := []struct {
name string
c Config[any, any]
errString string
}{
{
name: "MaxItemsForBatching",
c: Config[any, any]{},
errString: "max items for batching must be more than zero",
},
{
name: "ExpensiveOperation",
c: Config[any, any]{
MaxItemsForBatching: 1,
},
errString: "there is not expensive operation",
},
{
name: "MaxTimeoutForBatching",
c: Config[any, any]{
MaxItemsForBatching: 1,
ExpensiveOperation: func(i []any) ([]any, error) {
return nil, nil
},
},
errString: "max timeout for matching must be more than 1 millisecond",
},
{
name: "AddPoolSize",
c: Config[any, any]{
MaxItemsForBatching: 1,
ExpensiveOperation: func(i []any) ([]any, error) {
return nil, nil
},
MaxTimeoutForBatching: time.Millisecond,
},
errString: "add pool size must be more than zero",
},
{
name: "CallbackPoolSize",
c: Config[any, any]{
MaxItemsForBatching: 1,
ExpensiveOperation: func(i []any) ([]any, error) {
return nil, nil
},
MaxTimeoutForBatching: time.Millisecond,
AddPoolSize: 1,
},
errString: "callback pool size must be more than zero",
},
{
name: "ExpensivePoolSize",
c: Config[any, any]{
MaxItemsForBatching: 1,
ExpensiveOperation: func(i []any) ([]any, error) {
return nil, nil
},
MaxTimeoutForBatching: time.Millisecond,
AddPoolSize: 1,
CallbackPoolSize: 1,
},
errString: "expensive pool size must be more than zero",
},
{
name: "Valid",
c: Config[any, any]{
MaxItemsForBatching: 1,
ExpensiveOperation: func(i []any) ([]any, error) {
return nil, nil
},
MaxTimeoutForBatching: time.Millisecond,
AddPoolSize: 1,
CallbackPoolSize: 1,
ExpensivePoolSize: 1,
},
errString: "",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
err := validateConfig(test.c)
if test.errString == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, test.errString)
}
})
}
}