Best Kotest code snippet using io.kotest.core.spec.style.scopes.RootTestWithConfigBuilder.config
TestEnvironment.kt
Source:TestEnvironment.kt
...16import io.kotest.core.spec.style.scopes.RootTestWithConfigBuilder17import io.kotest.core.spec.style.scopes.TestWithConfigBuilder18import io.kotest.core.test.TestContext19internal fun RootTestWithConfigBuilder.onlyIfDockerDaemonPresent(test: suspend TestContext.() -> Unit) =20 this.config(enabledIf = { dockerDaemonPresent }, test = test)21private val dockerDaemonPresent: Boolean22 get() = getEnvironmentVariable("DISABLE_DOCKER_DAEMON_TESTS") != "1"23internal fun RootTestWithConfigBuilder.onlyIfDockerDaemonSupportsLinuxContainers(test: suspend TestContext.() -> Unit) =24 this.config(enabledIf = { dockerDaemonPresent && testEnvironmentContainerOperatingSystem == ContainerOperatingSystem.Linux }, test = test)25@OptIn(ExperimentalKotest::class)26internal fun <T> RootContainerWithConfigBuilder<T>.onlyIfDockerDaemonSupportsLinuxContainers(test: suspend T.() -> Unit) =27 this.config(enabledIf = { dockerDaemonPresent && testEnvironmentContainerOperatingSystem == ContainerOperatingSystem.Linux }, test = test)28internal suspend fun TestWithConfigBuilder.onlyIfDockerDaemonSupportsLinuxContainers(test: suspend TestContext.() -> Unit) =29 this.config(enabledIf = { dockerDaemonPresent && testEnvironmentContainerOperatingSystem == ContainerOperatingSystem.Linux }, test = test)30internal fun RootTestWithConfigBuilder.onlyIfDockerDaemonSupportsWindowsContainers(test: suspend TestContext.() -> Unit) =31 this.config(enabledIf = { dockerDaemonPresent && testEnvironmentContainerOperatingSystem == ContainerOperatingSystem.Windows }, test = test)32internal val testEnvironmentContainerOperatingSystem: ContainerOperatingSystem33 get() = when (val value = getEnvironmentVariable("DOCKER_CONTAINER_OPERATING_SYSTEM")) {34 "windows" -> ContainerOperatingSystem.Windows35 null, "", "linux" -> ContainerOperatingSystem.Linux36 else -> throw IllegalArgumentException("Unknown value for 'DOCKER_CONTAINER_OPERATING_SYSTEM' environment variable: $value")37 }38internal suspend fun TestWithConfigBuilder.onlyIfNotConnectingToDaemonOverTCP(test: suspend TestContext.() -> Unit) =39 this.config(enabledIf = { getEnvironmentVariable("DOCKER_CONNECTION_OVER_TCP") != "true" }, test = test)40expect val testEnvironmentOperatingSystem: OperatingSystem41expect fun getEnvironmentVariable(name: String): String?42enum class ContainerOperatingSystem {43 Linux,44 Windows45}46enum class OperatingSystem {47 Linux,48 Windows,49 MacOS50}...
StringSpecRootScope.kt
Source:StringSpecRootScope.kt
...23 * }24 *25 */26interface StringSpecRootScope : RootScope {27 fun String.config(28 enabled: Boolean? = null,29 invocations: Int? = null,30 threads: Int? = null,31 tags: Set<Tag>? = null,32 timeout: Duration? = null,33 extensions: List<TestCaseExtension>? = null,34 enabledIf: EnabledIf? = null,35 invocationTimeout: Duration? = null,36 severity: TestCaseSeverityLevel? = null,37 enabledOrReasonIf: EnabledOrReasonIf? = null,38 coroutineDebugProbes: Boolean? = null,39 blockingTest: Boolean? = null,40 test: suspend TestScope.() -> Unit,41 ) {42 RootTestWithConfigBuilder(43 this@StringSpecRootScope,44 TestName(null, this, false),45 false46 ).config(47 enabled = enabled,48 invocations = invocations,49 threads = threads,50 tags = tags,51 timeout = timeout,52 extensions = extensions,53 enabledIf = enabledIf,54 invocationTimeout = invocationTimeout,55 severity = severity,56 enabledOrReasonIf = enabledOrReasonIf,57 coroutineDebugProbes = coroutineDebugProbes,58 blockingTest = blockingTest,59 test = test60 )61 }62 /**63 * Adds a String Spec test using the default test case config.64 */65 operator fun String.invoke(test: suspend StringSpecScope.() -> Unit) {66 addTest(TestName(null, this, false), false, null) {67 StringSpecScope(this.coroutineContext, testCase).test()68 }69 }70}71/**72 * This scope exists purely to stop nested string scopes.73 */74@KotestTestScope75class StringSpecScope(76 override val coroutineContext: CoroutineContext,77 override val testCase: TestCase...
ShouldSpecRootScope.kt
Source:ShouldSpecRootScope.kt
...34 fun xcontext(name: String, test: suspend ShouldSpecContainerScope.() -> Unit) {35 addContainer(TestName("context ", name, false), true, null) { ShouldSpecContainerScope(this).test() }36 }37 /**38 * Adds a top level context scope accepting config to the spec.39 */40 @ExperimentalKotest41 fun context(name: String): RootContainerWithConfigBuilder<ShouldSpecContainerScope> =42 RootContainerWithConfigBuilder(TestName("context ", name, false), false, this) { ShouldSpecContainerScope(it) }43 /**44 * Adds a disabled top level context scope accepting config to the spec.45 */46 @ExperimentalKotest47 fun xcontext(name: String): RootContainerWithConfigBuilder<ShouldSpecContainerScope> =48 RootContainerWithConfigBuilder(TestName("context ", name, false), true, this) { ShouldSpecContainerScope(it) }49 /**50 * Adds a top level test, with the given name and test function, with test config supplied51 * by invoking .config on the return of this function.52 */53 fun should(name: String): RootTestWithConfigBuilder =54 RootTestWithConfigBuilder(this, TestName("should ", name, true), false)55 fun xshould(name: String): RootTestWithConfigBuilder =56 RootTestWithConfigBuilder(this, TestName("should ", name, true), true)57 /**58 * Adds a top level test, with the given name and test function, with default test config.59 */60 fun should(name: String, test: suspend TestScope.() -> Unit) {61 addTest(TestName("should ", name, false), false, null, test)62 }63 fun xshould(name: String, test: suspend TestScope.() -> Unit) {64 addTest(TestName("should ", name, false), true, null, test)65 }66}...
FunSpecRootScope.kt
Source:FunSpecRootScope.kt
...26 @ExperimentalKotest27 fun xcontext(name: String): RootContainerWithConfigBuilder<FunSpecContainerScope> =28 RootContainerWithConfigBuilder(TestName("context ", name, false), true, this) { FunSpecContainerScope(it) }29 /**30 * Adds a [RootTest], with the given name and config taken from the config builder.31 */32 fun test(name: String): RootTestWithConfigBuilder =33 RootTestWithConfigBuilder(this, TestName(name), xdisabled = false)34 /**35 * Adds a [RootTest], with the given name and default config.36 */37 fun test(name: String, test: suspend TestScope.() -> Unit) = addTest(TestName(name), false, null, test)38 /**39 * Adds a disabled [RootTest], with the given name and default config.40 */41 fun xtest(name: String, test: suspend TestScope.() -> Unit) = addTest(TestName(name), true, null, test)42 /**43 * Adds a disabled [RootTest], with the given name and with config taken from the config builder.44 */45 fun xtest(name: String): RootTestWithConfigBuilder =46 RootTestWithConfigBuilder(this, TestName(name), xdisabled = true)47}...
RootTestWithConfigBuilder.kt
Source:RootTestWithConfigBuilder.kt
...5import io.kotest.core.test.EnabledIf6import io.kotest.core.test.EnabledOrReasonIf7import io.kotest.core.test.TestCaseSeverityLevel8import io.kotest.core.test.TestScope9import io.kotest.core.test.config.UnresolvedTestConfig10import kotlin.time.Duration11class RootTestWithConfigBuilder(12 private val context: RootScope,13 private val name: TestName,14 private val xdisabled: Boolean15) {16 fun config(17 enabled: Boolean? = null,18 invocations: Int? = null,19 threads: Int? = null,20 tags: Set<Tag>? = null,21 timeout: Duration? = null,22 extensions: List<TestCaseExtension>? = null,23 enabledIf: EnabledIf? = null,24 invocationTimeout: Duration? = null,25 severity: TestCaseSeverityLevel? = null,26 enabledOrReasonIf: EnabledOrReasonIf? = null,27 coroutineDebugProbes: Boolean? = null,28 blockingTest: Boolean? = null,29 testCoroutineDispatcher: Boolean? = null,30 coroutineTestScope: Boolean? = null,31 test: suspend TestScope.() -> Unit,32 ) {33 val config = UnresolvedTestConfig(34 enabled = enabled,35 tags = tags,36 extensions = extensions,37 timeout = timeout,38 invocationTimeout = invocationTimeout,39 enabledIf = enabledIf,40 invocations = invocations,41 threads = threads,42 severity = severity,43 enabledOrReasonIf = enabledOrReasonIf,44 coroutineDebugProbes = coroutineDebugProbes,45 blockingTest = blockingTest,46 testCoroutineDispatcher = testCoroutineDispatcher,47 coroutineTestScope = coroutineTestScope,48 )49 context.addTest(name, xdisabled, config, test)50 }51}...
ExpectSpecRootScope.kt
Source:ExpectSpecRootScope.kt
...11 fun context(name: String, test: suspend ExpectSpecContainerScope.() -> Unit) {12 addContainer(TestName("Context: ", name, false), false, null) { ExpectSpecContainerScope(this).test() }13 }14 /**15 * Adds a container test to this spec expecting config.16 */17 @ExperimentalKotest18 fun context(name: String): RootContainerWithConfigBuilder<ExpectSpecContainerScope> =19 RootContainerWithConfigBuilder(TestName("Context: ", name, false), false, this) { ExpectSpecContainerScope(it) }20 fun xcontext(name: String, test: suspend ExpectSpecContainerScope.() -> Unit) {21 addContainer(TestName("Context: ", name, false), true, null) { ExpectSpecContainerScope(this).test() }22 }23 fun expect(name: String, test: suspend TestScope.() -> Unit) {24 addTest(TestName("Expect: ", name, false), false, null) { ExpectSpecContainerScope(this).test() }25 }26 fun xexpect(name: String, test: suspend TestScope.() -> Unit) {27 addTest(TestName("Expect: ", name, false), true, null) { ExpectSpecContainerScope(this).test() }28 }29 fun expect(name: String): RootTestWithConfigBuilder {...
config
Using AI Code Generation
1@DisplayName("This is the root test")2@Config(3class RootTestWithConfigTest : StringSpec({4"this is the root test" {5}6})7@DisplayName("This is the root test")
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!