Skip to content
Snippets Groups Projects
Commit 1b90cc62 authored by Jakob Möller's avatar Jakob Möller Committed by d067928
Browse files

Throw Exception in case we have a failed entry to ensure Abortion of the...

Throw Exception in case we have a failed entry to ensure Abortion of the Transaction (EXPOSUREAPP-2405) (#1134)

* Throw Exception in case we have a failed entry to ensure Abortion of the Transaction.

Signed-off-by: default avatard067928 <jakob.moeller@sap.com>

* Adjust test to not expect call to clear cache files

Signed-off-by: default avatard067928 <jakob.moeller@sap.com>
parent 8e3df1c2
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,7 @@ import kotlinx.coroutines.awaitAll
import kotlinx.coroutines.withContext
import timber.log.Timber
import java.io.File
import java.io.IOException
import java.util.Collections
import java.util.Date
import java.util.UUID
......@@ -121,7 +122,10 @@ object CachedKeyFileHolder {
deferredQueries.awaitAll()
Timber.v("${failedEntryCacheKeys.size} failed entries ")
// For an error we clear the cache to try again
keyCache.clear(failedEntryCacheKeys)
if (failedEntryCacheKeys.isNotEmpty()) {
keyCache.clear(failedEntryCacheKeys)
throw IOException("failed to download all key files, at least one failing request.")
}
keyCache.getFilesFromEntries()
.also { it.forEach { file -> Timber.v("cached file:${file.path}") } }
}
......
......@@ -38,7 +38,6 @@ class CachedKeyFileHolderTest {
every { KeyCacheRepository.getDateRepository(any()) } returns keyCacheRepository
mockkObject(CachedKeyFileHolder)
coEvery { keyCacheRepository.deleteOutdatedEntries(any()) } just Runs
coEvery { keyCacheRepository.clear(any()) } just Runs
}
/**
......@@ -65,7 +64,6 @@ class CachedKeyFileHolderTest {
keyCacheRepository.deleteOutdatedEntries(any())
CachedKeyFileHolder["getMissingDaysFromDiff"](arrayListOf<String>())
keyCacheRepository.getDates()
keyCacheRepository.clear(emptyList())
keyCacheRepository.getFilesFromEntries()
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment