-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmain_test.go
More file actions
1105 lines (956 loc) · 32.2 KB
/
Copy pathmain_test.go
File metadata and controls
1105 lines (956 loc) · 32.2 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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"context"
"encoding/json"
"errors"
"lyrics-api-go/cache"
"net/http"
"net/http/httptest"
"path/filepath"
"strings"
"testing"
"time"
)
// setupTestEnvironment creates a temporary cache for testing
func setupTestEnvironment(t *testing.T) func() {
t.Helper()
tmpDir := t.TempDir()
dbPath := filepath.Join(tmpDir, "test_cache.db")
backupPath := filepath.Join(tmpDir, "backups")
var err error
persistentCache, err = cache.NewPersistentCache(dbPath, backupPath, false)
if err != nil {
t.Fatalf("Failed to create test cache: %v", err)
}
return func() {
persistentCache.Close()
}
}
func TestShouldNegativeCache(t *testing.T) {
tests := []struct {
name string
err error
expected bool
}{
{
name: "nil error",
err: nil,
expected: false,
},
{
name: "no track found error",
err: errors.New("no track found for query: Shape of You"),
expected: true,
},
{
name: "no tracks found within duration",
err: errors.New("no tracks found within 2000ms of requested duration 234000ms"),
expected: true,
},
{
name: "TTML content is empty",
err: errors.New("TTML content is empty"),
expected: true,
},
{
name: "search failed with no track found",
err: errors.New("search failed: no track found for query: Test"),
expected: true,
},
{
name: "network error - should not cache",
err: errors.New("search failed: connection refused"),
expected: false,
},
{
name: "rate limit error - should not cache",
err: errors.New("search failed: 429 Too Many Requests"),
expected: false,
},
{
name: "generic API error - should not cache",
err: errors.New("failed to fetch TTML: server error"),
expected: false,
},
{
name: "timeout error - should not cache",
err: errors.New("context deadline exceeded"),
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := shouldNegativeCache(tt.err)
if result != tt.expected {
t.Errorf("shouldNegativeCache(%v) = %v, want %v", tt.err, result, tt.expected)
}
})
}
}
func TestSetAndGetNegativeCache(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Test Song Test Artist"
reason := "no track found for query: Test Song Test Artist"
// Initially not in negative cache
_, found := getNegativeCache(cacheKey)
if found {
t.Error("Expected key to not be in negative cache initially")
}
// Set negative cache
setNegativeCache(cacheKey, reason, "", false)
// Should now be found
retrievedReason, found := getNegativeCache(cacheKey)
if !found {
t.Error("Expected key to be in negative cache after setting")
}
if retrievedReason != reason {
t.Errorf("Expected reason %q, got %q", reason, retrievedReason)
}
}
func TestNegativeCacheExpiration(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Expired Song Artist"
reason := "no track found"
// Manually create an expired entry
negativeKey := "no_lyrics:" + cacheKey
entry := NegativeCacheEntry{
Reason: reason,
Timestamp: time.Now().Add(-8 * 24 * time.Hour).Unix(), // 8 days ago (expired with 7 day TTL)
}
data, _ := json.Marshal(entry)
persistentCache.Set(negativeKey, string(data))
// Should not be found (expired)
_, found := getNegativeCache(cacheKey)
if found {
t.Error("Expected expired entry to not be found")
}
// Entry should be deleted after expiration check
_, exists := persistentCache.Get(negativeKey)
if exists {
t.Error("Expected expired entry to be deleted from cache")
}
}
func TestNegativeCacheNotExpired(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Recent Song Artist"
reason := "no track found"
// Manually create a recent entry (1 day ago)
negativeKey := "no_lyrics:" + cacheKey
entry := NegativeCacheEntry{
Reason: reason,
Timestamp: time.Now().Add(-1 * 24 * time.Hour).Unix(), // 1 day ago
}
data, _ := json.Marshal(entry)
persistentCache.Set(negativeKey, string(data))
// Should be found (not expired)
retrievedReason, found := getNegativeCache(cacheKey)
if !found {
t.Error("Expected non-expired entry to be found")
}
if retrievedReason != reason {
t.Errorf("Expected reason %q, got %q", reason, retrievedReason)
}
}
func TestNegativeCacheInvalidJSON(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Invalid JSON Song"
negativeKey := "no_lyrics:" + cacheKey
// Store invalid JSON
persistentCache.Set(negativeKey, "not valid json")
// Should not be found (invalid JSON)
_, found := getNegativeCache(cacheKey)
if found {
t.Error("Expected invalid JSON entry to not be found")
}
}
func TestNegativeCacheKeyFormat(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Test that negative cache uses correct key prefix
cacheKey := "ttml_lyrics:Song Artist Album 234s"
reason := "Lyrics not available for this track"
setNegativeCache(cacheKey, reason, "", false)
// Verify it's stored with the correct prefix
expectedNegativeKey := "no_lyrics:" + cacheKey
stored, found := persistentCache.Get(expectedNegativeKey)
if !found {
t.Errorf("Expected negative cache entry at key %q", expectedNegativeKey)
}
// Verify the stored entry is valid JSON
var entry NegativeCacheEntry
if err := json.Unmarshal([]byte(stored), &entry); err != nil {
t.Errorf("Expected valid JSON in negative cache, got error: %v", err)
}
if entry.Reason != reason {
t.Errorf("Expected reason %q, got %q", reason, entry.Reason)
}
if entry.Timestamp == 0 {
t.Error("Expected non-zero timestamp")
}
}
func TestBuildFallbackCacheKeys(t *testing.T) {
tests := []struct {
name string
songName string
artistName string
albumName string
durationStr string
originalKey string
expected []string
}{
{
name: "With album and duration",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "Divide",
durationStr: "234",
originalKey: "ttml_lyrics:shape of you ed sheeran divide 234s",
expected: []string{"ttml_lyrics:shape of you ed sheeran 234s"},
},
{
name: "With album, no duration",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "Divide",
durationStr: "",
originalKey: "ttml_lyrics:shape of you ed sheeran divide",
expected: []string{"ttml_lyrics:shape of you ed sheeran"},
},
{
name: "No album - no fallback",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "234",
originalKey: "ttml_lyrics:shape of you ed sheeran 234s",
expected: []string{},
},
{
name: "No album, no duration - no fallback",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "",
originalKey: "ttml_lyrics:shape of you ed sheeran",
expected: []string{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := buildFallbackCacheKeys(tt.songName, tt.artistName, tt.albumName, tt.durationStr, tt.originalKey)
if len(result) != len(tt.expected) {
t.Errorf("Expected %d fallback keys, got %d", len(tt.expected), len(result))
return
}
for i, key := range result {
if key != tt.expected[i] {
t.Errorf("Expected fallback key %q, got %q", tt.expected[i], key)
}
}
})
}
}
func TestCachedLyricsJSONFormat(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Test Song Artist"
ttml := "<tt>test ttml content</tt>"
trackDurationMs := 234000
score := 0.95
language := "en"
isRTL := false
// Set cached lyrics
setCachedLyrics(cacheKey, ttml, trackDurationMs, score, language, isRTL)
// Get and verify
cached, found := getCachedLyrics(cacheKey)
if !found {
t.Error("Expected to find cached lyrics")
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
if cached.TrackDurationMs != trackDurationMs {
t.Errorf("Expected duration %d, got %d", trackDurationMs, cached.TrackDurationMs)
}
if cached.Score != score {
t.Errorf("Expected score %f, got %f", score, cached.Score)
}
if cached.Language != language {
t.Errorf("Expected language %q, got %q", language, cached.Language)
}
if cached.IsRTL != isRTL {
t.Errorf("Expected isRTL %v, got %v", isRTL, cached.IsRTL)
}
}
func TestCachedLyricsBackwardsCompatibility(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
cacheKey := "ttml_lyrics:Old Format Song"
oldFormatTTML := "<tt>old format ttml</tt>"
// Store in old format (plain string, not JSON)
persistentCache.Set(cacheKey, oldFormatTTML)
// Should still be retrievable
cached, found := getCachedLyrics(cacheKey)
if !found {
t.Error("Expected to find old format cached lyrics")
}
if cached.TTML != oldFormatTTML {
t.Errorf("Expected TTML %q, got %q", oldFormatTTML, cached.TTML)
}
if cached.TrackDurationMs != 0 {
t.Errorf("Expected duration 0 for old format, got %d", cached.TrackDurationMs)
}
}
func TestBuildNormalizedCacheKey(t *testing.T) {
tests := []struct {
name string
songName string
artistName string
albumName string
durationStr string
expected string
}{
{
name: "Basic case - lowercase and trimmed",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "",
expected: "ttml_lyrics:shape of you ed sheeran",
},
{
name: "With album",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "Divide",
durationStr: "",
expected: "ttml_lyrics:shape of you ed sheeran divide",
},
{
name: "With duration",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "234",
expected: "ttml_lyrics:shape of you ed sheeran 234s",
},
{
name: "With album and duration",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "Divide",
durationStr: "234",
expected: "ttml_lyrics:shape of you ed sheeran divide 234s",
},
{
name: "Whitespace trimming",
songName: " Shape of You ",
artistName: " Ed Sheeran ",
albumName: "",
durationStr: "",
expected: "ttml_lyrics:shape of you ed sheeran",
},
{
name: "Mixed case",
songName: "SHAPE OF YOU",
artistName: "ED SHEERAN",
albumName: "",
durationStr: "",
expected: "ttml_lyrics:shape of you ed sheeran",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := buildNormalizedCacheKey(tt.songName, tt.artistName, tt.albumName, tt.durationStr)
if result != tt.expected {
t.Errorf("Expected %q, got %q", tt.expected, result)
}
})
}
}
func TestBuildLegacyCacheKey(t *testing.T) {
tests := []struct {
name string
songName string
artistName string
albumName string
durationStr string
expected string
}{
{
name: "Without album - has trailing space",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "",
expected: "ttml_lyrics:Shape of You Ed Sheeran ",
},
{
name: "With album",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "Divide",
durationStr: "",
expected: "ttml_lyrics:Shape of You Ed Sheeran Divide",
},
{
name: "Without album, with duration - double space",
songName: "Shape of You",
artistName: "Ed Sheeran",
albumName: "",
durationStr: "234",
expected: "ttml_lyrics:Shape of You Ed Sheeran 234s",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := buildLegacyCacheKey(tt.songName, tt.artistName, tt.albumName, tt.durationStr)
if result != tt.expected {
t.Errorf("Expected %q, got %q", tt.expected, result)
}
})
}
}
// Tests for fuzzy duration cache matching
func TestGetCachedLyricsWithDurationTolerance_ExactMatch(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache a song with duration 232s
cacheKey := buildNormalizedCacheKey("Shape of You", "Ed Sheeran", "", "232")
ttml := "<tt>test ttml content</tt>"
setCachedLyrics(cacheKey, ttml, 232000, 0.95, "en", false)
// Request with exact duration should find it
cached, foundKey, found := getCachedLyricsWithDurationTolerance("Shape of You", "Ed Sheeran", "", "232")
if !found {
t.Error("Expected to find cached lyrics with exact duration match")
}
if foundKey != cacheKey {
t.Errorf("Expected key %q, got %q", cacheKey, foundKey)
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
}
func TestGetCachedLyricsWithDurationTolerance_FuzzyMatch(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache a song with duration 232s
cacheKey := buildNormalizedCacheKey("Shape of You", "Ed Sheeran", "", "232")
ttml := "<tt>test ttml content</tt>"
setCachedLyrics(cacheKey, ttml, 232000, 0.95, "en", false)
tests := []struct {
name string
requestDuration string
shouldFind bool
}{
{
name: "Request 231s (1s less) - within 2s tolerance",
requestDuration: "231",
shouldFind: true,
},
{
name: "Request 233s (1s more) - within 2s tolerance",
requestDuration: "233",
shouldFind: true,
},
{
name: "Request 230s (2s less) - at edge of 2s tolerance",
requestDuration: "230",
shouldFind: true,
},
{
name: "Request 234s (2s more) - at edge of 2s tolerance",
requestDuration: "234",
shouldFind: true,
},
{
name: "Request 229s (3s less) - outside 2s tolerance",
requestDuration: "229",
shouldFind: false,
},
{
name: "Request 235s (3s more) - outside 2s tolerance",
requestDuration: "235",
shouldFind: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cached, foundKey, found := getCachedLyricsWithDurationTolerance("Shape of You", "Ed Sheeran", "", tt.requestDuration)
if found != tt.shouldFind {
t.Errorf("Expected found=%v, got found=%v", tt.shouldFind, found)
return
}
if tt.shouldFind {
if cached == nil {
t.Error("Expected non-nil cached lyrics")
return
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
if foundKey != cacheKey {
t.Errorf("Expected foundKey %q, got %q", cacheKey, foundKey)
}
}
})
}
}
func TestGetCachedLyricsWithDurationTolerance_ClosestMatch(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache songs with durations 230s and 234s
cacheKey230 := buildNormalizedCacheKey("Test Song", "Test Artist", "", "230")
cacheKey234 := buildNormalizedCacheKey("Test Song", "Test Artist", "", "234")
setCachedLyrics(cacheKey230, "<tt>230s version</tt>", 230000, 0.95, "en", false)
setCachedLyrics(cacheKey234, "<tt>234s version</tt>", 234000, 0.95, "en", false)
// Request 232s - should find 230s (both are 2s away, but we check lower first)
// Actually with our implementation, we check in order: 231, 233, 230, 234
// So for 232, we'd check 231 (miss), 233 (miss), 230 (hit!)
cached, foundKey, found := getCachedLyricsWithDurationTolerance("Test Song", "Test Artist", "", "232")
if !found {
t.Error("Expected to find cached lyrics")
return
}
// Should find 230s since it's checked first at offset 2
if foundKey != cacheKey230 {
t.Errorf("Expected to find %q, got %q", cacheKey230, foundKey)
}
if cached.TTML != "<tt>230s version</tt>" {
t.Errorf("Expected 230s version, got %q", cached.TTML)
}
}
func TestGetCachedLyricsWithDurationTolerance_NoDuration(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache a song without duration
cacheKey := buildNormalizedCacheKey("Shape of You", "Ed Sheeran", "", "")
ttml := "<tt>test ttml content</tt>"
setCachedLyrics(cacheKey, ttml, 0, 0.95, "en", false)
// Request without duration should find it
cached, foundKey, found := getCachedLyricsWithDurationTolerance("Shape of You", "Ed Sheeran", "", "")
if !found {
t.Error("Expected to find cached lyrics without duration")
}
if foundKey != cacheKey {
t.Errorf("Expected key %q, got %q", cacheKey, foundKey)
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
}
func TestGetCachedLyricsWithDurationTolerance_LegacyKeyFallback(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Store with legacy key format (uppercase, trailing space)
legacyKey := buildLegacyCacheKey("Shape of You", "Ed Sheeran", "", "232")
ttml := "<tt>legacy format</tt>"
// Manually store with legacy key
cachedLyrics := CachedLyrics{
TTML: ttml,
TrackDurationMs: 232000,
Score: 0.95,
}
data, _ := json.Marshal(cachedLyrics)
persistentCache.Set(legacyKey, string(data))
// Request with normalized format should find the legacy entry
cached, foundKey, found := getCachedLyricsWithDurationTolerance("Shape of You", "Ed Sheeran", "", "232")
if !found {
t.Error("Expected to find cached lyrics via legacy key fallback")
}
if foundKey != legacyKey {
t.Errorf("Expected legacy key %q, got %q", legacyKey, foundKey)
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
}
func TestGetNegativeCacheWithDurationTolerance_ExactMatch(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Set negative cache for duration 232s
cacheKey := buildNormalizedCacheKey("Unknown Song", "Unknown Artist", "", "232")
reason := "no track found"
setNegativeCache(cacheKey, reason, "", false)
// Request with exact duration should find it
foundReason, foundKey, found := getNegativeCacheWithDurationTolerance("Unknown Song", "Unknown Artist", "", "232")
if !found {
t.Error("Expected to find negative cache with exact duration match")
}
if foundKey != cacheKey {
t.Errorf("Expected key %q, got %q", cacheKey, foundKey)
}
if foundReason != reason {
t.Errorf("Expected reason %q, got %q", reason, foundReason)
}
}
func TestGetNegativeCacheWithDurationTolerance_FuzzyMatch(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Set negative cache for duration 232s
cacheKey := buildNormalizedCacheKey("Unknown Song", "Unknown Artist", "", "232")
reason := "no track found"
setNegativeCache(cacheKey, reason, "", false)
tests := []struct {
name string
requestDuration string
shouldFind bool
}{
{
name: "Request 231s (1s less) - within 2s tolerance",
requestDuration: "231",
shouldFind: true,
},
{
name: "Request 233s (1s more) - within 2s tolerance",
requestDuration: "233",
shouldFind: true,
},
{
name: "Request 229s (3s less) - outside 2s tolerance",
requestDuration: "229",
shouldFind: false,
},
{
name: "Request 235s (3s more) - outside 2s tolerance",
requestDuration: "235",
shouldFind: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
foundReason, foundKey, found := getNegativeCacheWithDurationTolerance("Unknown Song", "Unknown Artist", "", tt.requestDuration)
if found != tt.shouldFind {
t.Errorf("Expected found=%v, got found=%v", tt.shouldFind, found)
return
}
if tt.shouldFind {
if foundReason != reason {
t.Errorf("Expected reason %q, got %q", reason, foundReason)
}
if foundKey != cacheKey {
t.Errorf("Expected foundKey %q, got %q", cacheKey, foundKey)
}
}
})
}
}
func TestGetNegativeCacheWithDurationTolerance_NoDuration(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Set negative cache without duration
cacheKey := buildNormalizedCacheKey("Unknown Song", "Unknown Artist", "", "")
reason := "no track found"
setNegativeCache(cacheKey, reason, "", false)
// Request without duration should find it
foundReason, foundKey, found := getNegativeCacheWithDurationTolerance("Unknown Song", "Unknown Artist", "", "")
if !found {
t.Error("Expected to find negative cache without duration")
}
if foundKey != cacheKey {
t.Errorf("Expected key %q, got %q", cacheKey, foundKey)
}
if foundReason != reason {
t.Errorf("Expected reason %q, got %q", reason, foundReason)
}
}
func TestGetCachedLyricsWithDurationTolerance_ZeroDuration(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache a song with duration 2s (edge case near zero)
cacheKey := buildNormalizedCacheKey("Short Song", "Artist", "", "2")
ttml := "<tt>short song</tt>"
setCachedLyrics(cacheKey, ttml, 2000, 0.95, "en", false)
// Request with 0s should find it (2s is within tolerance)
cached, _, found := getCachedLyricsWithDurationTolerance("Short Song", "Artist", "", "0")
if !found {
t.Error("Expected to find cached lyrics for 0s request when 2s is cached")
}
if cached.TTML != ttml {
t.Errorf("Expected TTML %q, got %q", ttml, cached.TTML)
}
}
func TestGetCachedLyricsWithDurationTolerance_InvalidDuration(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Cache a song with valid duration
cacheKey := buildNormalizedCacheKey("Test Song", "Test Artist", "", "232")
setCachedLyrics(cacheKey, "<tt>test</tt>", 232000, 0.95, "en", false)
// Request with invalid duration string should not find fuzzy match
// (only exact match would work, which won't exist for "abc")
_, _, found := getCachedLyricsWithDurationTolerance("Test Song", "Test Artist", "", "abc")
if found {
t.Error("Expected not to find cached lyrics with invalid duration")
}
}
// Tests for overrideHandler
func TestOverrideHandler_RequiresAPIKey(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
req, _ := http.NewRequest("GET", "/override?id=123&s=song&a=artist", nil)
// No API key context set — should be denied
rr := httptest.NewRecorder()
overrideHandler(rr, req)
if rr.Code != http.StatusUnauthorized {
t.Errorf("Expected 401, got %d", rr.Code)
}
}
func TestOverrideHandler_RequiresSongAndArtist(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
tests := []struct {
name string
query string
}{
{"missing both", "/override?id=123"},
{"missing artist", "/override?id=123&s=song"},
{"missing song", "/override?id=123&a=artist"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req, _ := http.NewRequest("GET", tt.query, nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
if rr.Code != http.StatusBadRequest {
t.Errorf("Expected 400, got %d", rr.Code)
}
})
}
}
func TestOverrideHandler_RequiresTrackIDUnlessDryRun(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
req, _ := http.NewRequest("GET", "/override?s=song&a=artist", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
if rr.Code != http.StatusBadRequest {
t.Errorf("Expected 400 when id missing and not dry_run, got %d", rr.Code)
}
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
if !strings.Contains(body["error"].(string), "id parameter") {
t.Errorf("Expected error about missing id, got %q", body["error"])
}
}
func TestOverrideHandler_DryRunFindsMatchingKeys(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// Populate cache with entries
setCachedLyrics("ttml_lyrics:viva la vida coldplay", "<tt>old</tt>", 242000, 0.9, "en", false)
setCachedLyrics("ttml_lyrics:viva la vida coldplay 242s", "<tt>old with dur</tt>", 242000, 0.9, "en", false)
setCachedLyrics("ttml_lyrics:other song other artist", "<tt>unrelated</tt>", 200000, 0.8, "en", false)
// Without duration: only finds the no-duration key
req, _ := http.NewRequest("GET", "/override?s=viva+la+vida&a=coldplay&dry_run=true", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
if rr.Code != http.StatusOK {
t.Fatalf("Expected 200, got %d: %s", rr.Code, rr.Body.String())
}
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
if body["dry_run"] != true {
t.Error("Expected dry_run=true in response")
}
count := int(body["count"].(float64))
if count != 1 {
t.Errorf("Expected 1 matching key (no-duration key only), got %d", count)
}
// With duration: finds both no-duration and duration keys
req2, _ := http.NewRequest("GET", "/override?s=viva+la+vida&a=coldplay&d=242&dry_run=true", nil)
req2 = req2.WithContext(context.WithValue(req2.Context(), apiKeyAuthenticatedKey, true))
rr2 := httptest.NewRecorder()
overrideHandler(rr2, req2)
if rr2.Code != http.StatusOK {
t.Fatalf("Expected 200, got %d: %s", rr2.Code, rr2.Body.String())
}
var body2 map[string]interface{}
json.Unmarshal(rr2.Body.Bytes(), &body2)
count2 := int(body2["count"].(float64))
if count2 != 2 {
t.Errorf("Expected 2 matching keys (with duration), got %d", count2)
}
}
func TestOverrideHandler_DryRunWithAlbumFilter(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
setCachedLyrics("ttml_lyrics:viva la vida coldplay", "<tt>no album</tt>", 242000, 0.9, "", false)
setCachedLyrics("ttml_lyrics:viva la vida coldplay viva la vida or death and all his friends", "<tt>with album</tt>", 242000, 0.9, "", false)
req, _ := http.NewRequest("GET", "/override?s=viva+la+vida&a=coldplay&al=viva+la+vida+or+death+and+all+his+friends&dry_run=true", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
count := int(body["count"].(float64))
if count != 1 {
t.Errorf("Expected 1 matching key with album filter, got %d", count)
}
}
func TestOverrideHandler_DryRunWithDurationFilter(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
setCachedLyrics("ttml_lyrics:viva la vida coldplay 242s", "<tt>242</tt>", 242000, 0.9, "", false)
setCachedLyrics("ttml_lyrics:viva la vida coldplay 300s", "<tt>300</tt>", 300000, 0.9, "", false)
// Duration 243 with default 2s tolerance should match 242s but not 300s
req, _ := http.NewRequest("GET", "/override?s=viva+la+vida&a=coldplay&d=243&dry_run=true", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
count := int(body["count"].(float64))
if count != 1 {
t.Errorf("Expected 1 matching key with duration filter, got %d", count)
}
}
func TestOverrideHandler_NoMatchCreatesNewEntry(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// We can't call the real FetchLyricsByTrackID without configured accounts,
// so we verify the handler returns an error about no accounts (proving it
// attempted to fetch rather than returning 404)
req, _ := http.NewRequest("GET", "/override?id=123&s=nonexistent&a=nobody", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
// Should attempt to fetch (and fail due to no accounts), not 404
if rr.Code == http.StatusNotFound {
t.Error("Should not return 404 when no cache matches — should attempt fetch and create")
}
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
// The error should be about fetching, not about "no matching cache entries"
if errMsg, ok := body["error"].(string); ok {
if strings.Contains(errMsg, "no matching cache entries") {
t.Errorf("Should not return 'no matching cache entries' — got: %s", errMsg)
}
}
}
func TestOverrideHandler_RejectsNonNumericTrackID(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
tests := []struct {
name string
trackID string
}{
{"path traversal", "../1234"},
{"query injection", "1234?foo=bar"},
{"letters", "abc"},
{"mixed", "123abc"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req, _ := http.NewRequest("GET", "/override?id="+tt.trackID+"&s=song&a=artist", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()
overrideHandler(rr, req)
if rr.Code != http.StatusBadRequest {
t.Errorf("Expected 400 for track ID %q, got %d", tt.trackID, rr.Code)
}
var body map[string]interface{}
json.Unmarshal(rr.Body.Bytes(), &body)
if !strings.Contains(body["error"].(string), "numeric") {
t.Errorf("Expected error about numeric ID, got %q", body["error"])
}
})
}
}
func TestOverrideHandler_DryRunDoesNotRequireTrackID(t *testing.T) {
cleanup := setupTestEnvironment(t)
defer cleanup()
// dry_run=true should work even without id parameter
req, _ := http.NewRequest("GET", "/override?s=song&a=artist&dry_run=true", nil)
req = req.WithContext(context.WithValue(req.Context(), apiKeyAuthenticatedKey, true))
rr := httptest.NewRecorder()