forked from nsqio/go-nsq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
104 lines (97 loc) · 3.05 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
package nsq
import (
"math/rand"
"net"
"reflect"
"testing"
"time"
)
func TestConfigSet(t *testing.T) {
c := NewConfig()
if err := c.Set("not a real config value", struct{}{}); err == nil {
t.Error("No error when setting an invalid value")
}
if err := c.Set("tls_v1", "lol"); err == nil {
t.Error("No error when setting `tls_v1` to an invalid value")
}
if err := c.Set("tls_v1", true); err != nil {
t.Errorf("Error setting `tls_v1` config. %s", err)
}
if err := c.Set("tls-insecure-skip-verify", true); err != nil {
t.Errorf("Error setting `tls-insecure-skip-verify` config. %v", err)
}
if c.TlsConfig.InsecureSkipVerify != true {
t.Errorf("Error setting `tls-insecure-skip-verify` config: %v", c.TlsConfig)
}
if err := c.Set("tls-min-version", "tls1.2"); err != nil {
t.Errorf("Error setting `tls-min-version` config: %s", err)
}
if err := c.Set("tls-min-version", "tls1.3"); err == nil {
t.Error("No error when setting `tls-min-version` to an invalid value")
}
if err := c.Set("local_addr", &net.TCPAddr{}); err != nil {
t.Errorf("Error setting `local_addr` config: %s", err)
}
if err := c.Set("local_addr", "1.2.3.4:27015"); err != nil {
t.Errorf("Error setting `local_addr` config: %s", err)
}
if err := c.Set("dial_timeout", "5s"); err != nil {
t.Errorf("Error setting `dial_timeout` config: %s", err)
}
if c.LocalAddr.String() != "1.2.3.4:27015" {
t.Error("Failed to assign `local_addr` config")
}
if reflect.ValueOf(c.BackoffStrategy).Type().String() != "*nsq.ExponentialStrategy" {
t.Error("Failed to set default `exponential` backoff strategy")
}
if err := c.Set("backoff_strategy", "full_jitter"); err != nil {
t.Errorf("Failed to assign `backoff_strategy` config: %v", err)
}
if reflect.ValueOf(c.BackoffStrategy).Type().String() != "*nsq.FullJitterStrategy" {
t.Error("Failed to set `full_jitter` backoff strategy")
}
}
func TestConfigValidate(t *testing.T) {
c := NewConfig()
if err := c.Validate(); err != nil {
t.Error("initialized config is invalid")
}
c.DeflateLevel = 100
if err := c.Validate(); err == nil {
t.Error("no error set for invalid value")
}
}
func TestExponentialBackoff(t *testing.T) {
expected := []time.Duration{
1 * time.Second,
2 * time.Second,
8 * time.Second,
32 * time.Second,
}
backoffTest(t, expected, func(c *Config) BackoffStrategy {
return &ExponentialStrategy{cfg: c}
})
}
func TestFullJitterBackoff(t *testing.T) {
expected := []time.Duration{
724039541 * time.Nanosecond,
1603903257 * time.Nanosecond,
5232470547 * time.Nanosecond,
21467499218 * time.Nanosecond,
}
backoffTest(t, expected, func(c *Config) BackoffStrategy {
return &FullJitterStrategy{cfg: c, rng: rand.New(rand.NewSource(99))}
})
}
func backoffTest(t *testing.T, expected []time.Duration, cb func(c *Config) BackoffStrategy) {
config := NewConfig()
attempts := []int{0, 1, 3, 5}
s := cb(config)
for i := range attempts {
result := s.Calculate(attempts[i])
if result != expected[i] {
t.Fatalf("wrong backoff duration %v for attempt %d (should be %v)",
result, attempts[i], expected[i])
}
}
}