-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathAttachmentsTest.kt
More file actions
600 lines (506 loc) · 22.4 KB
/
Copy pathAttachmentsTest.kt
File metadata and controls
600 lines (506 loc) · 22.4 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
package com.powersync
import app.cash.turbine.turbineScope
import co.touchlab.kermit.ExperimentalKermitApi
import com.powersync.attachments.Attachment
import com.powersync.attachments.AttachmentQueue
import com.powersync.attachments.AttachmentState
import com.powersync.attachments.RemoteStorage
import com.powersync.attachments.SyncErrorHandler
import com.powersync.attachments.WatchedAttachmentItem
import com.powersync.attachments.createAttachmentsTable
import com.powersync.db.getString
import com.powersync.db.schema.Schema
import com.powersync.db.schema.Table
import com.powersync.testutils.ActiveDatabaseTest
import com.powersync.testutils.MockedRemoteStorage
import com.powersync.testutils.UserRow
import com.powersync.testutils.databaseTest
import com.powersync.testutils.getTempDir
import dev.mokkery.answering.throws
import dev.mokkery.everySuspend
import dev.mokkery.matcher.ArgMatchersScope
import dev.mokkery.matcher.any
import dev.mokkery.matcher.matching
import dev.mokkery.mock
import dev.mokkery.spy
import dev.mokkery.verifySuspend
import io.kotest.matchers.shouldBe
import io.kotest.matchers.shouldNotBe
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.distinctUntilChanged
import kotlinx.coroutines.flow.flowOf
import kotlinx.coroutines.flow.onEach
import kotlinx.io.files.Path
import kotlin.test.Test
import kotlin.time.Duration.Companion.seconds
@OptIn(ExperimentalKermitApi::class)
class AttachmentsTest {
fun watchAttachments(database: PowerSyncDatabase) =
database.watch(
// language=SQL
sql =
"""
SELECT
photo_id
FROM
users
WHERE
photo_id IS NOT NULL
""",
) {
WatchedAttachmentItem(
id = it.getString("photo_id"),
fileExtension = "jpg",
)
}
private fun ActiveDatabaseTest.watchAttachmentsTable(): Flow<List<Attachment>> =
database
.watch("SELECT * FROM attachments") {
Attachment.fromCursor(it)
}
// Because tests run on slow machines, it's possible for a schedule like the following
// to happen:
// 1. the attachment is initially saved with QUEUED_DOWNLOAD, triggering a query.
// 2. the attachment is downloaded fast, but the query flow is paused.
// 3. only now is the query scheduled by 1 actually running, reporting SYNCED.
// 4. we delete the attachment.
// 5. thanks to 2, the query runs again, again reporting SYNCED.
// 6. Our test now fails because the second event should be ARCHIVED.
.distinctUntilChanged()
.onEach { logger.i { "attachments table results: $it" } }
suspend fun updateSchema(db: PowerSyncDatabase) {
db.updateSchema(
Schema(
tables =
listOf<Table>(
UserRow.table,
createAttachmentsTable("attachments"),
),
),
)
}
fun getAttachmentsDir() = Path(getTempDir(), "attachments").toString()
@Test
fun testAttachmentDownload() =
databaseTest {
turbineScope {
updateSchema(database)
val remote = spy<RemoteStorage>(MockedRemoteStorage())
// Monitor the attachments table for testing
val attachmentQuery = watchAttachmentsTable().testIn(this)
val queue =
AttachmentQueue(
db = database,
remoteStorage = remote,
attachmentsDirectory = getAttachmentsDir(),
watchAttachments = { watchAttachments(database) },
/**
* Sets the cache limit to zero for this test. Archived records will
* immediately be deleted.
*/
archivedCacheLimit = 0,
logger = logger,
)
doOnCleanup {
attachmentQuery.cancel()
queue.stopSyncing()
queue.clearQueue()
queue.close()
}
queue.startSync()
val result = attachmentQuery.awaitItem()
// There should not be any attachment records here
result.size shouldBe 0
// Create a user with a photo_id specified.
// This code did not save an attachment before assigning a photo_id.
// This is equivalent to requiring an attachment download
database.execute(
// language=SQL
"""
INSERT INTO
users (id, name, email, photo_id)
VALUES
(uuid(), "steven", "steven@journeyapps.com", uuid())
""",
)
var attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord shouldNotBe null
/**
* The timing of the watched query resolving might differ slightly.
* We might get a watched query result where the attachment is QUEUED_DOWNLOAD
* or we could get the result once it has been DOWNLOADED.
* We should assert that the download happens eventually.
*/
if (attachmentRecord.state == AttachmentState.QUEUED_DOWNLOAD) {
// Wait for the download to be triggered
attachmentRecord = attachmentQuery.awaitItem().first()
}
attachmentRecord.state shouldBe AttachmentState.SYNCED
// A download should have been attempted for this file
verifySuspend { remote.downloadFile(attachmentMatcher(attachmentRecord)) }
// A file should now exist
val localUri = attachmentRecord.localUri!!
queue.localStorage.fileExists(localUri) shouldBe true
// Now clear the user's photo_id. The attachment should be archived
database.execute(
// language=SQL
"""
UPDATE
users
SET
photo_id = NULL
""",
)
/**
* The timing of the watched query resolving might differ slightly.
* We might get a watched query result where the attachment is ARCHIVED
* or we could get the result once it has been deleted.
* The file should be deleted eventually
*/
var nextRecord: Attachment? = attachmentQuery.awaitItem().first()
if (nextRecord?.state == AttachmentState.ARCHIVED) {
nextRecord = attachmentQuery.awaitItem().getOrNull(0)
}
// The record should have been deleted
nextRecord shouldBe null
// The file should have been deleted from storage
val exists = queue.localStorage.fileExists(localUri)
exists shouldBe false
attachmentQuery.cancelAndIgnoreRemainingEvents()
}
}
@Test
fun testAttachmentUpload() =
databaseTest {
turbineScope {
updateSchema(database)
val remote = spy<RemoteStorage>(MockedRemoteStorage())
// Monitor the attachments table for testing
val attachmentQuery = watchAttachmentsTable().testIn(this)
val queue =
AttachmentQueue(
db = database,
remoteStorage = remote,
attachmentsDirectory = getAttachmentsDir(),
watchAttachments = { watchAttachments(database) },
/**
* Sets the cache limit to zero for this test. Archived records will
* immediately be deleted.
*/
archivedCacheLimit = 0,
logger = logger,
)
doOnCleanup {
attachmentQuery.cancel()
queue.stopSyncing()
queue.clearQueue()
queue.close()
}
queue.startSync()
val result = attachmentQuery.awaitItem()
// There should not be any attachment records here
result.size shouldBe 0
/**
* Creates an attachment given a flow of bytes (the file data) then assigns this to
* a newly created user.
*/
val record =
queue.saveFile(
data = flowOf(ByteArray(1)),
mediaType = "image/jpg",
fileExtension = "jpg",
) { tx, attachment ->
// Set the photo_id of a new user to the attachment id
tx.execute(
// language=SQL
"""
INSERT INTO
users (id, name, email, photo_id)
VALUES
(uuid(), "steven", "steven@steven.com", ?)
""",
listOf(attachment.id),
)
}
var attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord shouldNotBe null
if (attachmentRecord.state == AttachmentState.QUEUED_UPLOAD) {
// Wait for it to be synced
attachmentRecord = attachmentQuery.awaitItem().first()
}
attachmentRecord.state shouldBe AttachmentState.SYNCED
// A download should have been attempted for this file
verifySuspend {
remote.uploadFile(
any(),
attachmentMatcher(attachmentRecord),
)
}
val localUri = attachmentRecord.localUri!!
queue.localStorage.fileExists(localUri) shouldBe true
// Now clear the user's photo_id. The attachment should be archived
database.execute(
// language=SQL
"""
UPDATE
users
SET
photo_id = NULL
""",
)
while (true) {
val item = attachmentQuery.awaitItem()
if (item.isEmpty()) {
break
}
logger.v { "Waiting for attachment record to be deleted (current $item)" }
}
// The file should have been deleted from storage
queue.localStorage.fileExists(localUri) shouldBe false
attachmentQuery.cancelAndIgnoreRemainingEvents()
}
}
@Test
fun testAttachmentDelete() =
databaseTest {
turbineScope {
updateSchema(database)
val remote = spy<RemoteStorage>(MockedRemoteStorage())
// Monitor the attachments table for testing
val attachmentQuery = watchAttachmentsTable().testIn(this)
val queue =
AttachmentQueue(
db = database,
remoteStorage = remote,
attachmentsDirectory = getAttachmentsDir(),
watchAttachments = { watchAttachments(database) },
/**
* Sets the cache limit to zero for this test. Archived records will
* immediately be deleted.
*/
archivedCacheLimit = 0,
syncThrottleDuration = 0.seconds,
logger = logger,
)
doOnCleanup {
queue.stopSyncing()
queue.clearQueue()
queue.close()
attachmentQuery.cancel()
}
queue.startSync()
val result = attachmentQuery.awaitItem()
// There should not be any attachment records here
result.size shouldBe 0
// Create an attachment (simulates a download)
database.execute(
// language=SQL
"""
INSERT INTO
users (id, name, email, photo_id)
VALUES
(uuid(), "steven", "steven@steven.com", uuid())
""",
)
// language=SQL
val attachmentID =
database.get("SELECT photo_id FROM users") { it.getString("photo_id") }
// Wait for the record to be synced (mocked backend will allow it)
while (true) {
val item = attachmentQuery.awaitItem().firstOrNull()
if (item != null && item.state == AttachmentState.SYNCED) {
break
}
logger.v { "Waiting for attachment record to be synced (current $item)" }
}
queue.deleteFile(
attachmentId = attachmentID,
) { tx, attachment ->
tx.execute(
// language=SQL
"""
UPDATE
users
SET
photo_id = NULL
WHERE
photo_id = ?
""".trimIndent(),
listOf(attachment.id),
)
}
// Record should be deleted
while (true) {
val item = attachmentQuery.awaitItem()
if (item.isEmpty()) {
break
}
logger.v { "Waiting for attachment record to be deleted (current $item)" }
}
// A delete should have been attempted for this file
verifySuspend {
remote.deleteFile(
any(),
)
}
attachmentQuery.cancelAndIgnoreRemainingEvents()
}
}
@Test
fun testAttachmentCachedDownload() =
databaseTest {
turbineScope {
updateSchema(database)
val remote = spy<RemoteStorage>(MockedRemoteStorage())
// Monitor the attachments table for testing
val attachmentQuery = watchAttachmentsTable().testIn(this)
val queue =
AttachmentQueue(
db = database,
remoteStorage = remote,
attachmentsDirectory = getAttachmentsDir(),
watchAttachments = { watchAttachments(database) },
/**
* Keep some items in the cache
*/
archivedCacheLimit = 10,
logger = logger,
)
doOnCleanup {
queue.stopSyncing()
queue.clearQueue()
queue.close()
attachmentQuery.cancel()
}
queue.startSync()
val result = attachmentQuery.awaitItem()
// There should not be any attachment records here
result.size shouldBe 0
// Create a user with a photo_id specified.
// This code did not save an attachment before assigning a photo_id.
// This is equivalent to requiring an attachment download
database.execute(
// language=SQL
"""
INSERT INTO
users (id, name, email, photo_id)
VALUES
(uuid(), "steven", "steven@journeyapps.com", uuid())
""",
)
var attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord shouldNotBe null
/**
* The timing of the watched query resolving might differ slightly.
* We might get a watched query result where the attachment is QUEUED_DOWNLOAD
* or we could get the result once it has been DOWNLOADED.
* We should assert that the download happens eventually.
*/
if (attachmentRecord.state == AttachmentState.QUEUED_DOWNLOAD) {
// Wait for the download to be triggered
attachmentRecord = attachmentQuery.awaitItem().first()
}
attachmentRecord.state shouldBe AttachmentState.SYNCED
// A download should have been attempted for this file
verifySuspend { remote.downloadFile(attachmentMatcher(attachmentRecord)) }
// A file should now exist
val localUri = attachmentRecord.localUri!!
queue.localStorage.fileExists(localUri) shouldBe true
// Now clear the user's photo_id. The attachment should be archived
database.execute(
// language=SQL
"""
UPDATE
users
SET
photo_id = NULL
""",
)
attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord.state shouldBe AttachmentState.ARCHIVED
// Now if we set the photo_id, the archived record should be restored
database.execute(
// language=SQL
"""
UPDATE
users
SET
photo_id = ?
""",
listOf(attachmentRecord.id),
)
attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord.state shouldBe AttachmentState.SYNCED
attachmentQuery.cancelAndIgnoreRemainingEvents()
}
}
@Test
fun testSkipFailedDownload() =
databaseTest {
turbineScope {
updateSchema(database)
val remote =
mock<RemoteStorage> {
everySuspend { downloadFile(any()) } throws (Exception("Test error"))
}
// Monitor the attachments table for testing
val attachmentQuery = watchAttachmentsTable().testIn(this)
val queue =
AttachmentQueue(
db = database,
remoteStorage = remote,
attachmentsDirectory = getAttachmentsDir(),
watchAttachments = { watchAttachments(database) },
errorHandler =
object : SyncErrorHandler {
override suspend fun onDownloadError(
attachment: Attachment,
exception: Exception,
): Boolean = false
override suspend fun onUploadError(
attachment: Attachment,
exception: Exception,
): Boolean = false
override suspend fun onDeleteError(
attachment: Attachment,
exception: Exception,
): Boolean = false
},
logger = logger,
)
doOnCleanup {
queue.stopSyncing()
queue.clearQueue()
queue.close()
attachmentQuery.cancel()
}
queue.startSync()
val result = attachmentQuery.awaitItem()
// There should not be any attachment records here
result.size shouldBe 0
// Create a user with a photo_id specified.
// This code did not save an attachment before assigning a photo_id.
// This is equivalent to requiring an attachment download
database.execute(
"""
INSERT INTO
users (id, name, email, photo_id)
VALUES
(uuid(), "steven", "steven@journeyapps.com", uuid())
""",
)
// Depending on when the query updates, we'll see the attachment as queued for
// download or archived.
var attachmentRecord = attachmentQuery.awaitItem().first()
attachmentRecord shouldNotBe null
if (attachmentRecord.state == AttachmentState.QUEUED_DOWNLOAD) {
attachmentRecord = attachmentQuery.awaitItem().first()
}
// The download should fail. We don't specify a retry. The record should be archived.
attachmentRecord.state shouldBe AttachmentState.ARCHIVED
attachmentQuery.cancelAndIgnoreRemainingEvents()
}
}
}
fun ArgMatchersScope.attachmentMatcher(attachment: Attachment): Attachment =
matching(toString = { "attachment($attachment)" }, predicate = { it.id == attachment.id })