我正在尝试为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/
目录中,行为没有改变。
非常感谢这两个教程让我走到这一步:
- https://medium.com/disney-streaming/testing-jenkins-shared-libraries-4d4939406fa2
- https://dev.to/kuperadrian/how-to-setup-a-unit-testable-jenkins-shared-pipeline-library-2e62
我也在尽我最大的努力来记录my journey to getting these tests working in my own repo.,请随时查看。
2条答案
按热度按时间inkz8wg91#
我不确定我是怎么找到它的,但我相信我在我自己的失败测试或其他人的失败测试中看到了函数签名。
在Jenkins单元测试中模拟
pwsh
(大概是powershell
)的签名是[HashMap]
,因此整个模拟是:k0pti3hp2#
首先是:JenkinsPipelineUnit是一个非常棒的测试框架。
今天,我遇到了一个类似的问题,想知道如何模拟
libraryResource
。若要通过
libraryResource
方法自己模拟该方法,只需调用