Last active
October 27, 2021 06:11
-
-
Save vegaasen/24cb17810b359714916973944bee71d7 to your computer and use it in GitHub Desktop.
Reset an Lazy-field in Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# What is this? | |
# Well.. | |
# Sometimes you want to reset an val from a test where lazy props are being used. | |
# This helps you do just that. | |
# Amazing π€© | |
# define the resetter π | |
import java.util.concurrent.atomic.AtomicReference | |
import kotlin.reflect.KProperty | |
fun <T> lazyWithReset(initializer: () -> T): ResetLazy<T> = ResetLazy(initializer) | |
class ResetLazy<T>(private val initializer: () -> T) { | |
private val lazy: AtomicReference<Lazy<T>> = AtomicReference(lazy(initializer)) | |
operator fun getValue(ref: Any?, property: KProperty<*>): T = lazy.get().getValue(ref, property) | |
fun reset(): Unit = lazy.set(lazy(initializer)) | |
} | |
// usage π | |
val environmentLazyHandler: RestLazy<String> = lazyWithReset { someSlowMethodToLocateEnvironment() } | |
val environment: String by environmentLazyHandler | |
// usage in e.g tests π | |
internal fun onEnvironment(environment: String, f: () -> Unit) { | |
environmentLazyHandler.reset() | |
val existingEnvironment = System.getProperty("somePropertyThatIsUsedInsomeSlowMethodToLocateEnvironment") | |
System.setProperty("somePropertyThatIsUsedInsomeSlowMethodToLocateEnvironment", environment) | |
f() | |
environmentLazyHandler.reset() | |
existingEnvironment | |
?.let { System.setProperty("somePropertyThatIsUsedInsomeSlowMethodToLocateEnvironment", existingEnvironment) } | |
?: System.clearProperty("somePropertyThatIsUsedInsomeSlowMethodToLocateEnvironment") | |
} | |
// usage in e.g tests π | |
@Test | |
fun `some test that requires environment a`() { | |
onEnvironment("env-a") { | |
somethingThatRequiresEnvironmentToBeReset() | |
} | |
} | |
@Test | |
fun `some test that requires environment b`() { | |
onEnvironment("env-b") { | |
somethingThatRequiresEnvironmentToBeReset() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment