forked from pointfreeco/sqlite-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFetchAllTests.swift
More file actions
116 lines (103 loc) · 2.62 KB
/
FetchAllTests.swift
File metadata and controls
116 lines (103 loc) · 2.62 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
import DependenciesTestSupport
import Foundation
import SQLiteData
import Testing
#if canImport(SwiftUI)
import SwiftUI
#endif
@Suite(.dependency(\.defaultDatabase, try .database()))
struct FetchAllTests {
@Dependency(\.defaultDatabase) var database
@MainActor
@Test func concurrency() async throws {
let count = 1_000
try await database.write { db in
try Record.delete().execute(db)
}
@FetchAll var records: [Record]
await withThrowingTaskGroup { group in
for index in 1...count {
group.addTask {
try await database.write { db in
try Record.insert { Record(id: index) }.execute(db)
}
}
}
}
try await $records.load()
#expect(records == (1...count).map { Record(id: $0) })
await withThrowingTaskGroup { group in
for index in 1...(count / 2) {
group.addTask {
try await database.write { db in
try Record.find(index * 2).delete().execute(db)
}
}
}
}
try await $records.load()
#expect(records == (0...(count / 2 - 1)).map { Record(id: $0 * 2 + 1) })
}
@available(iOS 17, macOS 14, tvOS 17, watchOS 10, *)
@Test func fetchFailure() {
do {
try database.read { db in
_ =
try Record
.select { ($0.id, $0.date, #sql("\($0.optionalDate)", as: Date.self)) }
.fetchAll(db)
}
Issue.record()
} catch {
#expect(
"\(error)".contains(
"""
Expected column 2 ("optionalDate") to not be NULL
"""
)
)
}
}
@available(*, deprecated)
@Test func fetchAllSelection_Deprecated() async throws {
#if canImport(SwiftUI)
do {
@FetchAll(animation: .default) var row: [Row]
#expect($row.loadError == nil)
}
#endif
}
}
@Table
private struct Record: Equatable {
let id: Int
@Column(as: Date.UnixTimeRepresentation.self)
var date = Date(timeIntervalSince1970: 42)
@Column(as: Date?.UnixTimeRepresentation.self)
var optionalDate: Date?
}
@Selection
private struct Row {
let id: Int
}
extension DatabaseWriter where Self == DatabaseQueue {
fileprivate static func database() throws -> DatabaseQueue {
let database = try DatabaseQueue()
try database.write { db in
try #sql(
"""
CREATE TABLE "records" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"date" INTEGER NOT NULL DEFAULT 42,
"optionalDate" INTEGER
)
"""
)
.execute(db)
for _ in 1...3 {
_ = try Record.insert { Record.Draft() }.execute(db)
}
}
return database
}
}