-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpool_test.go
85 lines (68 loc) · 1.05 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
75
76
77
78
79
80
81
82
83
84
85
package grpool
import (
"strings"
"testing"
"time"
)
var (
p = &Pool{
Max: 2,
MaxIdle: 2,
Idle: time.Second * 60,
Live: time.Second * 120,
Wait: false,
}
)
func TestCnt(t *testing.T) {
defer p.Close()
var s string
f := func() {
time.Sleep(time.Second)
s = s + "hello"
}
p.Submit(f)
p.Submit(f)
err := p.Submit(f)
if strings.Index(err.Error(), "no worker") != -1 {
return
}
t.Fatal("num is fault")
}
func TestWaitResult(t *testing.T) {
defer func() {
p.Wait = false
p.Close()
}()
p.Wait = true
var s string
f := func() {
time.Sleep(time.Second)
s = s + "hello"
}
p.Submit(f)
p.Submit(f)
p.Submit(f)
time.Sleep(time.Second * 2)
if s == "hellohellohello" {
return
}
t.Fatal("wait submit rst is fault")
}
func TestNoWaitResult(t *testing.T) {
defer func() {
p.Close()
}()
var s string
f := func() {
time.Sleep(time.Second)
s = s + "hello"
}
p.Submit(f)
p.Submit(f)
p.Submit(f)
time.Sleep(time.Second * 2)
if s == "hellohello" {
return
}
t.Fatal("nowait submit rst is fault")
}