|
|
|
@ -147,9 +147,16 @@ class DatabaseSpec: QuickSpec {
|
|
|
|
|
/// Ensure all of the `fetchedTables` records can still be decoded correctly after the migrations have completed (since
|
|
|
|
|
/// we perform multiple migrations above it's possible these won't work after the `initialMigrations` but actually will
|
|
|
|
|
/// work when required as an intermediate migration could have satisfied the data requirements)
|
|
|
|
|
let droppedTables: Set<ObjectIdentifier> = test.migrationsToTest
|
|
|
|
|
.flatMap { _, _, migration in migration.droppedTables }
|
|
|
|
|
.map { ObjectIdentifier($0) }
|
|
|
|
|
.asSet()
|
|
|
|
|
let tablesToTest: [(TableRecord & FetchableRecord).Type] = test.migrationsToTest
|
|
|
|
|
.flatMap { _, _, migration in migration.fetchedTables }
|
|
|
|
|
.filter { table in !droppedTables.contains(ObjectIdentifier(table)) }
|
|
|
|
|
|
|
|
|
|
mockStorage.read { db in
|
|
|
|
|
test.migrationsToTest.forEach { _, _, migration in
|
|
|
|
|
migration.fetchedTables.forEach { table in
|
|
|
|
|
tablesToTest.forEach { table in
|
|
|
|
|
expect { try table.fetchAll(db) }.toNot(throwError())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -157,7 +164,6 @@ class DatabaseSpec: QuickSpec {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - Convenience
|
|
|
|
@ -220,6 +226,11 @@ private class MigrationTest {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static func extractDatabaseTypes(_ allMigrations: [Storage.KeyedMigration]) -> [(TableRecord & FetchableRecord).Type] {
|
|
|
|
|
let droppedTables: Set<ObjectIdentifier> = allMigrations
|
|
|
|
|
.flatMap { _, _, migration in migration.droppedTables }
|
|
|
|
|
.map { ObjectIdentifier($0) }
|
|
|
|
|
.asSet()
|
|
|
|
|
|
|
|
|
|
return allMigrations
|
|
|
|
|
.reduce(into: [:]) { result, next in
|
|
|
|
|
next.migration.fetchedTables.forEach { table in
|
|
|
|
@ -231,7 +242,7 @@ private class MigrationTest {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.values
|
|
|
|
|
.asArray()
|
|
|
|
|
.filter { table in !droppedTables.contains(ObjectIdentifier(table)) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - Mock Data
|
|
|
|
@ -296,6 +307,16 @@ private class MigrationTest {
|
|
|
|
|
Identity(variant: .ed25519SecretKey, data: Data.data(fromHex: TestConstants.edSecretKey)!)
|
|
|
|
|
].forEach { try $0.insert(db) }
|
|
|
|
|
|
|
|
|
|
case JobDependencies.databaseTableName:
|
|
|
|
|
// Unsure why but for some reason this causes foreign key constraint errors during tests
|
|
|
|
|
// so just validate that the columns haven't changed since this was added
|
|
|
|
|
guard
|
|
|
|
|
JobDependencies.Columns.allCases.count == 2 &&
|
|
|
|
|
JobDependencies.Columns.jobId.name == "jobId" &&
|
|
|
|
|
JobDependencies.Columns.dependantId.name == "dependantId"
|
|
|
|
|
else { throw StorageError.invalidData }
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
case .some(let name):
|
|
|
|
|
// No need to insert dummy data if it already exists in the table
|
|
|
|
|
guard try Int.fetchOne(db, sql: "SELECT COUNT(*) FROM '\(name)'") == 0 else { return }
|
|
|
|
|