-
Notifications
You must be signed in to change notification settings - Fork 2
/
swrr_test.go
140 lines (126 loc) · 2.49 KB
/
swrr_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
package balancer
import (
"sync"
"sync/atomic"
"testing"
)
func TestSmoothWeightedRoundRobin(t *testing.T) {
lb := NewSmoothWeightedRoundRobin()
item := lb.Select()
if item != "" {
t.Fatalf("swrr expected empty, actual %s", item)
}
lb.Add("A", 0)
item = lb.Select()
if item != "" {
t.Fatalf("swrr expected empty, actual %s", item)
}
lb.Add("B", 1)
item = lb.Select()
if item != "B" {
t.Fatalf("swrr expected B, actual %s", item)
}
nodes := map[string]int{
"A": 0,
"B": 1,
"C": 7,
"D": 2,
}
lb = NewSmoothWeightedRoundRobin(nodes)
count := make(map[string]int)
for i := 0; i < 1000; i++ {
item := lb.Select()
count[item]++
}
if count["A"] != 0 || count["B"] != 100 || count["C"] != 700 || count["D"] != 200 {
t.Fatal("swrr wrong")
}
lb.Reset()
lb.Add("E", 10)
for i := 0; i < 2000; i++ {
item := lb.Select()
count[item]++
}
if count["A"] != 0 || count["B"] != 200 || count["C"] != 1400 || count["D"] != 400 || count["E"] != 1000 {
t.Fatal("swrr reset() wrong")
}
ok := lb.Remove("E")
if ok != true {
t.Fatal("swrr remove() wrong")
}
lb.Reset()
for i := 0; i < 1000; i++ {
item := lb.Select()
count[item]++
}
if count["A"] != 0 || count["B"] != 300 || count["C"] != 2100 || count["D"] != 600 {
t.Fatal("swrr wrong")
}
lb.RemoveAll()
lb.Add("F", 2)
lb.Add("F", 1)
all, ok := lb.All().(map[string]int)
if !ok || all["F"] != 1 {
t.Fatal("swrr all() wrong")
}
nodes = map[string]int{
"X": 0,
"Y": 1,
}
ok = lb.Update(nodes)
if ok != true {
t.Fatal("swrr update wrong")
}
all, ok = lb.All().(map[string]int)
if !ok || all["Y"] != 1 {
t.Fatal("swrr all() wrong")
}
item = lb.Select()
if item != "Y" {
t.Fatal("swrr update wrong")
}
}
func TestSmoothWeightedRoundRobin_C(t *testing.T) {
var (
a, b, c, d int64
)
nodes := map[string]int{
"A": 5,
"B": 1,
"C": 4,
"D": 0,
}
lb := NewSmoothWeightedRoundRobin(nodes)
var wg sync.WaitGroup
for i := 0; i < 500; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for j := 0; j < 2000; j++ {
switch lb.Select() {
case "A":
atomic.AddInt64(&a, 1)
case "B":
atomic.AddInt64(&b, 1)
case "C":
atomic.AddInt64(&c, 1)
case "D":
atomic.AddInt64(&d, 1)
}
}
}()
}
wg.Wait()
if atomic.LoadInt64(&a) != 500000 {
t.Fatal("swrr wrong: a")
}
if atomic.LoadInt64(&b) != 100000 {
t.Fatal("swrr wrong: b")
}
if atomic.LoadInt64(&c) != 400000 {
t.Fatal("swrr wrong: c")
}
if atomic.LoadInt64(&d) != 0 {
t.Fatal("swrr wrong: d")
}
}