-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline_database_test.go
More file actions
396 lines (345 loc) · 8.84 KB
/
offline_database_test.go
File metadata and controls
396 lines (345 loc) · 8.84 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
package main
import (
"context"
"encoding/json"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
)
func TestExtractIDFromURL(t *testing.T) {
tests := []struct {
name string
url string
prefix string
wantID int
wantOK bool
}{
{
name: "MAL anime URL",
url: "https://myanimelist.net/anime/1535",
prefix: "https://myanimelist.net/anime/",
wantID: 1535,
wantOK: true,
},
{
name: "AniList anime URL",
url: "https://anilist.co/anime/10378",
prefix: "https://anilist.co/anime/",
wantID: 10378,
wantOK: true,
},
{
name: "URL with trailing path",
url: "https://myanimelist.net/anime/1535/some-title",
prefix: "https://myanimelist.net/anime/",
wantID: 1535,
wantOK: true,
},
{
name: "wrong prefix",
url: "https://kitsu.io/anime/1535",
prefix: "https://myanimelist.net/anime/",
wantID: 0,
wantOK: false,
},
{
name: "non-numeric ID",
url: "https://myanimelist.net/anime/abc",
prefix: "https://myanimelist.net/anime/",
wantID: 0,
wantOK: false,
},
{
name: "zero ID",
url: "https://myanimelist.net/anime/0",
prefix: "https://myanimelist.net/anime/",
wantID: 0,
wantOK: false,
},
{
name: "empty URL",
url: "",
prefix: "https://myanimelist.net/anime/",
wantID: 0,
wantOK: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
id, ok := extractIDFromURL(tt.url, tt.prefix)
assert.Equal(t, tt.wantID, id)
assert.Equal(t, tt.wantOK, ok)
})
}
}
func TestBuildFromEntries(t *testing.T) {
entries := []AODEntry{
{
Sources: []string{
"https://myanimelist.net/anime/10378",
"https://anilist.co/anime/10378",
},
Title: "Shinryaku!? Ika Musume",
Type: "TV",
},
{
Sources: []string{
"https://myanimelist.net/anime/8557",
"https://anilist.co/anime/8557",
},
Title: "Shinryaku! Ika Musume",
Type: "TV",
},
{
Sources: []string{
"https://myanimelist.net/anime/1535",
"https://anilist.co/anime/1535",
"https://kitsu.io/anime/1234",
},
Title: "Death Note",
Type: "TV",
},
{
// Entry without AniList source — should not create mapping
Sources: []string{
"https://myanimelist.net/anime/99999",
},
Title: "Unknown Anime",
Type: "TV",
},
}
db := BuildFromEntries(entries)
assert.Equal(t, 3, db.entries)
// Test MAL -> AniList
id, ok := db.GetAniListID(10378)
assert.True(t, ok)
assert.Equal(t, 10378, id)
id, ok = db.GetAniListID(8557)
assert.True(t, ok)
assert.Equal(t, 8557, id)
id, ok = db.GetAniListID(1535)
assert.True(t, ok)
assert.Equal(t, 1535, id)
// Test AniList -> MAL
id, ok = db.GetMALID(10378)
assert.True(t, ok)
assert.Equal(t, 10378, id)
// Test non-existent ID
_, ok = db.GetAniListID(99999)
assert.False(t, ok)
_, ok = db.GetMALID(99999)
assert.False(t, ok)
}
func TestOfflineDatabaseGetters_NilValues(t *testing.T) {
db := &OfflineDatabase{
malToAniList: make(map[int]int),
anilistToMAL: make(map[int]int),
}
_, ok := db.GetAniListID(123)
assert.False(t, ok)
_, ok = db.GetMALID(456)
assert.False(t, ok)
}
func TestParseAODFile(t *testing.T) {
tmpDir := t.TempDir()
dbPath := filepath.Join(tmpDir, "test-db.json")
testData := map[string]any{
"lastUpdate": "2026-01-15",
"data": []map[string]any{
{
"sources": []string{
"https://myanimelist.net/anime/10378",
"https://anilist.co/anime/10378",
},
"title": "Shinryaku!? Ika Musume",
"type": "TV",
},
{
"sources": []string{
"https://myanimelist.net/anime/1535",
"https://anilist.co/anime/1535",
},
"title": "Death Note",
"type": "TV",
},
},
}
data, err := json.Marshal(testData)
if err != nil {
t.Fatal(err)
}
err = os.WriteFile(dbPath, data, 0o600)
if err != nil {
t.Fatal(err)
}
db, err := parseAODFile(dbPath)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, 2, db.entries)
assert.Equal(t, "2026-01-15", db.lastUpdate)
id, ok := db.GetAniListID(10378)
assert.True(t, ok)
assert.Equal(t, 10378, id)
id, ok = db.GetMALID(1535)
assert.True(t, ok)
assert.Equal(t, 1535, id)
}
func TestOfflineDatabaseStrategy_FindTarget(t *testing.T) {
db := BuildFromEntries([]AODEntry{
{
Sources: []string{
"https://myanimelist.net/anime/10378",
"https://anilist.co/anime/10378",
},
Title: "Shinryaku!? Ika Musume",
Type: "TV",
},
})
strategy := OfflineDatabaseStrategy{Database: db}
ctx := NewLogger(false).WithContext(context.Background())
t.Run("found in existing targets", func(t *testing.T) {
// OfflineDatabaseStrategy accesses raw fields (IDMal/IDAnilist) directly.
// existingTargets is keyed by the DB-resolved ID (10378 = AniList ID from MAL ID).
src := Anime{
IDMal: 10378,
IDAnilist: 0,
TitleEN: "Shinryaku Ika Musume 2",
isReverse: true,
}
targetAnime := Anime{
IDAnilist: 10378,
IDMal: 10378,
TitleEN: "Squid Girl Season 2",
isReverse: true,
}
existingTargets := map[TargetID]Target{
TargetID(10378): targetAnime,
}
target, found, err := strategy.FindTarget(ctx, src, existingTargets, "test", nil)
assert.NoError(t, err)
assert.True(t, found)
assert.Equal(t, "Squid Girl Season 2", target.GetTitle())
})
t.Run("mapped but not in user's list", func(t *testing.T) {
src := Anime{
IDMal: 10378,
IDAnilist: 0,
TitleEN: "Shinryaku Ika Musume 2",
isReverse: true,
}
existingTargets := map[TargetID]Target{}
target, found, err := strategy.FindTarget(ctx, src, existingTargets, "test", nil)
assert.NoError(t, err)
assert.False(t, found)
assert.Nil(t, target)
})
t.Run("nil database", func(t *testing.T) {
nilStrategy := OfflineDatabaseStrategy{Database: nil}
src := Anime{IDMal: 10378}
existingTargets := map[TargetID]Target{}
target, found, err := nilStrategy.FindTarget(ctx, src, existingTargets, "test", nil)
assert.NoError(t, err)
assert.False(t, found)
assert.Nil(t, target)
})
t.Run("skips manga", func(t *testing.T) {
src := Manga{IDMal: 123}
existingTargets := map[TargetID]Target{}
target, found, err := strategy.FindTarget(ctx, src, existingTargets, "test", nil)
assert.NoError(t, err)
assert.False(t, found)
assert.Nil(t, target)
})
}
func TestOfflineDatabaseStrategy_ReverseSync_Issue38(t *testing.T) {
// Issue #38: MAL 10378 "Shinryaku Ika Musume 2" should map to AniList 10378 (season 2)
// NOT to AniList 8557 (season 1 "Squid Girl") via fuzzy title matching
db := BuildFromEntries([]AODEntry{
{
Sources: []string{
"https://myanimelist.net/anime/10378",
"https://anilist.co/anime/10378",
},
Title: "Shinryaku!? Ika Musume",
Type: "TV",
},
{
Sources: []string{
"https://myanimelist.net/anime/8557",
"https://anilist.co/anime/8557",
},
Title: "Shinryaku! Ika Musume",
Type: "TV",
},
})
strategy := OfflineDatabaseStrategy{Database: db}
ctx := NewLogger(false).WithContext(context.Background())
// Source from MAL: Shinryaku Ika Musume 2 (MAL ID: 10378, reverse sync)
src := Anime{
IDMal: 10378,
IDAnilist: 0,
TitleEN: "Shinryaku!? Ika Musume",
isReverse: true,
}
// User's AniList list has both seasons (isReverse=true: keyed by IDAnilist)
existingTargets := map[TargetID]Target{
TargetID(8557): Anime{
IDAnilist: 8557,
IDMal: 8557,
TitleEN: "Squid Girl",
isReverse: true,
},
TargetID(10378): Anime{
IDAnilist: 10378,
IDMal: 10378,
TitleEN: "Squid Girl Season 2",
isReverse: true,
},
}
target, found, err := strategy.FindTarget(ctx, src, existingTargets, "test", nil)
assert.NoError(t, err)
assert.True(t, found)
// Must match season 2, not season 1
assert.Equal(t, TargetID(10378), target.GetTargetID())
assert.Equal(t, "Squid Girl Season 2", target.GetTitle())
}
func TestGetCachedVersion(t *testing.T) {
tmpDir := t.TempDir()
t.Run("valid version file", func(t *testing.T) {
metaPath := filepath.Join(tmpDir, "version.txt")
err := os.WriteFile(metaPath, []byte("2026-05\n"), 0o600)
if err != nil {
t.Fatal(err)
}
version, err := getCachedVersion(metaPath)
assert.NoError(t, err)
assert.Equal(t, "2026-05", version)
})
t.Run("missing file", func(t *testing.T) {
_, err := getCachedVersion(filepath.Join(tmpDir, "nonexistent.txt"))
assert.Error(t, err)
})
}
func TestFileExists(t *testing.T) {
tmpDir := t.TempDir()
t.Run("existing file", func(t *testing.T) {
path := filepath.Join(tmpDir, "exists.txt")
err := os.WriteFile(path, []byte("test"), 0o600)
if err != nil {
t.Fatal(err)
}
assert.True(t, fileExists(path))
})
t.Run("non-existing file", func(t *testing.T) {
assert.False(t, fileExists(filepath.Join(tmpDir, "nope.txt")))
})
}
func TestGetDefaultCacheDir(t *testing.T) {
dir := getDefaultCacheDir()
assert.NotEmpty(t, dir)
assert.True(t, filepath.IsAbs(dir))
assert.Contains(t, dir, "anilist-mal-sync")
assert.Contains(t, dir, "aod-cache")
}