Added code to defer the CheckForAppUpdatesJob when running tests or sim

pull/1002/head
Morgan Pretty 8 months ago
parent 8f73f2c805
commit b451d1ac04

@ -19,6 +19,26 @@ public enum CheckForAppUpdatesJob: JobExecutor {
deferred: @escaping (Job, Dependencies) -> (),
using dependencies: Dependencies
) {
// Just defer the update check when running tests or in the simulator
#if targetEnvironment(simulator)
let shouldCheckForUpdates: Bool = false
#else
let shouldCheckForUpdates: Bool = !SNUtilitiesKit.isRunningTests
#endif
guard shouldCheckForUpdates else {
var updatedJob: Job = job.with(
failureCount: 0,
nextRunTimestamp: (dependencies.dateNow.timeIntervalSince1970 + updateCheckFrequency)
)
dependencies.storage.write(using: dependencies) { db in
try updatedJob.save(db)
}
Log.info("[CheckForAppUpdatesJob] Deferred due to test/simulator build.")
return deferred(updatedJob, dependencies)
}
dependencies.storage
.readPublisher(using: dependencies) { db -> [UInt8]? in Identity.fetchUserEd25519KeyPair(db)?.secretKey }
.subscribe(on: queue)

Loading…
Cancel
Save