update delay on creating tests in cache

This commit is contained in:
InsanusMokrassar 2024-08-07 16:30:43 +06:00
parent efa869f91a
commit e8232664f3
2 changed files with 5 additions and 4 deletions

View File

@ -3,6 +3,7 @@ package full
import com.benasher44.uuid.uuid4
import dev.inmo.micro_utils.repos.*
import dev.inmo.micro_utils.repos.cache.full.FullKeyValueCacheRepo
import korlibs.time.seconds
import kotlinx.coroutines.test.runTest
import kotlin.test.Test
import kotlin.test.assertEquals
@ -11,7 +12,7 @@ import kotlin.test.assertTrue
class FullKeyValueCacheRepoTests {
@Test
fun creatingWorksProperly() = runTest {
fun creatingWorksProperly() = runTest(timeout = 120.seconds) {
val testData = (0 until 1000).associate {
("$it-" + uuid4().toString()) to "$it-" + uuid4().toString()
}
@ -23,8 +24,7 @@ class FullKeyValueCacheRepoTests {
val cacheRepo = FullKeyValueCacheRepo(
kvRepo,
kvCache,
skipStartInvalidate = true
kvCache
)
testData.forEach {

View File

@ -5,13 +5,14 @@ import dev.inmo.micro_utils.repos.*
import dev.inmo.micro_utils.repos.cache.full.FullKeyValuesCacheRepo
import dev.inmo.micro_utils.repos.pagination.maxPagePagination
import korlibs.time.days
import korlibs.time.seconds
import korlibs.time.years
import kotlinx.coroutines.test.runTest
import kotlin.test.*
class FullKeyValuesCacheRepoTests {
@Test
fun creatingWorksProperly() = runTest {
fun creatingWorksProperly() = runTest(timeout = 120.seconds) {
val testData = (0 until 1000).associate {
("$it-" + uuid4().toString()) to (0 until 1000).map {
"$it-" + uuid4().toString()