-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathedge_cases_test.go
More file actions
444 lines (364 loc) · 10.8 KB
/
edge_cases_test.go
File metadata and controls
444 lines (364 loc) · 10.8 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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
package extsort_test
import (
"cmp"
"context"
"fmt"
"testing"
"time"
"github.com/lanrat/extsort"
)
// TestEmptyInput tests sorting an empty input channel
func TestEmptyInput(t *testing.T) {
inputChan := make(chan extsort.SortType)
close(inputChan) // Close immediately - empty input
// Create cancelable context for proper cleanup
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
sort.Sort(ctx)
// Should get no output
var count int
for {
select {
case _, ok := <-outChan:
if !ok {
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with empty input: %v", err)
}
goto done2
}
count++
case err := <-errChan:
if err != nil {
t.Fatalf("unexpected error with empty input: %v", err)
}
for range outChan {
count++
}
goto done2
}
}
done2:
if count != 0 {
t.Fatalf("expected 0 results, got %d", count)
}
}
// TestSingleElement tests sorting a single element
func TestSingleElement(t *testing.T) {
inputChan := make(chan extsort.SortType, 1)
inputChan <- val{Key: 42, Order: 1}
close(inputChan)
// Create cancelable context for proper cleanup
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
sort.Sort(ctx)
var results []val
for {
select {
case rec, ok := <-outChan:
if !ok {
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with single element: %v", err)
}
goto done3
}
results = append(results, rec.(val))
case err := <-errChan:
if err != nil {
t.Fatalf("unexpected error with single element: %v", err)
}
for rec := range outChan {
results = append(results, rec.(val))
}
goto done3
}
}
done3:
if len(results) != 1 {
t.Fatalf("expected 1 result, got %d", len(results))
}
if results[0].Key != 42 || results[0].Order != 1 {
t.Fatalf("single element corrupted: got %+v", results[0])
}
}
// TestAllIdenticalElements tests sorting when all elements are identical
func TestAllIdenticalElements(t *testing.T) {
inputChan := make(chan extsort.SortType, 100)
// Add 50 identical elements
for i := 0; i < 50; i++ {
inputChan <- val{Key: 7, Order: i} // Same key, different order
}
close(inputChan)
// Create cancelable context for proper cleanup
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
sort.Sort(ctx)
var results []val
for {
select {
case rec, ok := <-outChan:
if !ok {
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with identical elements: %v", err)
}
goto done1
}
results = append(results, rec.(val))
case err := <-errChan:
if err != nil {
t.Fatalf("unexpected error with identical elements: %v", err)
}
for rec := range outChan {
results = append(results, rec.(val))
}
goto done1
}
}
done1:
if len(results) != 50 {
t.Fatalf("expected 50 results, got %d", len(results))
}
// All should have same key
for i, result := range results {
if result.Key != 7 {
t.Fatalf("element %d has wrong key: got %d, expected 7", i, result.Key)
}
}
}
// TestInvalidConfiguration tests error handling with invalid configs
func TestInvalidConfiguration(t *testing.T) {
inputChan := make(chan extsort.SortType, 1)
inputChan <- val{Key: 1, Order: 1}
close(inputChan)
// Test with invalid config values
config := extsort.DefaultConfig()
config.ChunkSize = 0 // Invalid
config.NumWorkers = 0 // Invalid
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, config)
sort.Sort(context.Background())
// Should still work because mergeConfig fixes invalid values
var count int
for range outChan {
count++
}
if err := <-errChan; err != nil {
t.Fatalf("unexpected error - mergeConfig should fix invalid values: %v", err)
}
if count != 1 {
t.Fatalf("expected 1 result, got %d", count)
}
}
// TestContextCancellationDuringBuild tests context cancellation during chunk building
func TestContextCancellationDuringBuild(t *testing.T) {
inputChan := make(chan extsort.SortType)
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
ctx, cancel := context.WithCancel(context.Background())
// Start sorting in background
go sort.Sort(ctx)
// Add one element then cancel before adding more
inputChan <- val{Key: 1, Order: 1}
cancel() // Cancel during build phase
close(inputChan)
// Drain channels
for range outChan {
// Consume any output
}
// Should get a context cancellation error
if err := <-errChan; err == nil {
t.Fatal("expected context cancellation error, got nil")
} else if err != context.Canceled {
t.Fatalf("expected context.Canceled, got %v", err)
}
}
// TestConcurrentSorters tests multiple sorters running simultaneously
func TestConcurrentSorters(t *testing.T) {
const numSorters = 3
const elementsPerSorter = 100
// Create channels for synchronization
results := make(chan []val, numSorters)
errors := make(chan error, numSorters)
// Start multiple sorters concurrently
for i := 0; i < numSorters; i++ {
go func(sorterId int) {
inputChan := make(chan extsort.SortType, elementsPerSorter)
// Add unique data for each sorter
for j := 0; j < elementsPerSorter; j++ {
inputChan <- val{Key: (sorterId*1000 + j) % 50, Order: j}
}
close(inputChan)
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
sort.Sort(context.Background())
var sortResults []val
for rec := range outChan {
sortResults = append(sortResults, rec.(val))
}
if err := <-errChan; err != nil {
errors <- err
return
}
results <- sortResults
}(i)
}
// Collect results
for i := 0; i < numSorters; i++ {
select {
case err := <-errors:
t.Fatalf("sorter %d failed: %v", i, err)
case result := <-results:
if len(result) != elementsPerSorter {
t.Fatalf("sorter %d returned %d elements, expected %d", i, len(result), elementsPerSorter)
}
// Verify sorted
for j := 1; j < len(result); j++ {
if result[j-1].Key > result[j].Key {
t.Fatalf("sorter %d result not sorted at position %d", i, j)
}
}
}
}
}
// TestNilConfiguration tests behavior with nil config
func TestNilConfiguration(t *testing.T) {
inputChan := make(chan extsort.SortType, 5)
for i := 0; i < 5; i++ {
inputChan <- val{Key: 5 - i, Order: i}
}
close(inputChan)
// Pass nil config - should use defaults
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, nil)
sort.Sort(context.Background())
var results []val
for rec := range outChan {
results = append(results, rec.(val))
}
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with nil config: %v", err)
}
if len(results) != 5 {
t.Fatalf("expected 5 results, got %d", len(results))
}
// Verify sorted
if !IsSorted(results, KeyLessThan) {
t.Fatal("results not sorted with nil config")
}
}
// TestVerySmallChunkSize tests with chunk size of 1
func TestVerySmallChunkSize(t *testing.T) {
inputChan := make(chan extsort.SortType, 10)
for i := 0; i < 10; i++ {
inputChan <- val{Key: 10 - i, Order: i}
}
close(inputChan)
config := extsort.DefaultConfig()
config.ChunkSize = 1 // Very small chunks
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, config)
sort.Sort(context.Background())
var results []val
for rec := range outChan {
results = append(results, rec.(val))
}
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with chunk size 1: %v", err)
}
if len(results) != 10 {
t.Fatalf("expected 10 results, got %d", len(results))
}
// Verify sorted
if !IsSorted(results, KeyLessThan) {
t.Fatal("results not sorted with chunk size 1")
}
}
// TestContextTimeout tests behavior with context timeout
func TestContextTimeout(t *testing.T) {
inputChan := make(chan extsort.SortType, 10)
// Use a very slow comparison function
lessFunc := func(a, b extsort.SortType) bool {
time.Sleep(100 * time.Millisecond) // Slow comparison
return a.(val).Key < b.(val).Key
}
for i := 0; i < 10; i++ {
inputChan <- val{Key: 10 - i, Order: i}
}
close(inputChan)
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, lessFunc, nil)
// Use a very short timeout that should expire during sorting
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
defer cancel()
sort.Sort(ctx)
// Drain output
for range outChan {
// Consume any output
}
// Should get a timeout error
if err := <-errChan; err == nil {
t.Fatal("expected timeout error, got nil")
} else if err != context.DeadlineExceeded {
t.Fatalf("expected context.DeadlineExceeded, got %v", err)
}
}
// TestExtremeParallelism tests with high worker counts
func TestExtremeParallelism(t *testing.T) {
inputChan := make(chan extsort.SortType, 100)
for i := 0; i < 100; i++ {
inputChan <- val{Key: 100 - i, Order: i}
}
close(inputChan)
config := extsort.DefaultConfig()
config.NumWorkers = 10 // High worker count
config.ChunkSize = 5 // Small chunks to force parallelism
sort, outChan, errChan := extsort.New(inputChan, fromBytesForTest, KeyLessThan, config)
sort.Sort(context.Background())
var results []val
for rec := range outChan {
results = append(results, rec.(val))
}
if err := <-errChan; err != nil {
t.Fatalf("unexpected error with extreme parallelism: %v", err)
}
if len(results) != 100 {
t.Fatalf("expected 100 results, got %d", len(results))
}
// Verify sorted
if !IsSorted(results, KeyLessThan) {
t.Fatal("results not sorted with extreme parallelism")
}
}
// TestSingleChunkDoesNotSerialize tests single-chunk optimization ensuring that single chunks do not get serialized.
func TestSingleChunkDoesNotSerialize(t *testing.T) {
dataLen := 10
// create input
inputChan := make(chan int, dataLen)
for i := 0; i < dataLen; i++ {
inputChan <- i
}
close(inputChan)
config := extsort.DefaultConfig()
config.ChunkSize = dataLen + 2 // force larger than number of items
fromBytes := func(data []byte) (int, error) {
return 0, fmt.Errorf("fromBytes should not be called for single chunk")
}
toBytes := func(item int) ([]byte, error) {
return nil, fmt.Errorf("toBytes should not be called for single chunk")
}
sort, outChan, errChan := extsort.Generic(inputChan, fromBytes, toBytes, cmp.Compare[int], config)
sort.Sort(context.Background())
var results []int
for rec := range outChan {
results = append(results, rec)
}
if len(results) != dataLen {
t.Fatalf("expected %d results, got %d", dataLen, len(results))
}
prior := results[0]
for _, rec := range results {
if prior > rec {
t.Fatalf("Unordered response: %d should be less than %d", prior, rec)
}
prior = rec
}
if err := <-errChan; err != nil {
t.Fatalf("Test failed: %s", err.Error())
}
}