-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpool_test.go
75 lines (57 loc) · 1.11 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
package pool
import (
"fmt"
"testing"
"time"
)
func testFunc(x int, y *int) int {
fmt.Printf("%d\n", x)
*y = x + *y
return x
}
func testSleep(x, final int, y *int) int {
fmt.Printf("%d\n", x)
*y = x + *y
for *y != final {
time.Sleep(1 * time.Second)
}
return x
}
func TestPool(t *testing.T) {
pool := NewRoutinePool(5)
var result int
for i := 0; i < 20; i++ {
pool.Run(testFunc, i, &result)
}
pool.Done()
if result != 190 {
t.Error("invalid num of result", result)
}
}
func TestDefaultPool(t *testing.T) {
pool := NewDefaultRoutinePool()
var result int
for i := 0; i < 20; i++ {
pool.Run(testFunc, i, &result)
}
pool.Done()
if result != 190 {
t.Error("invalid num of result", result)
}
}
func TestRunning(t *testing.T) {
pool := NewRoutinePool(30)
var result int
for i := 0; i < 19; i++ {
pool.Run(testSleep, i, 190, &result)
}
fmt.Println("hello: ", pool.Running())
if pool.Running() != 19 {
t.Error("invalid num of running routines", pool.Running)
}
pool.Run(testSleep, 19, 190, &result)
pool.Done()
if result != 190 {
t.Error("invalid num of result", result)
}
}