如何在Jenkins PipelineUnit中使用libraryResource模拟'pwsh'

xuo3flqw  于 2022-12-03  发布在  Jenkins
关注(0)|答案(2)|浏览(210)

我正在尝试为Jenkins共享库中的自定义步骤编写单元测试。我已经使用了Gradle和JenkinsPipelineUnit(通过本文末尾链接的文章),但我在模拟运行PowerShell脚本的pwsh步骤时陷入了困境。我的自定义步骤位于vars/getRepo.groovy中:

def call() {
  def repo = pwsh returnStdout: true, label: 'get repo', script: "${libraryResource 'Get-Repo.ps1'}"

  return repo.trim()
}

试验是:

import org.junit.*
import com.lesfurets.jenkins.unit.*
import static groovy.test.GroovyAssert.*

class GetRepoTest extends BasePipelineTest {
  def getRepo

  @Before
  void setUp() {
    super.setUp()
    // set up mocks
    def reponame = 'myRepoName'
    helper.registerAllowedMethod("pwsh", [Boolean, String, String], { p -> return reponame })

    // load getRepo
    getRepo = loadScript("vars/getRepo.groovy")
  }

  @Test
  void testCall() {
    // call getRepo and check result
    def result = getRepo()
    assert 'myRepoName'.equals(result)
  }
}

测试失败;在我看来,我要么没有正确地模拟pwsh步骤,要么包含libraryResource函数是在抛出一些东西。

groovy.lang.GroovyRuntimeException: Library Resource not found with path Get-Repo.ps1

在JenkinsPipelineUnit包中肯定有对模拟libraryResource的本地支持,但是我不知道如何使用它。

/**
* Method interceptor for 'libraryResource' in Shared libraries
* The resource from shared library should have been added to the url classloader in advance
*/
def libraryResourceInterceptor = { m ->
  def stream = gse.groovyClassLoader.getResourceAsStream(m as String)
  if (stream) {
    def string = IOUtils.toString(stream, Charset.forName("UTF-8"))
            IOUtils.closeQuietly(stream)
            return string
        } else {
            throw new GroovyRuntimeException("Library Resource not found with path $m")
        }
    }

它抛出了一个错误,所以它使用了这个原生的mock。注解中提到的“url classloader”是什么?我确实试着把ps1文件放在这个项目的resources/目录中,行为没有改变。
非常感谢这两个教程让我走到这一步:

我也在尽我最大的努力来记录my journey to getting these tests working in my own repo.,请随时查看。

inkz8wg9

inkz8wg91#

我不确定我是怎么找到它的,但我相信我在我自己的失败测试或其他人的失败测试中看到了函数签名。
在Jenkins单元测试中模拟pwsh(大概是powershell)的签名是[HashMap],因此整个模拟是:

helper.registerAllowedMethod('pwsh', [HashMap], { <whatever you want to return> })
k0pti3hp

k0pti3hp2#

首先是:JenkinsPipelineUnit是一个非常棒的测试框架。
今天,我遇到了一个类似的问题,想知道如何模拟libraryResource
若要通过libraryResource方法自己模拟该方法,只需调用

helper.registerAllowedMethod('libraryResource', [String]) {
 'Content of library resource'
}

相关问题