使用Junit5进行Gradle多项目集成测试

问题描述 投票:0回答:1

如何在多项目构建文件中使用Gradle 5.2和JUnit 5.3创建集成测试?

这是我当前的构建文件:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:1.6.10"
    classpath 'org.owasp:dependency-check-gradle:5.0.0-M2'
  }
}


allprojects {
  defaultTasks 'clean', 'build', 'publish', 'installDist'
  group = 'coyote'
  version = '0.1.0'
}

subprojects {

  apply plugin: 'java'
  apply plugin: 'jacoco'
  apply plugin: "com.github.spotbugs"
  apply plugin: 'org.owasp.dependencycheck'
  apply plugin: 'maven-publish'
  apply plugin: 'application'
  apply plugin: 'eclipse'
  apply plugin: 'idea'

  repositories {
    jcenter()
    mavenCentral()
  }

  dependencies {
    testImplementation ("org.junit.jupiter:junit-jupiter-api:5.3.2")
    testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.3.2")
    spotbugsPlugins ("com.h3xstream.findsecbugs:findsecbugs-plugin:1.8.0")
  }

  tasks.withType(Test) {
    useJUnitPlatform()
  }

  apply from: "$rootDir/integration-test.gradle"

  check.dependsOn jacocoTestCoverageVerification
  check.dependsOn dependencyCheckAnalyze

  spotbugs {
    effort = "max"
    reportLevel = "low"
    ignoreFailures = true
    showProgress = true
  }

  jacocoTestReport {
    reports {
      xml.enabled true
      html.enabled true
    }
  }

  check.dependsOn jacocoTestReport

  tasks.withType(com.github.spotbugs.SpotBugsTask) {
    reports {
      xml.enabled false
      html.enabled true
    }
  }

}

我在第46行申请的integration-test.gradle文件包含以下内容:

sourceSets {
    itest {
        compileClasspath += sourceSets.main.output + configurations.testCompile
        runtimeClasspath += output + compileClasspath + configurations.testRuntime
    }
}

idea {
    module {
        testSourceDirs += sourceSets.itest.java.srcDirs
        testResourceDirs += sourceSets.itest.resources.srcDirs
        scopes.TEST.plus += [configurations.itestCompile]
    }
}

task itest(type: Test) {
    description = 'Runs the integration tests.'
    group = 'verification'
    testClassesDirs = sourceSets.itest.output.classesDirs
    classpath = sourceSets.itest.runtimeClasspath
    outputs.upToDateWhen { false }
}

一切似乎在Intellij中运行良好,但JUnit5没有被添加到类路径中,因此itest目录中的任何测试都找不到JUnit库。

运行gradlew itest失败,类似的结果没有找到JUnit类。

我试图在useJUnitPlatform()任务中直接添加使用itest,但没有成功。我也尝试将所有内容放在build.gradle文件中但没有成功。

最后,我想使用相同的模式来定义加载和安全测试,将它们作为CI / CD管道的一部分单独运行,因此将所有内容整齐地放在各自项目下的各自目录中,最好将所有内容混合在一个测试目录中并使用标签。

这也有助于其他团队模拟CI / CD实践,因此使用Gradle 5和JUnit 5是首选,而不是解决方法或黑客工作。了解这些版本无法协同工作或目前存在阻止此方法的缺陷问题是可以接受的。希望这不是问题,我只是缺少一些简单的东西。

gradle continuous-integration integration-testing junit5 continuous-delivery
1个回答
1
投票

解决方案是我需要自己包含JUnit 5依赖项。以下是正确的integration-test.gradle文件:

sourceSets {
    itest {
        compileClasspath += sourceSets.main.output + configurations.testCompile
        runtimeClasspath += output + compileClasspath + configurations.testRuntime
    }
}

idea {
    module {
        testSourceDirs += sourceSets.itest.java.srcDirs
        testResourceDirs += sourceSets.itest.resources.srcDirs
        scopes.TEST.plus += [configurations.itestCompile]
    }
}

dependencies {
    itestImplementation ("org.junit.jupiter:junit-jupiter-api:5.3.2")
    itestRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.3.2")
}

task itest(type: Test) {
    description = 'Runs the integration tests.'
    group = 'verification'
    testClassesDirs = sourceSets.itest.output.classesDirs
    classpath = sourceSets.itest.runtimeClasspath
    outputs.upToDateWhen { false }
}
© www.soinside.com 2019 - 2024. All rights reserved.