1 Star 0 Fork 50

dtbsky/dongle

forked from golang-module/dongle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
hmac_sha1_test.go 3.12 KB
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-05-30 08:43 . v0.1.1 统一单元测试格式
package dongle
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
var (
hmacSha1Input, hmacSha1Key = "hello world", "dongle"
hmacSha1HexExpected = "91c103ef93ba7420902b0d1bf0903251c94b4a62"
hmacSha1Base32Expected = "SHAQH34TXJ2CBEBLBUN7BEBSKHEUWSTC"
hmacSha1Base64Expected = "kcED75O6dCCQKw0b8JAyUclLSmI="
)
func TestEncrypt_ByHmacSha1_FromStringToString(t *testing.T) {
hexTests := []struct {
input1 string // 输入值1
input2 string // 输入值2
expected string // 期望值
}{
{"", "", ""},
{hmacSha1Input, hmacSha1Key, hmacSha1HexExpected},
}
for index, test := range hexTests {
e := Encrypt.FromString(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToHexString(), "Current test index is "+strconv.Itoa(index))
}
base32Tests := []struct {
input1 string // 输入值1
input2 string // 输入值2
expected string // 期望值
}{
{"", "", ""},
{hmacSha1Input, hmacSha1Key, hmacSha1Base32Expected},
}
for index, test := range base32Tests {
e := Encrypt.FromString(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToBase32String(), "Current test index is "+strconv.Itoa(index))
}
base64Tests := []struct {
input1 string // 输入值1
input2 string // 输入值2
expected string // 期望值
}{
{"", "", ""},
{hmacSha1Input, hmacSha1Key, hmacSha1Base64Expected},
}
for index, test := range base64Tests {
e := Encrypt.FromString(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToBase64String(), "Current test index is "+strconv.Itoa(index))
}
}
func TestEncrypt_ByHmacSha1_FromBytesToBytes(t *testing.T) {
hexTests := []struct {
input1 []byte // 输入值1
input2 []byte // 输入值2
expected []byte // 期望值
}{
{[]byte(""), []byte(""), []byte("")},
{[]byte(hmacSha1Input), []byte(hmacSha1Key), []byte(hmacSha1HexExpected)},
}
for index, test := range hexTests {
e := Encrypt.FromBytes(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToHexBytes(), "Current test index is "+strconv.Itoa(index))
}
base32Tests := []struct {
input1 []byte // 输入值1
input2 []byte // 输入值2
expected []byte // 期望值
}{
{[]byte(""), []byte(""), []byte("")},
{[]byte(hmacSha1Input), []byte(hmacSha1Key), []byte(hmacSha1Base32Expected)},
}
for index, test := range base32Tests {
e := Encrypt.FromBytes(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToBase32Bytes(), "Current test index is "+strconv.Itoa(index))
}
base64Tests := []struct {
input1 []byte // 输入值1
input2 []byte // 输入值2
expected []byte // 期望值
}{
{[]byte(""), []byte(""), []byte("")},
{[]byte(hmacSha1Input), []byte(hmacSha1Key), []byte(hmacSha1Base64Expected)},
}
for index, test := range base64Tests {
e := Encrypt.FromBytes(test.input1).ByHmacSha1(test.input2)
assert.Nil(t, e.Error)
assert.Equal(t, test.expected, e.ToBase64Bytes(), "Current test index is "+strconv.Itoa(index))
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/daoker/dongle.git
git@gitee.com:daoker/dongle.git
daoker
dongle
dongle
master

搜索帮助