9abda40171
Frequently one needs to check if struct serializes/deserializes properly. This commit implements helpers for such cases including: 1. JSON 2. io.Serializable interface
38 lines
909 B
Go
38 lines
909 B
Go
package payload
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/internal/testserdes"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncodeDecodeAddress(t *testing.T) {
|
|
var (
|
|
e, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:2000")
|
|
ts = time.Now()
|
|
addr = NewAddressAndTime(e, ts)
|
|
)
|
|
|
|
assert.Equal(t, ts.UTC().Unix(), int64(addr.Timestamp))
|
|
aatip := make(net.IP, 16)
|
|
copy(aatip, addr.IP[:])
|
|
assert.Equal(t, e.IP, aatip)
|
|
assert.Equal(t, e.Port, int(addr.Port))
|
|
|
|
testserdes.EncodeDecodeBinary(t, addr, new(AddressAndTime))
|
|
}
|
|
|
|
func TestEncodeDecodeAddressList(t *testing.T) {
|
|
var lenList uint8 = 4
|
|
addrList := NewAddressList(int(lenList))
|
|
for i := 0; i < int(lenList); i++ {
|
|
e, _ := net.ResolveTCPAddr("tcp", fmt.Sprintf("127.0.0.1:200%d", i))
|
|
addrList.Addrs[i] = NewAddressAndTime(e, time.Now())
|
|
}
|
|
|
|
testserdes.EncodeDecodeBinary(t, addrList, new(AddressList))
|
|
}
|