加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hmac_md5_test.go 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-11-29 22:28 . 统一单元测试格式
package dongle
import (
"github.com/stretchr/testify/assert"
"strconv"
"testing"
)
var hmacMd5Test = []struct {
input string
key string
toHex string
toBase64 string
}{
{"", "", "", ""},
{"hello world", "dongle", "4790626a275f776956386e5a3ea7b726", "R5Biaidfd2lWOG5aPqe3Jg=="},
}
func TestEncrypt_ByHmacMd5_ToString(t *testing.T) {
for index, test := range hmacMd5Test {
e := Encrypt.FromString(test.input).ByHmacMd5(test.key)
assert.Nil(t, e.Error)
assert.Equal(t, test.toHex, e.ToHexString(), "Hex test index is "+strconv.Itoa(index))
assert.Equal(t, test.toBase64, e.ToBase64String(), "Base64 test index is "+strconv.Itoa(index))
}
}
func TestEncrypt_ByHmacMd5_ToBytes(t *testing.T) {
for index, test := range hmacMd5Test {
e := Encrypt.FromBytes([]byte(test.input)).ByHmacMd5([]byte(test.key))
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.toHex), e.ToHexBytes(), "Hex test test index is "+strconv.Itoa(index))
assert.Equal(t, []byte(test.toBase64), e.ToBase64Bytes(), "Base64 test index is "+strconv.Itoa(index))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化