加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
md5_test.go 995 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-11-20 21:39 . v0.1.2
package dongle
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
var md5Test = []struct {
input string
toHex string
toBase64 string
}{
{"", "", ""},
{"hello world", "5eb63bbbe01eeed093cb22bb8f5acdc3", "XrY7u+Ae7tCTyyK7j1rNww=="},
}
func TestEncrypt_ByMd5_ToString(t *testing.T) {
for index, test := range md5Test {
e := Encrypt.FromString(test.input).ByMd5()
assert.Nil(t, e.Error)
assert.Equal(t, test.toHex, e.ToHexString(), "Current test index is "+strconv.Itoa(index))
assert.Equal(t, test.toBase64, e.ToBase64String(), "Current test index is "+strconv.Itoa(index))
}
}
func TestEncrypt_ByMd5_ToBytes(t *testing.T) {
for index, test := range md5Test {
e := Encrypt.FromBytes([]byte(test.input)).ByMd5()
assert.Nil(t, e.Error)
assert.Equal(t, []byte(test.toHex), e.ToHexBytes(), "Current test index is "+strconv.Itoa(index))
assert.Equal(t, []byte(test.toBase64), e.ToBase64Bytes(), "Current test index is "+strconv.Itoa(index))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化