我正在构建一个jenkins共享库(在groovy中),并在JenkinsPipelineUnit和gradle中对此进行测试。则不存在覆盖。
以下是我的build.gradle的相关部分:
plugins {
id 'groovy'
id 'application'
id 'jacoco'
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.5.4'
testCompile 'junit:junit:4.12'
testCompile 'com.lesfurets:jenkins-pipeline-unit:1.1.1-custom' // minor adaptations, but that's another story
}
test {
systemProperty "pipeline.stack.write", System.getProperty("pipeline.stack.write")
}
jacocoTestReport {
group = "Reporting"
reports {
xml.enabled true
csv.enabled false
}
additionalSourceDirs = files('vars')
sourceDirectories = fileTree(dir: 'vars')
}
我认为问题在于,我的“源”文件驻留在vars目录中,而不是在普通groovy项目中所期望的src/groovy中。
我试着指定
sourceSets {
main {
groovy {
srcDir 'vars'
}
}
}
但是gradle会在使用时加载该共享库时开始编译它;这就打破了一切。
我的文件夹结构如下所示:
├── build.gradle
├── src
│ └── test
│ ├── groovy
│ │ └── TestSimplePipeline.groovy
│ └── resources
│ └── simplePipeline.jenkins
└── vars
├── MyPipeline.groovy
└── sh.groovy
我认为我的问题与https://github.com/jenkinsci/JenkinsPipelineUnit/issues/119有关,但我不知道如何使用gradle中为maven提出的修改(甚至不确定它们是否适用于jacoco)。
1条答案
按热度按时间8gsdolmq1#
问题是
JenkinsPipelineUnit
在运行时评估你的脚本,这意味着jacoco
代理不能检测运行时生成的字节码。要解决此问题,您需要进行两项更改。
1.使用jacoco offline instrumentalisation
在我的例子中,我使用了
maven
,所以我不能提供gradle
配置的具体示例。1.在你的测试中加载编译过的类而不是
groovy
脚本。这里的
fooScript
是类的名称(假设在本例中有一个名为fooScript.groovy
的源文件)。现在,您可以通过