我通过Gradle使用JUnit 5平台。
我当前的构建文件有配置子句
junitPlatform {
platformVersion '1.0.0-M5'
logManager 'java.util.logging.LogManager'
enableStandardTestTask true
filters {
tags {
exclude 'integration-test'
}
packages {
include 'com.scherule.calendaring'
}
}
}
工作正常。但我还需要运行集成测试,这些测试需要构建,docker化并在后台运行应用程序。所以我应该有这样的第二个配置,然后才会启动......如何实现这个目标?通常我会扩展Test任务创建IntegrationTest任务,但它不适合JUnit平台,没有简单的任务运行测试...
我知道我可以这样做
task integrationTests(dependsOn: "startMyAppContainer") {
doLast {
def request = LauncherDiscoveryRequestBuilder.request()
.selectors(selectPackage("com.scherule.calendaring"))
.filters(includeClassNamePatterns(".*IntegrationTest"))
.build()
def launcher = LauncherFactory.create()
def listener = new SummaryGeneratingListener()
launcher.registerTestExecutionListeners(listener)
launcher.execute(request)
}
finalizedBy(stopMyAppContainer)
}
但有更简单的方法吗?更一致。
答案 0 :(得分:7)
Gradle中还没有完全支持JUnit5插件(虽然它一直在变得越来越近)。有几种解决方法。这是我使用的那个:它有点冗长,但它与maven的测试与验证完全相同。
Gradle的主要和测试源集合都很好。添加一个仅描述集成测试的新IntegrationTest源集。您可以使用文件名,但这可能意味着您必须调整测试源集以跳过当前包含的文件(在您的示例中,您希望从测试源集中删除"。* IntegrationTest"并将其保留在integrationTest sourceSet中。所以我更喜欢使用与测试源集不同的根目录名。
sourceSets {
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integrationTest/java')
}
resources.srcDir file('src/integrationTest/resources')
}
}
由于我们有java插件,因此可以很好地创建integrationTestCompile
和integrationTestRuntime
函数,以便与dependencies
块一起使用:
dependencies {
// .. other stuff snipped out ..
testCompile "org.assertj:assertj-core:${assertjVersion}"
integrationTestCompile("org.springframework.boot:spring-boot-starter-test") {
exclude module: 'junit:junit'
}
}
尼斯!
正如您所指出的,您需要有一个运行集成测试的任务。你可以像你的例子一样使用启动器;我只是委托现有的控制台运行程序,以便利用简单的命令行选项。
def integrationTest = task('integrationTest',
type: JavaExec,
group: 'Verification') {
description = 'Runs integration tests.'
dependsOn testClasses
shouldRunAfter test
classpath = sourceSets.integrationTest.runtimeClasspath
main = 'org.junit.platform.console.ConsoleLauncher'
args = ['--scan-class-path',
sourceSets.integrationTest.output.classesDir.absolutePath,
'--reports-dir', "${buildDir}/test-results/junit-integrationTest"]
}
该任务定义包括dependsOn和shouldRunAfter,以确保在运行集成测试时,首先运行单元测试。要确保在./gradlew check
时运行集成测试,您需要更新检查任务:
check {
dependsOn integrationTest
}
现在您使用./gradlew test
./mvnw test
和./gradlew check
./mvnw verify
。