mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
166 lines
4.3 KiB
Go
166 lines
4.3 KiB
Go
|
package interchangeformat
|
||
|
|
||
|
import (
|
||
|
"math"
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func Test_uint64FromString(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
str string
|
||
|
want uint64
|
||
|
wantErr bool
|
||
|
}{
|
||
|
{
|
||
|
name: "Overflow uint64 gets MaxUint64",
|
||
|
str: "29348902839048290384902839048290384902938748278934789273984728934789273894798273498",
|
||
|
want: math.MaxUint64,
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Max Uint64 works",
|
||
|
str: "18446744073709551615",
|
||
|
want: math.MaxUint64,
|
||
|
wantErr: false,
|
||
|
},
|
||
|
{
|
||
|
name: "Negative number fails",
|
||
|
str: "-3",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Junk fails",
|
||
|
str: "alksjdkjasd",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "0 works",
|
||
|
str: "0",
|
||
|
want: 0,
|
||
|
},
|
||
|
{
|
||
|
name: "Normal uint64 works",
|
||
|
str: "23980",
|
||
|
want: 23980,
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got, err := uint64FromString(tt.str)
|
||
|
if (err != nil) != tt.wantErr {
|
||
|
t.Errorf("uint64FromString() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
return
|
||
|
}
|
||
|
if got != tt.want {
|
||
|
t.Errorf("uint64FromString() got = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_pubKeyFromHex(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
str string
|
||
|
want [48]byte
|
||
|
wantErr bool
|
||
|
}{
|
||
|
{
|
||
|
name: "Empty value fails due to wrong length",
|
||
|
str: "",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Junk fails",
|
||
|
str: "alksjdkjasd",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Empty value with 0x prefix fails due to wrong length",
|
||
|
str: "0x",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Works with 0x prefix and good public key",
|
||
|
str: "0xb845089a1457f811bfc000588fbb4e713669be8ce060ea6be3c6ece09afc3794106c91ca73acda5e5457122d58723bed",
|
||
|
want: [48]byte{184, 69, 8, 154, 20, 87, 248, 17, 191, 192, 0, 88, 143, 187, 78, 113, 54, 105, 190, 140, 224, 96, 234, 107, 227, 198, 236, 224, 154, 252, 55, 148, 16, 108, 145, 202, 115, 172, 218, 94, 84, 87, 18, 45, 88, 114, 59, 237},
|
||
|
},
|
||
|
{
|
||
|
name: "Works without 0x prefix and good public key",
|
||
|
str: "b845089a1457f811bfc000588fbb4e713669be8ce060ea6be3c6ece09afc3794106c91ca73acda5e5457122d58723bed",
|
||
|
want: [48]byte{184, 69, 8, 154, 20, 87, 248, 17, 191, 192, 0, 88, 143, 187, 78, 113, 54, 105, 190, 140, 224, 96, 234, 107, 227, 198, 236, 224, 154, 252, 55, 148, 16, 108, 145, 202, 115, 172, 218, 94, 84, 87, 18, 45, 88, 114, 59, 237},
|
||
|
},
|
||
|
{
|
||
|
name: "0x prefix and wrong length public key fails",
|
||
|
str: "0xb845089a1457f811bfc000588fbb4e713669be8",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got, err := pubKeyFromHex(tt.str)
|
||
|
if (err != nil) != tt.wantErr {
|
||
|
t.Errorf("pubKeyFromHex() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
return
|
||
|
}
|
||
|
if !reflect.DeepEqual(got, tt.want) {
|
||
|
t.Errorf("pubKeyFromHex() got = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_rootFromHex(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
str string
|
||
|
want [32]byte
|
||
|
wantErr bool
|
||
|
}{
|
||
|
{
|
||
|
name: "Empty value fails due to wrong length",
|
||
|
str: "",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Junk fails",
|
||
|
str: "alksjdkjasd",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Empty value with 0x prefix fails due to wrong length",
|
||
|
str: "0x",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
{
|
||
|
name: "Works with 0x prefix and good root",
|
||
|
str: "0x4ff6f743a43f3b4f95350831aeaf0a122a1a392922c45d804280284a69eb850b",
|
||
|
want: [32]byte{79, 246, 247, 67, 164, 63, 59, 79, 149, 53, 8, 49, 174, 175, 10, 18, 42, 26, 57, 41, 34, 196, 93, 128, 66, 128, 40, 74, 105, 235, 133, 11},
|
||
|
},
|
||
|
{
|
||
|
name: "Works without 0x prefix and good root",
|
||
|
str: "4ff6f743a43f3b4f95350831aeaf0a122a1a392922c45d804280284a69eb850b",
|
||
|
want: [32]byte{79, 246, 247, 67, 164, 63, 59, 79, 149, 53, 8, 49, 174, 175, 10, 18, 42, 26, 57, 41, 34, 196, 93, 128, 66, 128, 40, 74, 105, 235, 133, 11},
|
||
|
},
|
||
|
{
|
||
|
name: "0x prefix and wrong length root fails",
|
||
|
str: "0xb845089a14",
|
||
|
wantErr: true,
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got, err := rootFromHex(tt.str)
|
||
|
if (err != nil) != tt.wantErr {
|
||
|
t.Errorf("rootFromHex() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
return
|
||
|
}
|
||
|
if !reflect.DeepEqual(got, tt.want) {
|
||
|
t.Errorf("rootFromHex() got = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|