我在kotlin中有一个“基础”项目,该项目配置了gradle dsl。 在基础内部,我有模块“ app”和模块“ library”。 模块应用程序使用模块库。 我想从模块应用程序的测试(准确地说是库的testUtils包)中访问模块库的测试。
app.build gradle文件的行implementation(project(":library"))
像这样,我无法在主代码中访问库的测试,这很好,但是我也无法从应用程序的测试中访问它。
我已阅读this question(可能是this question的副本),其中相关的常规代码是:
task testJar(type: Jar, dependsOn: testClasses) {
baseName = "test-${project.archivesBaseName}"
from sourceSets.test.output
}
configurations {
tests
}
artifacts {
tests testJar
}
但是我不能在gradle dsl中实现它。
我还检查了this question代码在哪里:
tasks {
val sourcesJar by creating(Jar::class) {
dependsOn(JavaPlugin.CLASSES_TASK_NAME)
classifier = "sources"
from(sourceSets["main"].allSource)
}
val javadocJar by creating(Jar::class) {
dependsOn(JavaPlugin.JAVADOC_TASK_NAME)
classifier = "javadoc"
from(tasks["javadoc"])
}
artifacts {
add("archives", sourcesJar)
add("archives", javadocJar)
}
}
我不仅需要在库的源代码中添加testImplementation
,还需要在库的测试中添加import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.time.Duration
plugins {
kotlin("jvm") version "1.3.21"
}
allprojects {
repositories {
jcenter()
}
}
subprojects {
apply(plugin = "kotlin")
dependencies {
implementation(kotlin("stdlib-jdk8"))
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
tasks.withType<Test> {
useJUnitPlatform()
// Make sure tests don't take over 10 minutes
timeout.set(Duration.ofMinutes(10))
}
}
,以便在应用程序的测试中我可以使用库的测试包,而在应用程序的源代码中我无法使用图书馆的测试。
谢谢。
更新:
base.build:
import java.net.URI
rootProject.name = "base"
sourceControl {
gitRepository(URI("https://github.com/path-to-github.git")) {
producesModule("path.to.package:primitive-storage-layer")
}
}
include("library")
include("app")
base.settings:
plugins {
application
}
application {
mainClassName = "path.to.package.MainKt"
}
val junitVersion = "5.5.0-M1"
val hamkrestVersion = "1.7.0.0"
val mockkVersion = "1.9.3"
dependencies {
implementation(project(":library"))
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitVersion")
testImplementation("com.natpryce:hamkrest:$hamkrestVersion")
testImplementation("io.mockk:mockk:$mockkVersion")
runtime("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
}
app.build:
val primitiveLibraryVersion = "1.0"
val gsonVersion = "2.8.5"
val junitVersion = "5.5.0-M1"
val mockkVersion = "1.9.3"
dependencies {
implementation("path.to.package:primitive-storage-layer:$primitiveLibraryVersion")
implementation("com.google.code.gson:gson:$gsonVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testImplementation("io.mockk:mockk:$mockkVersion")
}
library.build:
SubmissionSupplier supplier = new SubmissionSupplier();
SubmissionConsumer consumer = new SubmissionConsumer();
CompletableFuture<Void> completableFuture =
CompletableFuture.supplyAsync(supplier).thenAccept(consumer);
// END, No further code
答案 0 :(得分:0)
尽管有可能产生一个包含测试的工件,然后在另一个项目中使用它,但我会避免这种情况,而是将测试实用程序重构为一个单独的子项目(类似${app}-test-kit
),将代码放入 main 源集,然后依赖于应用程序和库testImplementation
配置中的子项目。
这可以使您的分隔更加清晰,并且更清楚地知道共享的内容和原因。