我正在尝试为包含简单提示的 Oclif 钩子编写单元测试。我想测试钩子的输出,给定对提示的“Y”或“N”响应。
import {Hook} from '@oclif/config'
import cli from 'cli-ux'
const hook: Hook<'init'> = async function () {
const answer = await cli.prompt("Y or N?")
if(answer === 'Y') {
this.log('yes')
}
else {
this.log('no')
}
}
export default hook
我正在使用此处描述的“fancy-test”和“@oclif/test”测试框架: https ://oclif.io/docs/testing
我已经尝试对提示进行存根并模拟标准输入,但两者都不起作用 - 存根函数不可用或输出为空字符串。
这是一次测试的尝试(不起作用,因为 'cli.prompt 不是函数'):
import {expect, test} from '@oclif/test'
import cli from 'cli-ux'
import * as sinon from 'sinon';
describe('it should test the "configure telemetry" hook', () => {
test
.stub(cli, 'prompt', sinon.stub().resolves('Y'))
.stdout()
.hook('init')
.do(output => expect(output.stdout).to.contain('yes'))
.it()
})
我突然想到我可能没有正确地构建我的测试。如果有人能指出我正确的方向或提供一些关于如何测试上述钩子的伪/示例代码,那将是惊人的 - 谢谢!