我正在尝试为现有库编写一些测试,但无法让 gomock 工作
如果 rand.Read 失败,我想测试行为。这是我想测试的示例。我想查看在测试中执行的 log.Error 行
import (
"crypto/rand"
)
func GetRandomBytes(n int) ([]byte, error) {
b := make([]byte, n)
_, err := rand.Read(b)
if err != nil {
log.Error("Failed to get entropy from system", err)
return nil, err
}
return b, nil
}
gomock 系统应该让我强制“rand.Read”调用做正确的事情
但是,我无法让 mockgen 工具在“反射”模式下工作
$ $GOPATH/bin/mockgen 'crypto/rand' Read
# command-line-arguments
./prog.go:22:28: invalid indirect of "crypto/rand".Read (type func([]byte) (int, error))
2018/01/21 11:20:30 Loading input failed: exit status 2
我在 Ubuntu 14.04 上使用 go 版本 go1.9.2 linux/amd64
genmock -prog_only 'crypto/rand' Read
工作正常,但它生成的代码看起来对我需要做的事情没有用