在JenkinsPipelineUnit

时间:2018-02-13 17:05:43

标签: jenkins groovy mocking jenkins-pipeline jenkins-pipeline-unit

目前我正在尝试注册findFiles步骤。 我的设置如下:

src/
    test/
        groovy/
            TestJavaLib.groovy
vars/
    javaLib.groovy
javaApp.jenkinsfile

Inside TestJavaApp.groovy我有:

...
import com.lesfurets.jenkins.unit.RegressionTest
import com.lesfurets.jenkins.unit.BasePipelineTest

class TestJavaLibraryPipeline extends BasePipelineTest implements RegressionTest {
    // Some overridden setUp() which loads shared libs
    // and registers methods referenced in javaLib.groovy

    void registerPipelineMethods() {
        ...
        def fileList = [new File("testFile1"), new File("testFile2")]
        helper.registerAllowedMethod('findFiles', { f -> return fileList })
        ...
    }
}

我的javaLib.groovy包含了这个当前失败的部分:

    ...
    def pomFiles = findFiles glob: "target/publish/**/${JOB_BASE_NAME}*.pom"
    if (pomFiles.length < 1) { // Fails with java.lang.NullPointerException: Cannot get property 'length' on null object
        error("no pom file found")
    }
    ...

我已经尝试了多个闭包返回各种对象,但每次我得到NPE。 问题是 - 如何正确注册“findFiles”方法?

N.B。我对groovy中的嘲弄和封闭非常陌生。

3 个答案:

答案 0 :(得分:1)

我也面临同样的问题。但是,我能够使用以下方法签名来模拟findFiles()方法:

helper.registerAllowedMethod(method('findFiles', Map.class), {map ->
            return [['path':'testPath/test.zip']]
        })

答案 1 :(得分:0)

查看source code and examples on GitHub,我看到方法的一些重载(here):

  1. void registerAllowedMethod(String name, List<Class> args = [], Closure closure)
  2. void registerAllowedMethod(MethodSignature methodSignature, Closure closure)
  3. void registerAllowedMethod(MethodSignature methodSignature, Function callback)
  4. void registerAllowedMethod(MethodSignature methodSignature, Consumer callback)
  5. 看起来您没有在通话中注册正确的签名。我真的很惊讶你没有使用当前的通话模式获得MissingMethodException

    您需要在注册期间添加方法签名的其余部分。 findFiles方法采用Map个参数(glob: "target/publish/**/${JOB_BASE_NAME}*.pom"是Groovy中的地图文字)。注册该类型的一种方法是这样的:

    helper.registerAllowedMethod('findFiles', [Map.class], { f -> return fileList })
    

答案 2 :(得分:0)

所以当我需要长度属性时,我找到了一种如何模拟findFiles的方法:

helper.registerAllowedMethod('findFiles', [Map.class], { [length: findFilesLength ?: 1] })

这也允许在测试中更改findFilesLength变量以测试管道中的不同条件,例如我的OP中的条件。