1

我正在尝试为我的 Jenkins 共享库中的自定义步骤编写单元测试。我已经开始使用 Gradle 和 JenkinsPipelineUnit(通过本文末尾链接的文章),但我一直在模拟pwsh运行 PowerShell 脚本的步骤。我的自定义步骤在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,但我不知道如何使用它。来自JPU 回购:

/**
* 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")
        }
    }

它抛出了错误,所以它以某种方式使用了这个本地模拟。评论中提到的“url 类加载器”是什么?我确实尝试将 ps1 文件放在resources/这个项目的目录中,但行为没有改变。

非常感谢这两个教程让我走到了这一步:

我也在尽我最大的努力记录我在自己的仓库中让这些测试工作的过程。,请随意查看。

4

1 回答 1

0

我不确定我到底是如何找到它的,但我相信我在自己的失败测试或其他人的测试中都看到了函数签名。

在 Jenkins 单元测试中模拟的签名pwsh(可能是)结果是,因此整个模拟是:powershell[HashMap]

helper.registerAllowedMethod('pwsh', [HashMap], { <whatever you want to return> })
于 2021-11-22T21:05:49.067 回答