-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcgroup_test.go
244 lines (232 loc) · 5.31 KB
/
concgroup_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package concgroup_test
import (
"context"
"errors"
"fmt"
"net/http"
"sync"
"testing"
"time"
"github.com/k1LoW/concgroup"
)
//nolint:gosec
// Original example is https://pkg.go.dev/golang.org/x/sync/errgroup#example-Group-JustErrors
func ExampleGroup() {
cg := new(concgroup.Group)
var urlgroups = map[string][]string{
"go": {
"https://go.dev/",
"https://go.dev/dl/",
},
"google": {
"http://www.google.com/",
},
}
for key, ug := range urlgroups {
key := key
for _, url := range ug {
url := url // https://golang.org/doc/faq#closures_and_goroutines
cg.Go(key, func() error {
// Fetch URL sequentially by key
resp, err := http.Get(url)
if err == nil {
resp.Body.Close()
}
return err
})
}
}
// Wait for all HTTP fetches to complete.
if err := cg.Wait(); err == nil {
fmt.Println("Successfully fetched all URLs.")
}
}
func TestSimple(t *testing.T) {
t.Parallel()
cg := &concgroup.Group{}
cg.Go("one", func() error {
return nil
})
cg.Go("two", func() error {
return nil
})
if err := cg.Wait(); err != nil {
t.Error(err)
}
}
func TestConcurrencyGroup(t *testing.T) {
t.Parallel()
cg := new(concgroup.Group)
mu := sync.Mutex{}
for i := 0; i < 10; i++ {
cg.Go("samegroup", func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
defer mu.Unlock()
time.Sleep(50 * time.Millisecond)
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
}
func TestConcurrencyGroupWithContext(t *testing.T) {
t.Parallel()
ctx := context.Background()
cg, _ := concgroup.WithContext(ctx)
mu := sync.Mutex{}
for i := 0; i < 10; i++ {
cg.Go("samegroup", func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
defer mu.Unlock()
time.Sleep(50 * time.Millisecond)
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
}
func TestConcurrencyGroupWithSetLimit(t *testing.T) {
t.Parallel()
const loop = 10
cg := new(concgroup.Group)
cg.SetLimit(1)
mu := sync.Mutex{}
call := 0
for i := 0; i < loop; i++ {
cg.Go("samegroup", func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
call++
defer mu.Unlock()
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
if call != loop {
t.Error("Failed to Go")
}
}
func TestConcurrencyGroupWithTryGo(t *testing.T) {
t.Parallel()
const loop = 10
cg := new(concgroup.Group)
cg.SetLimit(1)
mu := sync.Mutex{}
call := 0
for i := 0; i < loop; i++ {
cg.TryGo("samegroup", func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
call++
defer mu.Unlock()
time.Sleep(50 * time.Millisecond)
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
if call == loop {
t.Error("Failed to skip by TryGo")
}
}
func TestConcurrencyGroupMulti(t *testing.T) {
t.Parallel()
cg := new(concgroup.Group)
mu := sync.Mutex{}
for i := 0; i < 10; i++ {
keys := []string{"samegroup", fmt.Sprintf("group-%d", i)}
cg.GoMulti(keys, func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
defer mu.Unlock()
time.Sleep(50 * time.Millisecond)
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
}
func TestConcurrencyGroupWithTryGoMulti(t *testing.T) {
t.Parallel()
const loop = 10
cg := new(concgroup.Group)
cg.SetLimit(1)
mu := sync.Mutex{}
call := 0
for i := 0; i < loop; i++ {
keys := []string{"samegroup", fmt.Sprintf("group-%d", i)}
cg.TryGoMulti(keys, func() error {
if !mu.TryLock() {
return errors.New("violate group concurrency")
}
call++
defer mu.Unlock()
time.Sleep(50 * time.Millisecond)
return nil
})
}
if err := cg.Wait(); err != nil {
t.Error(err)
}
if call == loop {
t.Error("Failed to skip by TryGoMulti")
}
}
func TestConcurrencyGroupMultiAvoidDeadlock(t *testing.T) {
keys := []string{"A0", "B0", "C0"}
var otherKeysA, otherKeysB []string
for i := 1; i < 1000; i++ {
otherKeysA = append(otherKeysA, fmt.Sprintf("A%d", i))
otherKeysB = append(otherKeysB, fmt.Sprintf("B%d", i))
}
keys = append(keys, otherKeysA...)
keys = append(keys, otherKeysB...)
tests := []struct {
name string
a []string
b []string
}{
{"Same keys", []string{"A0"}, []string{"A0"}},
{"Other keys", []string{"A0"}, []string{"B0"}},
{"Order of keys in which deadlock is likely to occur in a and b", append(append([]string{"A0"}, otherKeysA...), "B0"), append(append([]string{"B0"}, otherKeysA...), "A0")},
{"Order of keys in which deadlock is likely to occur in a and b", append(append([]string{"A0"}, otherKeysA...), "C0"), append(append([]string{"B0"}, otherKeysB...), "C0")},
{"Order of keys in which deadlock is likely to occur in a and b", append(append(append([]string{"A0"}, otherKeysA...), otherKeysB...), "C0"), append(append([]string{"B0"}, otherKeysB...), "C0")},
}
for _, tt := range tests {
mu := sync.Mutex{}
cg := new(concgroup.Group)
mu.Lock()
// Lock all keys
cg.GoMulti(keys, func() error {
mu.Lock()
defer mu.Unlock()
return nil
})
// Waiging to lock tt.a
cg.GoMulti(tt.a, func() error {
return nil
})
// Waiging to lock tt.b
cg.GoMulti(tt.b, func() error {
return nil
})
// Unlock all keys
mu.Unlock()
if err := cg.Wait(); err != nil {
t.Fatal(err)
}
}
}