Gradle, native: Fix creating test binaries for non-host platforms

Issue #KT-31725 fixed
This commit is contained in:
Ilya Matveev
2019-06-03 18:42:55 +07:00
parent afa9a80b3a
commit 2ab0760e35
4 changed files with 37 additions and 25 deletions
@@ -1173,7 +1173,15 @@ class NewMultiplatformIT : BaseGradleIT() {
// Check that test binaries can be accessed in a buildscript.
build("checkNewGetters") {
assertSuccessful()
listOf("test.$suffix", "another.$suffix").forEach {
val suffixes = listOf("exe", "kexe", "wasm")
val names = listOf("test", "another")
val files = names.flatMap { name ->
suffixes.map { suffix ->
"$name.$suffix"
}
}
files.forEach {
assertContains("Get test: $it")
assertContains("Find test: $it")
}
@@ -1187,7 +1195,7 @@ class NewMultiplatformIT : BaseGradleIT() {
|Probably you are accessing the default test binary using the 'binaries.getExecutable("test", DEBUG)' method.
|Since 1.3.40 tests are represented by a separate binary type. To get the default test binary, use:
|
| binaries.getTest(DEBUG)
| binaries.getTest("DEBUG")
""".trimMargin()
)
}
@@ -1199,7 +1207,7 @@ class NewMultiplatformIT : BaseGradleIT() {
|Probably you are accessing the default test binary using the 'binaries.findExecutable("test", DEBUG)' method.
|Since 1.3.40 tests are represented by a separate binary type. To get the default test binary, use:
|
| binaries.findTest(DEBUG)
| binaries.findTest("DEBUG")
""".trimMargin()
)
assertContains("Find test: null")
@@ -25,7 +25,10 @@ kotlin {
fromPreset(presets.linuxX64, 'linux64')
fromPreset(presets.mingwX64, 'mingw64')
configure([macos64, linux64, mingw64]) {
// Test creating and accessing test binaries for cross-targets
fromPreset(presets.wasm32, 'wasm')
configure([macos64, linux64, mingw64, wasm]) {
compilations.create("anotherTest")
binaries {
test("another", [DEBUG]) {
@@ -68,7 +71,7 @@ task checkOldFind {
task checkNewGetters {
doLast {
kotlin.targets {
configure([macos64, linux64, mingw64]) {
configure([macos64, linux64, mingw64, wasm]) {
println("Get test: ${binaries.getTest(DEBUG).outputFile.name}")
println("Find test: ${binaries.findTest(DEBUG).outputFile.name}")
println("Get test: ${binaries.getTest("another", DEBUG).outputFile.name}")
@@ -163,7 +163,7 @@ open class KotlinNativeBinaryContainer @Inject constructor(
|Probably you are accessing the default test binary using the 'binaries.getExecutable("$DEFAULT_TEST_NAME_PREFIX", ${DEFAULT_TEST_BUILD_TYPE.name})' method.
|Since 1.3.40 tests are represented by a separate binary type. To get the default test binary, use:
|
| binaries.getTest(DEBUG)
| binaries.getTest("DEBUG")
|
""".trimMargin()
@@ -172,7 +172,7 @@ open class KotlinNativeBinaryContainer @Inject constructor(
|Probably you are accessing the default test binary using the 'binaries.findExecutable("$DEFAULT_TEST_NAME_PREFIX", ${DEFAULT_TEST_BUILD_TYPE.name})' method.
|Since 1.3.40 tests are represented by a separate binary type. To get the default test binary, use:
|
| binaries.findTest(DEBUG)
| binaries.findTest("DEBUG")
|
""".trimMargin()
}
@@ -232,30 +232,31 @@ open class KotlinNativeTargetConfigurator(
}
override fun configureTest(target: KotlinNativeTarget): Unit = with(target.project) {
// We don't create test tasks for non-host platforms.
if (target.konanTarget !in listOf(KonanTarget.MACOS_X64, KonanTarget.MINGW_X64, KonanTarget.LINUX_X64)) {
return
}
val taskName = lowerCamelCaseName(target.disambiguationClassifier, testTaskNameSuffix)
// We create test binaries for all platforms.
target.binaries.test(listOf(NativeBuildType.DEBUG)) {
val testTask = createOrRegisterTask<KotlinNativeTest>(taskName) { testTask ->
testTask.group = LifecycleBasePlugin.VERIFICATION_GROUP
testTask.description = "Executes Kotlin/Native unit tests for target ${target.name}."
testTask.targetName = compilation.target.targetName
testTask.enabled = target.konanTarget.isCurrentHost
// But run them only on host ones.
if (target.konanTarget in listOf(KonanTarget.MACOS_X64, KonanTarget.MINGW_X64, KonanTarget.LINUX_X64)) {
testTask.executable { outputFile }
testTask.workingDir = project.projectDir.absolutePath
val taskName = lowerCamelCaseName(target.disambiguationClassifier, testTaskNameSuffix)
val testTask = createOrRegisterTask<KotlinNativeTest>(taskName) { testTask ->
testTask.group = LifecycleBasePlugin.VERIFICATION_GROUP
testTask.description = "Executes Kotlin/Native unit tests for target ${target.name}."
testTask.targetName = compilation.target.targetName
testTask.onlyIf { outputFile.exists() }
testTask.dependsOn(linkTaskName)
testTask.enabled = target.konanTarget.isCurrentHost
testTask.configureConventions()
testTask.executable { outputFile }
testTask.workingDir = project.projectDir.absolutePath
testTask.onlyIf { outputFile.exists() }
testTask.dependsOn(linkTaskName)
testTask.configureConventions()
}
kotlinTestRegistry.registerTestTask(testTask)
}
kotlinTestRegistry.registerTestTask(testTask)
}
}