-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkpool_test.go
244 lines (209 loc) · 4.91 KB
/
workpool_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 workpool
import (
"context"
"errors"
"sync"
"testing"
"time"
)
func TestInitializeValidParameters(t *testing.T) {
ctx := context.Background()
numWorkers := 5
queueCapacity := 10
p, err := Initialize(ctx, numWorkers, queueCapacity)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if p.numWorkers != numWorkers {
t.Fatalf("expected numWorkers %d, got %d", numWorkers, p.numWorkers)
}
if cap(p.jobQueue) != queueCapacity {
t.Fatalf("expected queueCapacity %d, got %d", queueCapacity, cap(p.jobQueue))
}
p.Stop()
}
func TestInitializeInvalidParameters(t *testing.T) {
ctx := context.Background()
_, err := Initialize(ctx, 0, 10)
if !errors.Is(err, ErrInvalidNumWorkers) {
t.Fatalf("expected ErrInvalidNumWorkers, got %v", err)
}
_, err = Initialize(ctx, 5, 0)
if !errors.Is(err, ErrInvalidQueueCapacity) {
t.Fatalf("expected ErrInvalidQueueCapacity, got %v", err)
}
}
func TestSubmitJob(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
defer p.Stop()
jobExecuted := make(chan bool, 1)
err = p.Submit(func(ctx context.Context) error {
jobExecuted <- true
return nil
})
if err != nil {
t.Fatalf("Submit failed: %v", err)
}
select {
case <-jobExecuted:
// Job executed successfully
case <-time.After(1 * time.Second):
t.Fatal("Job was not executed within 1 second")
}
}
func TestSubmitAfterStop(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
p.Stop()
err = p.Submit(func(ctx context.Context) error {
return nil
})
if err != ErrPoolStopped {
t.Fatalf("expected ErrPoolStopped, got %v", err)
}
}
func TestSubmitAndWait(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
defer p.Stop()
jobExecuted := false
err = p.SubmitAndWait(func(ctx context.Context) error {
jobExecuted = true
return nil
})
if err != nil {
t.Fatalf("SubmitAndWait failed: %v", err)
}
if !jobExecuted {
t.Fatal("Job was not executed")
}
}
func TestSubmitAndWaitAfterStop(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
p.Stop()
err = p.SubmitAndWait(func(ctx context.Context) error {
return nil
})
if err != ErrPoolStopped {
t.Fatalf("expected ErrPoolStopped, got %v", err)
}
}
func TestJobReturnsError(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
defer p.Stop()
expectedErr := errors.New("job error")
err = p.SubmitAndWait(func(ctx context.Context) error {
return expectedErr
})
if err != expectedErr {
t.Fatalf("expected %v, got %v", expectedErr, err)
}
}
func TestContextCancellation(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
defer p.Stop()
jobStarted := make(chan bool)
jobCancelled := make(chan bool)
err = p.Submit(func(ctx context.Context) error {
jobStarted <- true
select {
case <-ctx.Done():
jobCancelled <- true
case <-time.After(2 * time.Second):
// Job completed
}
return nil
})
if err != nil {
t.Fatalf("Submit failed: %v", err)
}
// Wait for the job to start
<-jobStarted
// Cancel the context
cancel()
select {
case <-jobCancelled:
// Job detected context cancellation
case <-time.After(1 * time.Second):
t.Fatal("Job did not detect context cancellation within 1 second")
}
}
func TestPoolStop(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
var mu sync.Mutex
jobCount := 0
for i := 0; i < 10; i++ {
err = p.Submit(func(ctx context.Context) error {
time.Sleep(100 * time.Millisecond)
mu.Lock()
jobCount++
mu.Unlock()
return nil
})
if err != nil {
t.Fatalf("Submit failed: %v", err)
}
}
// Stop the pool after a short delay
time.AfterFunc(200*time.Millisecond, func() {
p.Stop()
})
// Wait for the pool to stop
p.wg.Wait()
mu.Lock()
count := jobCount
mu.Unlock()
if count == 0 {
t.Fatal("No jobs were executed")
} else {
t.Logf("Jobs executed before and after pool stopped: %d", count)
}
}
func TestNoJobsProcessedAfterStop(t *testing.T) {
ctx := context.Background()
p, err := Initialize(ctx, 2, 5)
if err != nil {
t.Fatalf("Initialize failed: %v", err)
}
p.Stop()
jobExecuted := make(chan bool, 1)
err = p.Submit(func(ctx context.Context) error {
jobExecuted <- true
return nil
})
if err != ErrPoolStopped {
t.Fatalf("expected ErrPoolStopped, got %v", err)
}
select {
case <-jobExecuted:
t.Fatal("Job was executed after pool was stopped")
case <-time.After(500 * time.Millisecond):
// No job executed, as expected
}
}