-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathdb_shutdown_test.go
More file actions
398 lines (344 loc) · 11.5 KB
/
db_shutdown_test.go
File metadata and controls
398 lines (344 loc) · 11.5 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package litestream_test
import (
"context"
"errors"
"io"
"strings"
"sync/atomic"
"testing"
"time"
"github.com/superfly/ltx"
"github.com/benbjohnson/litestream"
"github.com/benbjohnson/litestream/internal/testingutil"
"github.com/benbjohnson/litestream/mock"
)
func TestDB_Close_SyncRetry(t *testing.T) {
t.Run("SucceedsAfterTransientFailure", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data to create LTX files
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that fails first 2 times, succeeds on 3rd
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, r io.Reader) (*ltx.FileInfo, error) {
n := atomic.AddInt32(&attempts, 1)
if n < 3 {
return nil, errors.New("rate limited (429)")
}
// Drain the reader
_, _ = io.Copy(io.Discard, r)
return <x.FileInfo{}, nil
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 5 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Close should succeed after retries
if err := db.Close(context.Background()); err != nil {
t.Fatalf("expected success after retries, got: %v", err)
}
if got := atomic.LoadInt32(&attempts); got < 3 {
t.Fatalf("expected at least 3 attempts, got %d", got)
}
})
t.Run("FailsAfterTimeout", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that always fails
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, _ io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
return nil, errors.New("persistent error")
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 300 * time.Millisecond
db.ShutdownSyncInterval = 50 * time.Millisecond
// Close should fail with timeout error
err := db.Close(context.Background())
if err == nil {
t.Fatal("expected error after timeout")
}
if !strings.Contains(err.Error(), "timeout") {
t.Fatalf("expected timeout error, got: %v", err)
}
// Should have made multiple attempts
if got := atomic.LoadInt32(&attempts); got < 2 {
t.Fatalf("expected multiple retry attempts, got %d", got)
}
})
t.Run("RespectsContextCancellation", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that always fails
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, _ io.Reader) (*ltx.FileInfo, error) {
return nil, errors.New("error")
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 10 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Cancel context after short delay
ctx, cancel := context.WithTimeout(context.Background(), 150*time.Millisecond)
defer cancel()
start := time.Now()
_ = db.Close(ctx)
elapsed := time.Since(start)
// Should exit within reasonable time of context cancellation
if elapsed > 500*time.Millisecond {
t.Fatalf("took too long to respect cancellation: %v", elapsed)
}
})
t.Run("ZeroTimeoutNoRetry", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that always fails
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, _ io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
return nil, errors.New("error")
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 0 // Disable retries
db.ShutdownSyncInterval = 50 * time.Millisecond
// Close should fail after single attempt
start := time.Now()
err := db.Close(context.Background())
elapsed := time.Since(start)
if err == nil {
t.Fatal("expected error")
}
// Should have only made 1 attempt
if got := atomic.LoadInt32(&attempts); got != 1 {
t.Fatalf("expected exactly 1 attempt with zero timeout, got %d", got)
}
// Should be fast (no retry delay)
if elapsed > 100*time.Millisecond {
t.Fatalf("took too long for single attempt: %v", elapsed)
}
})
t.Run("SuccessFirstAttempt", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that succeeds immediately
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, r io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
// Drain the reader
_, _ = io.Copy(io.Discard, r)
return <x.FileInfo{}, nil
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 5 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Close should succeed immediately
if err := db.Close(context.Background()); err != nil {
t.Fatalf("expected success, got: %v", err)
}
// Should have made exactly 1 attempt
if got := atomic.LoadInt32(&attempts); got != 1 {
t.Fatalf("expected exactly 1 attempt, got %d", got)
}
})
t.Run("DoneChannelInterruptsRetryLoop", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that always fails
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, _ io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
return nil, errors.New("persistent error")
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 10 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Create done channel and close it after short delay
done := make(chan struct{})
db.Done = done
go func() {
time.Sleep(200 * time.Millisecond)
close(done)
}()
start := time.Now()
err := db.Close(context.Background())
elapsed := time.Since(start)
// Should exit quickly (well before 10 second timeout)
if elapsed > 2*time.Second {
t.Fatalf("took too long to respond to done signal: %v", elapsed)
}
// Should have error mentioning interrupt
if err == nil {
t.Fatal("expected error after done signal")
}
if !errors.Is(err, litestream.ErrShutdownInterrupted) {
t.Fatalf("expected ErrShutdownInterrupted, got: %v", err)
}
// Should have made at least 1 attempt before being interrupted
if got := atomic.LoadInt32(&attempts); got < 1 {
t.Fatalf("expected at least 1 attempt, got %d", got)
}
})
t.Run("AlreadyClosedDoneSkipsSync", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that always fails
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, _ io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
return nil, errors.New("persistent error")
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 10 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Close done before calling Close
done := make(chan struct{})
close(done)
db.Done = done
start := time.Now()
err := db.Close(context.Background())
elapsed := time.Since(start)
// Should exit immediately
if elapsed > 500*time.Millisecond {
t.Fatalf("took too long with pre-closed done channel: %v", elapsed)
}
// Should have error mentioning interrupt
if err == nil {
t.Fatal("expected error with pre-closed done channel")
}
if !errors.Is(err, litestream.ErrShutdownInterrupted) {
t.Fatalf("expected ErrShutdownInterrupted, got: %v", err)
}
// Should not have made any sync attempts
if got := atomic.LoadInt32(&attempts); got != 0 {
t.Fatalf("expected 0 sync attempts with pre-closed done, got %d", got)
}
})
t.Run("NilDoneBehavesLikeClose", func(t *testing.T) {
db, sqldb := testingutil.MustOpenDBs(t)
// Write some data
if _, err := sqldb.Exec(`CREATE TABLE t (x)`); err != nil {
t.Fatal(err)
}
if err := db.Sync(context.Background()); err != nil {
t.Fatal(err)
}
if err := sqldb.Close(); err != nil {
t.Fatal(err)
}
// Create mock client that succeeds immediately
var attempts int32
client := &mock.ReplicaClient{
LTXFilesFunc: func(_ context.Context, _ int, _ ltx.TXID, _ bool) (ltx.FileIterator, error) {
return ltx.NewFileInfoSliceIterator(nil), nil
},
WriteLTXFileFunc: func(_ context.Context, _ int, _, _ ltx.TXID, r io.Reader) (*ltx.FileInfo, error) {
atomic.AddInt32(&attempts, 1)
_, _ = io.Copy(io.Discard, r)
return <x.FileInfo{}, nil
},
}
db.Replica = litestream.NewReplicaWithClient(db, client)
db.ShutdownSyncTimeout = 5 * time.Second
db.ShutdownSyncInterval = 50 * time.Millisecond
// Done is nil by default, Close should work normally
if err := db.Close(context.Background()); err != nil {
t.Fatalf("expected success, got: %v", err)
}
if got := atomic.LoadInt32(&attempts); got != 1 {
t.Fatalf("expected exactly 1 attempt, got %d", got)
}
})
}