forked from rfyiamcool/gpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpool_test.go
142 lines (121 loc) Β· 2.17 KB
/
gpool_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
141
142
package gpool
import (
"fmt"
"sync"
"testing"
"time"
)
func incrCounter(c *counter) {
c.Lock()
c.counter++
c.Unlock()
}
type counter struct {
sync.Mutex
counter int
}
func TestBaseOption(t *testing.T) {
opt := Options{
MaxWorker: 10,
MinWorker: 100,
}
_, err := NewGPool(&opt)
if err == nil {
t.Fatal(err)
}
}
func TestBaseRun(t *testing.T) {
opt := Options{
MaxWorker: 10,
MinWorker: 3,
JobBuffer: 3,
IdleTimeout: 10 * time.Second,
DispatchPeriod: 100 * time.Millisecond,
}
pool, err := NewGPool(&opt)
if err != nil {
t.Fatal(err)
}
num := 100
joinRun(t, num, pool, 0)
}
func joinRun(t *testing.T, num int, pool *GoPool, blockTime time.Duration) {
incr := new(counter)
res := make(chan bool, num)
for index := 0; index < num; index++ {
pool.ProcessAsync(
func() {
incrCounter(incr)
res <- true
if blockTime > 0 {
time.Sleep(blockTime)
}
},
)
}
lc := 0
timer := time.NewTimer(15 * time.Second)
for {
select {
case <-res:
lc++
if lc == num {
return
}
case <-timer.C:
if lc != num {
t.Fatal("counter error")
}
return
}
}
}
// slow func
func TestDispatch(t *testing.T) {
opt := Options{
MaxWorker: 10,
MinWorker: 1,
JobBuffer: 1,
IdleTimeout: 1 * time.Second,
DispatchPeriod: 2 * time.Millisecond,
}
pool, err := NewGPool(&opt)
if err != nil {
t.Fatal(err)
}
// for ensure, double wait
time.Sleep(opt.IdleTimeout * 2)
if pool.curWorker != pool.minWorker {
t.Fatal("worker timeout error")
}
if pool.maxWorker < pool.minWorker {
t.Fatal("maxWorker > minWorker")
}
// notice: debug stdout
// go func() {
// for {
// print("max")
// print(pool.maxWorker)
// print("cur")
// print(pool.curWorker)
// time.Sleep(50 * time.Millisecond)
// }
// }()
num := 20
starTS := time.Now()
joinRun(t, num, pool, 1*time.Second)
cost := time.Since(starTS).Seconds()
if int(cost) > num/opt.MinWorker {
t.Logf("join run cost: %v", cost)
t.Fatal("dispatche don't add worker")
}
}
func TestResize(t *testing.T) {
// to do
}
func TestClosePool(t *testing.T) {
// to do
}
func print(msg interface{}) {
fmt.Println(msg)
}