2019-08-27 13:29:42 +00:00
|
|
|
package keys
|
2018-03-21 16:11:04 +00:00
|
|
|
|
|
|
|
import (
|
2018-03-25 10:45:54 +00:00
|
|
|
"encoding/hex"
|
2018-03-21 16:11:04 +00:00
|
|
|
"testing"
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2019-11-21 10:19:08 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2018-03-21 16:11:04 +00:00
|
|
|
)
|
|
|
|
|
2018-03-25 10:45:54 +00:00
|
|
|
func TestEncodeDecodeInfinity(t *testing.T) {
|
2019-09-04 21:12:39 +00:00
|
|
|
key := &PublicKey{}
|
2019-09-16 09:18:13 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
2019-09-16 16:31:49 +00:00
|
|
|
key.EncodeBinary(buf.BinWriter)
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, buf.Err)
|
2019-09-16 09:18:13 +00:00
|
|
|
b := buf.Bytes()
|
2019-11-21 10:19:08 +00:00
|
|
|
require.Equal(t, 1, len(b))
|
2018-03-25 10:45:54 +00:00
|
|
|
|
|
|
|
keyDecode := &PublicKey{}
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, keyDecode.DecodeBytes(b))
|
|
|
|
require.Equal(t, []byte{0x00}, keyDecode.Bytes())
|
2018-03-25 10:45:54 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 16:11:04 +00:00
|
|
|
func TestEncodeDecodePublicKey(t *testing.T) {
|
|
|
|
for i := 0; i < 4; i++ {
|
2019-09-04 20:03:25 +00:00
|
|
|
k, err := NewPrivateKey()
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, err)
|
2019-09-05 06:35:02 +00:00
|
|
|
p := k.PublicKey()
|
2019-09-16 09:18:13 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
2019-09-16 16:31:49 +00:00
|
|
|
p.EncodeBinary(buf.BinWriter)
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, buf.Err)
|
2019-09-16 09:18:13 +00:00
|
|
|
b := buf.Bytes()
|
2018-03-21 16:11:04 +00:00
|
|
|
|
|
|
|
pDecode := &PublicKey{}
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, pDecode.DecodeBytes(b))
|
|
|
|
require.Equal(t, p.X, pDecode.X)
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-25 10:45:54 +00:00
|
|
|
|
|
|
|
func TestDecodeFromString(t *testing.T) {
|
|
|
|
str := "03b209fd4f53a7170ea4444e0cb0a6bb6a53c2bd016926989cf85f9b0fba17a70c"
|
|
|
|
pubKey, err := NewPublicKeyFromString(str)
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, str, hex.EncodeToString(pubKey.Bytes()))
|
2018-03-25 10:45:54 +00:00
|
|
|
}
|
2019-08-27 13:29:42 +00:00
|
|
|
|
|
|
|
func TestPubkeyToAddress(t *testing.T) {
|
|
|
|
pubKey, err := NewPublicKeyFromString("031ee4e73a17d8f76dc02532e2620bcb12425b33c0c9f9694cc2caa8226b68cad4")
|
2019-11-21 10:19:08 +00:00
|
|
|
require.NoError(t, err)
|
2019-08-27 14:16:33 +00:00
|
|
|
actual := pubKey.Address()
|
2019-08-27 13:29:42 +00:00
|
|
|
expected := "AUpGsNCHzSimeMRVPQfhwrVdiUp8Q2N2Qx"
|
2019-11-21 10:19:08 +00:00
|
|
|
require.Equal(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDecodeBytes(t *testing.T) {
|
|
|
|
pubKey := getPubKey(t)
|
|
|
|
decodedPubKey := &PublicKey{}
|
|
|
|
err := decodedPubKey.DecodeBytes(pubKey.Bytes())
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, pubKey,decodedPubKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContains(t *testing.T) {
|
|
|
|
pubKey := getPubKey(t)
|
|
|
|
pubKeys := &PublicKeys{getPubKey(t)}
|
|
|
|
pubKeys.Contains(pubKey)
|
|
|
|
require.True(t, pubKeys.Contains(pubKey))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnique(t *testing.T) {
|
|
|
|
pubKeys := &PublicKeys{getPubKey(t), getPubKey(t)}
|
|
|
|
unique := pubKeys.Unique()
|
|
|
|
require.Equal(t, 1, unique.Len())
|
|
|
|
}
|
|
|
|
|
|
|
|
func getPubKey(t *testing.T) *PublicKey {
|
|
|
|
pubKey, err := NewPublicKeyFromString("031ee4e73a17d8f76dc02532e2620bcb12425b33c0c9f9694cc2caa8226b68cad4")
|
|
|
|
require.NoError(t, err)
|
|
|
|
return pubKey
|
2019-08-27 13:29:42 +00:00
|
|
|
}
|