Merge pull request #1002 from mpretty-cyro/fix/no-version-check-when-testing

Added code to defer the CheckForAppUpdatesJob when running tests or sim
pull/1006/head
Morgan Pretty 8 months ago committed by GitHub
commit 2b9412164d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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