我正在尝试为我的 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/
这个项目的目录中,但行为没有改变。
非常感谢这两个教程让我走到了这一步:
- 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
我也在尽我最大的努力记录我在自己的仓库中让这些测试工作的过程。,请随意查看。