jvmMain.com.bkahlert.kommons.test.junit.testEach.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-test Show documentation
Show all versions of kommons-test Show documentation
Kommons Test is a Kotlin Multiplatform Library to ease testing.
package com.bkahlert.kommons.test.junit
import com.bkahlert.kommons.test.junit.DynamicTestDisplayNameGenerator.displayNameFor
import org.junit.jupiter.api.DynamicTest
import org.junit.jupiter.api.function.Executable
import java.util.stream.Stream
/**
* Builds a single test
* that [softly] checks the specified [assertions]
* for each of the specified [subjects].
*
* The name for each container is heuristically derived but can also be explicitly specified using [testNamePattern]
* which supports curly placeholders `{}` like [SLF4J] does.
*/
public fun testEach(
vararg subjects: T,
testNamePattern: String? = null,
softly: Boolean = true,
assertions: Assertions,
): Stream = subjects.asList().testEach(testNamePattern, softly, assertions)
/**
* Builds a single test
* that [softly] checks the specified [assertions]
* for each subject of this [Collection].
*
* The name for each container is heuristically derived but can also be explicitly specified using [testNamePattern]
* which supports curly placeholders `{}` like [SLF4J] does.
*/
public fun Iterable.testEach(
testNamePattern: String? = null,
softly: Boolean = true,
assertions: Assertions,
): Stream {
val testSourceUri = PathSource.currentUri
return toList()
.also { require(it.isNotEmpty()) { "At least one subject must be provided for testing." } }
.map { subject: T ->
DynamicTest.dynamicTest(
displayNameFor(subject, testNamePattern),
testSourceUri,
if (softly) {
Executable { com.bkahlert.kommons.test.testAll { assertions(subject) } }
} else {
Executable { assertions(subject) }
},
)
}.stream()
}
/**
* Builds a single test
* that [softly] checks the specified [assertions]
* for each subject of this [Sequence].
*
* The name for each container is heuristically derived but can also be explicitly specified using [testNamePattern]
* which supports curly placeholders `{}` like [SLF4J] does.
*/
public fun Sequence.testEach(
testNamePattern: String? = null,
softly: Boolean = true,
assertions: Assertions,
): Stream = toList().testEach(testNamePattern, softly, assertions)
/**
* Builds a single test
* that [softly] checks the specified [assertions]
* for each entry of this [Map].
*
* The name for each container is heuristically derived but can also be explicitly specified using [testNamePattern]
* which supports curly placeholders `{}` like [SLF4J] does.
*/
public fun Map.testEach(
testNamePattern: String? = null,
softly: Boolean = true,
assertions: Assertions>,
): Stream = entries.testEach(testNamePattern, softly, assertions)