forked from pallat/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager_test.go
More file actions
181 lines (139 loc) · 3.19 KB
/
Copy pathmanager_test.go
File metadata and controls
181 lines (139 loc) · 3.19 KB
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
package queue
import (
"context"
"errors"
"fmt"
"sync/atomic"
"testing"
"time"
)
// work is int32, not int, so its increment can go through sync/atomic:
// Manager runs multiple Do() goroutines against the same Worker concurrently.
type work int32
func (w *work) Do(v interface{}) interface{} {
fmt.Printf("-->%#v\n%#v\n", w, v)
atomic.AddInt32((*int32)(w), 1)
return nil
}
func TestQueuManager(t *testing.T) {
s := mySimpler{i: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
var w work
ctx := context.Background()
m := NewManager(ctx, &w, s)
go m.Do()
go m.Do()
go m.Do()
go m.Do()
go m.Do()
go m.Do()
<-m.End()
if w != 10 {
t.Error("not finish", w)
}
}
type slow int32
func (w *slow) Do(v interface{}) interface{} {
time.Sleep(500 * time.Millisecond)
atomic.AddInt32((*int32)(w), 1)
fmt.Println(w, v)
return nil
}
func TestQueuManagerTimeout(t *testing.T) {
// items := []interface{}{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
s := mySimpler{i: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
var w slow
ctx, cancel := context.WithTimeout(context.Background(), 300*time.Millisecond)
defer cancel()
m := NewManager(ctx, &w, s)
go m.Do()
go m.Do()
go m.Do()
go m.Do()
<-m.End()
if w == 10 {
t.Error("not timeout", w)
}
}
type workPanic int
func (w *workPanic) Do(v interface{}) interface{} {
defer func() {
if r := recover(); r != nil {
fmt.Println(r)
}
}()
panic(errors.New("fail"))
return nil
}
func TestQueuManagerWhenWorkerHasPanic(t *testing.T) {
s := mySimpler{i: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
var w workPanic
ctx := context.Background()
m := NewManager(ctx, &w, s)
go m.Do()
go m.Do()
<-m.End()
if w != 0 {
t.Error("not finish", w)
}
}
type workError int
func (w *workError) Do(v interface{}) interface{} {
if (v.(int) % 2) == 0 {
return errors.New("it's error")
}
return nil
}
func TestQueuManagerWhenWorkerHasError(t *testing.T) {
s := mySimpler{i: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
var w workError
ctx := context.Background()
m := NewManager(ctx, &w, s)
go m.Do()
go m.Do()
<-m.End()
if w != 0 {
t.Error("not finish", w)
}
for err := range m.Response() {
fmt.Println("---->", err)
}
}
func TestQueuManagerResponseClosesWhenContextCancelledBeforeAllItemsProcessed(t *testing.T) {
items := make([]int, 30)
s := mySimpler{i: items}
var w work
ctx, cancel := context.WithCancel(context.Background())
cancel() // cancelled before Do() ever starts, so every item should be skipped
m := NewManager(ctx, &w, s)
go m.Do()
select {
case <-m.End():
case <-time.After(2 * time.Second):
t.Fatal("Manager did not end after context cancellation")
}
done := make(chan struct{})
go func() {
for range m.Response() {
}
close(done)
}()
select {
case <-done:
case <-time.After(2 * time.Second):
t.Fatal("Response channel was never closed after context cancellation")
}
}
func TestQueuManagerCountsEveryItemUnderConcurrentWorkers(t *testing.T) {
const total = 200
s := mySimpler{i: make([]int, total)}
var w work
ctx := context.Background()
m := NewManager(ctx, &w, s)
for i := 0; i < 20; i++ {
go m.Do()
}
<-m.End()
if int(w) != total {
t.Errorf("expected %d, got %d (lost increments under concurrent Do calls)", total, w)
}
}