我的 Go 程序中有一个简单的包来生成哈希 ID。
我还为它编写了一个测试,但无法理解为什么我只覆盖了 83% 的语句。
下面是我的包函数代码:
package hashgen
import (
"math/rand"
"time"
"github.com/speps/go-hashids"
)
// GenHash function will generate a unique Hash using the current time in Unix epoch format as the seed
func GenHash() (string, error) {
UnixTime := time.Now().UnixNano()
IntUnixTime := int(UnixTime)
hd := hashids.NewData()
hd.Salt = "test"
hd.MinLength = 30
h, err := hashids.NewWithData(hd)
if err != nil {
return "", err
}
e, err := h.Encode([]int{IntUnixTime, IntUnixTime + rand.Intn(1000)})
if err != nil {
return "", err
}
return e, nil
}
下面是我的测试代码:
package hashgen
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGenHash(t *testing.T) {
hash, err := GenHash()
if err != nil {
assert.Error(t, err, "Not able to generate Hash")
}
assert.Nil(t, err)
assert.True(t, len(hash) > 0)
}
使用 coverprofile 运行 Go 测试会提到测试未涵盖以下部分:
if err != nil {
return "", err
}
有什么建议吗?