-
Notifications
You must be signed in to change notification settings - Fork 2
/
pool_test.go
74 lines (57 loc) · 1.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package octopus
import (
"strconv"
"testing"
)
func Test_CachedWorkerPool(t *testing.T) {
pool, _ := NewCachedWorkerPool()
f, err := pool.SubmitCallable(func () interface{} {
t.Log("Hi")
return "Hi, result"
})
if err != nil {
t.Error(err)
}
v, _ := f.Get()
t.Log(v)
pool.SubmitRunnable(func () {
t.Log("Hello")
})
var r Runnable = func() {
t.Log("test Runnable var")
}
pool.SubmitRunnable(r)
r2 := func() {
t.Log("test Runnable var 2")
}
pool.SubmitRunnable(r2)
for i:=0; i<30; i++ {
pool.SubmitCallable(func() interface{} {
t.Log("num: ", i)
return i
})
}
// wait for all goroutine done
pool.Shutdown()
}
func Test_CachedDataProcessPool (t *testing.T) {
pool, _ := NewCachedDataProcessPool(func (object interface{}) interface{} {
v := object.(string)
return v+" end"
})
f, err := pool.Submit("test1")
if err != nil {
t.Error(err)
}
v, _ := f.Get()
t.Log(v)
for i:=0; i<30; i++ {
f, err := pool.Submit(strconv.Itoa(i))
if err != nil {
t.Error(err)
}
v, _ := f.Get()
t.Log(v)
}
pool.Shutdown()
}