|
|
|
@ -5,15 +5,19 @@ plugins {
|
|
|
|
|
id("org.jetbrains.compose") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
val integrationTestsEnabled: Boolean = project.properties.getValue("integrationTestsEnabled") == "true" |
|
|
|
|
|
|
|
|
|
kotlin { |
|
|
|
|
jvm { |
|
|
|
|
tasks.named<Test>("jvmTest") { |
|
|
|
|
useJUnitPlatform() |
|
|
|
|
|
|
|
|
|
systemProperty( |
|
|
|
|
"COMPOSE_WEB_INTEGRATION_TESTS_DISTRIBUTION", |
|
|
|
|
File(buildDir, "developmentExecutable") |
|
|
|
|
) |
|
|
|
|
if (integrationTestsEnabled) { |
|
|
|
|
jvm { |
|
|
|
|
tasks.named<Test>("jvmTest") { |
|
|
|
|
useJUnitPlatform() |
|
|
|
|
|
|
|
|
|
systemProperty( |
|
|
|
|
"COMPOSE_WEB_INTEGRATION_TESTS_DISTRIBUTION", |
|
|
|
|
File(buildDir, "developmentExecutable") |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -51,43 +55,47 @@ kotlin {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
val jvmTest by getting { |
|
|
|
|
dependencies { |
|
|
|
|
implementation("org.slf4j:slf4j-api:1.7.30") |
|
|
|
|
implementation("org.slf4j:slf4j-simple:1.7.30") |
|
|
|
|
if (integrationTestsEnabled) { |
|
|
|
|
val jvmTest by getting { |
|
|
|
|
dependencies { |
|
|
|
|
implementation("org.slf4j:slf4j-api:1.7.30") |
|
|
|
|
implementation("org.slf4j:slf4j-simple:1.7.30") |
|
|
|
|
|
|
|
|
|
implementation("org.seleniumhq.selenium:selenium-java:3.141.59") |
|
|
|
|
implementation("org.seleniumhq.selenium:selenium-java:3.141.59") |
|
|
|
|
|
|
|
|
|
implementation("io.ktor:ktor-server-netty:1.5.4") |
|
|
|
|
implementation("io.ktor:ktor-server-core:1.5.4") |
|
|
|
|
implementation("io.ktor:ktor-server-host-common:1.5.4") |
|
|
|
|
implementation("io.ktor:ktor-server-netty:1.5.4") |
|
|
|
|
implementation("io.ktor:ktor-server-core:1.5.4") |
|
|
|
|
implementation("io.ktor:ktor-server-host-common:1.5.4") |
|
|
|
|
|
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-engine:5.7.1") |
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-api:5.7.1") |
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-params:5.7.1") |
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-engine:5.7.1") |
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-api:5.7.1") |
|
|
|
|
implementation("org.junit.jupiter:junit-jupiter-params:5.7.1") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
tasks.named<Test>("jvmTest") { |
|
|
|
|
dependsOn(tasks.named("jsBrowserDevelopmentWebpack")) |
|
|
|
|
if (integrationTestsEnabled) { |
|
|
|
|
tasks.named<Test>("jvmTest") { |
|
|
|
|
dependsOn(tasks.named("jsBrowserDevelopmentWebpack")) |
|
|
|
|
|
|
|
|
|
listOf( |
|
|
|
|
"webdriver.chrome.driver", |
|
|
|
|
"webdriver.gecko.driver", |
|
|
|
|
).forEach { |
|
|
|
|
if (rootProject.hasProperty(it)) { |
|
|
|
|
println("${it} => ${rootProject.extensions.getByName(it)}") |
|
|
|
|
systemProperty(it, rootProject.extensions.getByName(it)) |
|
|
|
|
listOf( |
|
|
|
|
"webdriver.chrome.driver", |
|
|
|
|
"webdriver.gecko.driver", |
|
|
|
|
).forEach { |
|
|
|
|
if (rootProject.hasProperty(it)) { |
|
|
|
|
println("${it} => ${rootProject.extensions.getByName(it)}") |
|
|
|
|
systemProperty(it, rootProject.extensions.getByName(it)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
listOf( |
|
|
|
|
"compose.web.tests.integration.withFirefox" |
|
|
|
|
).forEach { propName -> |
|
|
|
|
if (project.hasProperty(propName)) { |
|
|
|
|
systemProperty(propName, "true") |
|
|
|
|
listOf( |
|
|
|
|
"compose.web.tests.integration.withFirefox" |
|
|
|
|
).forEach { propName -> |
|
|
|
|
if (project.hasProperty(propName)) { |
|
|
|
|
systemProperty(propName, "true") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|