-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpool_test.go
50 lines (45 loc) · 1.08 KB
/
pool_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
package workpool
import (
"encoding/binary"
"testing"
"time"
)
func TestPool(t *testing.T) {
wp, err := NewWorkerPool(1024, nil)
if err != nil {
t.Errorf("TestPool NewWorkerPool error [%v]", err)
}
wp.Start()
ftasks := make([]*FutureTask, 10000)
for i := 0; i < 10000; i++ {
ft := NewFutureTask(&SampleTask{
ID: uint64(i),
})
for ac := wp.Submit(ft); ac != nil; ac = wp.Submit(ft) {
// t.Errorf("TestPool submit [%v], actually: [%v]", nil, ac)
}
ftasks[i] = ft
}
for i, v := range ftasks {
res, err := v.Wait(100 * time.Millisecond)
if err != nil {
t.Errorf("TestPool wait [%v], actually: [%v]", nil, err)
}
id := binary.BigEndian.Uint64(*res)
if id != uint64(i) {
t.Errorf("TestPool want[%v], actually: [%v]", i, id)
}
}
}
func BenchmarkPoolParallel(b *testing.B) {
wp, _ := NewWorkerPool(1024, nil)
wp.Start()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
ft := NewFutureTask(new(SampleTask))
for ac := wp.Submit(ft); ac != nil; ac = wp.Submit(ft) {
// t.Errorf("TestPool submit [%v], actually: [%v]", nil, ac)
}
}
})
}