neo-go/pkg/util/uint160_test.go

97 lines
2.5 KiB
Go
Raw Normal View History

package util
import (
"encoding/hex"
"testing"
"github.com/stretchr/testify/assert"
2019-11-24 14:55:50 +00:00
"github.com/stretchr/testify/require"
)
func TestUint160UnmarshalJSON(t *testing.T) {
str := "2d3b96ae1bcc5a585e075e3b81920210dec16302"
expected, err := Uint160DecodeString(str)
2019-11-24 14:55:50 +00:00
assert.NoError(t, err)
2019-10-22 14:56:03 +00:00
// UnmarshalJSON decodes hex-strings
var u1, u2 Uint160
2019-11-24 14:55:50 +00:00
assert.NoError(t, u1.UnmarshalJSON([]byte(`"`+str+`"`)))
assert.True(t, expected.Equals(u1))
s, err := expected.MarshalJSON()
2019-11-24 14:55:50 +00:00
require.NoError(t, err)
2019-10-22 14:56:03 +00:00
// UnmarshalJSON decodes hex-strings prefixed by 0x
2019-11-24 14:55:50 +00:00
assert.NoError(t, u2.UnmarshalJSON(s))
assert.True(t, expected.Equals(u1))
2019-11-25 08:43:13 +00:00
assert.Error(t, u2.UnmarshalJSON([]byte(`123`)))
}
func TestUInt160DecodeString(t *testing.T) {
hexStr := "2d3b96ae1bcc5a585e075e3b81920210dec16302"
val, err := Uint160DecodeString(hexStr)
2019-11-24 14:55:50 +00:00
assert.NoError(t, err)
assert.Equal(t, hexStr, val.String())
2019-11-25 08:43:13 +00:00
_, err = Uint160DecodeString(hexStr[1:])
assert.Error(t, err)
hexStr = "zz3b96ae1bcc5a585e075e3b81920210dec16302"
_, err = Uint160DecodeString(hexStr)
assert.Error(t, err)
}
func TestUint160DecodeBytes(t *testing.T) {
hexStr := "2d3b96ae1bcc5a585e075e3b81920210dec16302"
b, err := hex.DecodeString(hexStr)
2019-11-24 14:55:50 +00:00
require.NoError(t, err)
val, err := Uint160DecodeBytes(b)
2019-11-24 14:55:50 +00:00
assert.NoError(t, err)
assert.Equal(t, hexStr, val.String())
2019-11-25 08:43:13 +00:00
_, err = Uint160DecodeBytes(b[1:])
assert.Error(t, err)
}
func TestUInt160Equals(t *testing.T) {
a := "2d3b96ae1bcc5a585e075e3b81920210dec16302"
b := "4d3b96ae1bcc5a585e075e3b81920210dec16302"
ua, err := Uint160DecodeString(a)
2019-11-24 14:55:50 +00:00
require.NoError(t, err)
ub, err := Uint160DecodeString(b)
2019-11-24 14:55:50 +00:00
require.NoError(t, err)
assert.False(t, ua.Equals(ub), "%s and %s cannot be equal", ua, ub)
assert.True(t, ua.Equals(ua), "%s and %s must be equal", ua, ua)
}
func TestUInt160Less(t *testing.T) {
a := "2d3b96ae1bcc5a585e075e3b81920210dec16302"
b := "2d3b96ae1bcc5a585e075e3b81920210dec16303"
ua, err := Uint160DecodeString(a)
assert.Nil(t, err)
ua2, err := Uint160DecodeString(a)
assert.Nil(t, err)
ub, err := Uint160DecodeString(b)
assert.Nil(t, err)
assert.Equal(t, true, ua.Less(ub))
assert.Equal(t, false, ua.Less(ua2))
assert.Equal(t, false, ub.Less(ua))
}
func TestUInt160String(t *testing.T) {
hexStr := "b28427088a3729b2536d10122960394e8be6721f"
hexRevStr := "1f72e68b4e39602912106d53b229378a082784b2"
val, err := Uint160DecodeString(hexStr)
assert.Nil(t, err)
assert.Equal(t, hexStr, val.String())
assert.Equal(t, hexRevStr, val.ReverseString())
}