83627b9967
* evm: check height overflow * rm * c++
113 lines
1.9 KiB
Go
113 lines
1.9 KiB
Go
package types
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/tharsis/ethermint/tests"
|
|
)
|
|
|
|
func TestIsEmptyHash(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
hash string
|
|
expEmpty bool
|
|
}{
|
|
{
|
|
"empty string", "", true,
|
|
},
|
|
{
|
|
"zero hash", common.Hash{}.String(), true,
|
|
},
|
|
|
|
{
|
|
"non-empty hash", common.BytesToHash([]byte{1, 2, 3, 4}).String(), false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
require.Equal(t, tc.expEmpty, IsEmptyHash(tc.hash), tc.name)
|
|
}
|
|
}
|
|
|
|
func TestIsZeroAddress(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
address string
|
|
expEmpty bool
|
|
}{
|
|
{
|
|
"empty string", "", true,
|
|
},
|
|
{
|
|
"zero address", common.Address{}.String(), true,
|
|
},
|
|
|
|
{
|
|
"non-empty address", common.BytesToAddress([]byte{1, 2, 3, 4}).String(), false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
require.Equal(t, tc.expEmpty, IsZeroAddress(tc.address), tc.name)
|
|
}
|
|
}
|
|
|
|
func TestValidateAddress(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
address string
|
|
expError bool
|
|
}{
|
|
{
|
|
"empty string", "", true,
|
|
},
|
|
{
|
|
"invalid address", "0x", true,
|
|
},
|
|
{
|
|
"zero address", common.Address{}.String(), false,
|
|
},
|
|
{
|
|
"valid address", tests.GenerateAddress().Hex(), false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
err := ValidateAddress(tc.address)
|
|
|
|
if tc.expError {
|
|
require.Error(t, err, tc.name)
|
|
} else {
|
|
require.NoError(t, err, tc.name)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSafeInt64(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
value uint64
|
|
expError bool
|
|
}{
|
|
{
|
|
"no overflow", 10, false,
|
|
},
|
|
{
|
|
"overflow", 18446744073709551615, true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
value, err := SafeInt64(tc.value)
|
|
if tc.expError {
|
|
require.Error(t, err, tc.name)
|
|
continue
|
|
}
|
|
|
|
require.NoError(t, err, tc.name)
|
|
require.Equal(t, int64(tc.value), value, tc.name)
|
|
}
|
|
}
|