forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunique_queue_disk_channel_test.go
223 lines (189 loc) · 5.73 KB
/
unique_queue_disk_channel_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
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package queue
import (
"fmt"
"strconv"
"sync"
"testing"
"time"
"code.gitea.io/gitea/modules/log"
"github.com/stretchr/testify/assert"
)
func TestPersistableChannelUniqueQueue(t *testing.T) {
tmpDir := t.TempDir()
fmt.Printf("TempDir %s\n", tmpDir)
_ = log.NewLogger(1000, "console", "console", `{"level":"trace","stacktracelevel":"NONE","stderr":true}`)
// Common function to create the Queue
newQueue := func(handle func(data ...Data) []Data) Queue {
q, err := NewPersistableChannelUniqueQueue(handle,
PersistableChannelUniqueQueueConfiguration{
Name: "TestPersistableChannelUniqueQueue",
DataDir: tmpDir,
QueueLength: 200,
MaxWorkers: 1,
BlockTimeout: 1 * time.Second,
BoostTimeout: 5 * time.Minute,
BoostWorkers: 1,
Workers: 0,
}, "task-0")
assert.NoError(t, err)
return q
}
// runs the provided queue and provides some timer function
type channels struct {
readyForShutdown chan struct{} // closed when shutdown functions have been assigned
readyForTerminate chan struct{} // closed when terminate functions have been assigned
signalShutdown chan struct{} // Should close to signal shutdown
doneShutdown chan struct{} // closed when shutdown function is done
queueTerminate []func() // list of atTerminate functions to call atTerminate - need to be accessed with lock
}
runQueue := func(q Queue, lock *sync.Mutex) *channels {
returnable := &channels{
readyForShutdown: make(chan struct{}),
readyForTerminate: make(chan struct{}),
signalShutdown: make(chan struct{}),
doneShutdown: make(chan struct{}),
}
go q.Run(func(atShutdown func()) {
go func() {
lock.Lock()
select {
case <-returnable.readyForShutdown:
default:
close(returnable.readyForShutdown)
}
lock.Unlock()
<-returnable.signalShutdown
atShutdown()
close(returnable.doneShutdown)
}()
}, func(atTerminate func()) {
lock.Lock()
defer lock.Unlock()
select {
case <-returnable.readyForTerminate:
default:
close(returnable.readyForTerminate)
}
returnable.queueTerminate = append(returnable.queueTerminate, atTerminate)
})
return returnable
}
// call to shutdown and terminate the queue associated with the channels
shutdownAndTerminate := func(chans *channels, lock *sync.Mutex) {
close(chans.signalShutdown)
<-chans.doneShutdown
<-chans.readyForTerminate
lock.Lock()
callbacks := []func(){}
callbacks = append(callbacks, chans.queueTerminate...)
lock.Unlock()
for _, callback := range callbacks {
callback()
}
}
executedTasks1 := []string{}
hasTasks1 := []string{}
t.Run("Initial Filling", func(t *testing.T) {
lock := sync.Mutex{}
startAt100Queued := make(chan struct{})
stopAt20Shutdown := make(chan struct{}) // stop and shutdown at the 20th item
handle := func(data ...Data) []Data {
<-startAt100Queued
for _, datum := range data {
s := datum.(string)
lock.Lock()
executedTasks1 = append(executedTasks1, s)
lock.Unlock()
if s == "task-20" {
close(stopAt20Shutdown)
}
}
return nil
}
q := newQueue(handle)
// add 100 tasks to the queue
for i := 0; i < 100; i++ {
_ = q.Push("task-" + strconv.Itoa(i))
}
close(startAt100Queued)
chans := runQueue(q, &lock)
<-chans.readyForShutdown
<-stopAt20Shutdown
shutdownAndTerminate(chans, &lock)
// check which tasks are still in the queue
for i := 0; i < 100; i++ {
if has, _ := q.(UniqueQueue).Has("task-" + strconv.Itoa(i)); has {
hasTasks1 = append(hasTasks1, "task-"+strconv.Itoa(i))
}
}
assert.Equal(t, 100, len(executedTasks1)+len(hasTasks1))
})
executedTasks2 := []string{}
hasTasks2 := []string{}
t.Run("Ensure that things will empty on restart", func(t *testing.T) {
lock := sync.Mutex{}
stop := make(chan struct{})
// collect the tasks that have been executed
handle := func(data ...Data) []Data {
lock.Lock()
for _, datum := range data {
t.Logf("executed %s", datum.(string))
executedTasks2 = append(executedTasks2, datum.(string))
if datum.(string) == "task-99" {
close(stop)
}
}
lock.Unlock()
return nil
}
q := newQueue(handle)
chans := runQueue(q, &lock)
<-chans.readyForShutdown
<-stop
shutdownAndTerminate(chans, &lock)
// check which tasks are still in the queue
for i := 0; i < 100; i++ {
if has, _ := q.(UniqueQueue).Has("task-" + strconv.Itoa(i)); has {
hasTasks2 = append(hasTasks2, "task-"+strconv.Itoa(i))
}
}
assert.Equal(t, 100, len(executedTasks1)+len(executedTasks2))
assert.Equal(t, 0, len(hasTasks2))
})
executedTasks3 := []string{}
hasTasks3 := []string{}
t.Run("refill", func(t *testing.T) {
lock := sync.Mutex{}
stop := make(chan struct{})
handle := func(data ...Data) []Data {
lock.Lock()
for _, datum := range data {
executedTasks3 = append(executedTasks3, datum.(string))
}
lock.Unlock()
return nil
}
q := newQueue(handle)
chans := runQueue(q, &lock)
// re-run all tasks
for i := 0; i < 100; i++ {
_ = q.Push("task-" + strconv.Itoa(i))
}
// wait for a while
time.Sleep(1 * time.Second)
close(stop)
<-chans.readyForShutdown
shutdownAndTerminate(chans, &lock)
// check whether the tasks are still in the queue
for i := 0; i < 100; i++ {
if has, _ := q.(UniqueQueue).Has("task-" + strconv.Itoa(i)); has {
hasTasks3 = append(hasTasks3, "task-"+strconv.Itoa(i))
}
}
assert.Equal(t, 100, len(executedTasks3)+len(hasTasks3))
})
t.Logf("TestPersistableChannelUniqueQueue completed1=%v, executed2=%v, has2=%v, executed3=%v, has3=%v",
len(executedTasks1), len(executedTasks2), len(hasTasks2), len(executedTasks3), len(hasTasks3))
}