-
Notifications
You must be signed in to change notification settings - Fork 0
/
async_test.go
62 lines (48 loc) · 1011 Bytes
/
async_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
package async_test
import (
"fmt"
"math/rand"
"testing"
"time"
"github.com/geeksteam/async"
)
func TestString(t *testing.T) {
c := async.NewCollector(async.StringMap())
for i := 1; i <= 10; i++ {
c.Add(func() (async.G, async.G) {
i := rand.Intn(100)
time.Sleep(1 * time.Second)
return fmt.Sprint(i), i
})
}
fmt.Println(c.Result())
}
func TestInt(t *testing.T) {
c := async.NewCollector(async.IntMap())
for i := 1; i <= 10; i++ {
c.Add(func() (async.G, async.G) {
i := rand.Intn(100)
time.Sleep(1 * time.Second)
return i, i
})
}
fmt.Println(c.Result())
}
func TestCustom(t *testing.T) {
c := async.NewCollector(customMap{})
for i := 1; i <= 10; i++ {
c.Add(func() (async.G, async.G) {
i := rand.Intn(100)
time.Sleep(1 * time.Second)
return keyStruct{i}, i
})
}
fmt.Println(c.Result())
}
type keyStruct struct {
value int
}
type customMap map[keyStruct]interface{}
func (cm customMap) Add(key, value async.G) {
cm[key.(keyStruct)] = value
}