2020-01-14 12:32:07 +00:00
|
|
|
package block
|
2018-02-07 14:16:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
2020-03-26 14:43:24 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/internal/testserdes"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2019-09-16 09:07:06 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-02-07 14:16:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHeaderEncodeDecode(t *testing.T) {
|
2020-01-15 08:29:50 +00:00
|
|
|
header := Header{Base: Base{
|
2018-02-07 14:16:50 +00:00
|
|
|
Version: 0,
|
2019-08-23 15:50:45 +00:00
|
|
|
PrevHash: hash.Sha256([]byte("prevhash")),
|
|
|
|
MerkleRoot: hash.Sha256([]byte("merkleroot")),
|
2020-04-21 11:26:57 +00:00
|
|
|
Timestamp: uint64(time.Now().UTC().Unix()),
|
2018-02-07 14:16:50 +00:00
|
|
|
Index: 3445,
|
|
|
|
ConsensusData: 394949,
|
|
|
|
NextConsensus: util.Uint160{},
|
2019-12-09 14:14:10 +00:00
|
|
|
Script: transaction.Witness{
|
2018-02-07 14:16:50 +00:00
|
|
|
InvocationScript: []byte{0x10},
|
|
|
|
VerificationScript: []byte{0x11},
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
|
2020-03-26 14:43:24 +00:00
|
|
|
_ = header.Hash()
|
2018-02-07 14:16:50 +00:00
|
|
|
headerDecode := &Header{}
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, &header, headerDecode)
|
|
|
|
|
2019-09-16 09:07:06 +00:00
|
|
|
assert.Equal(t, header.Version, headerDecode.Version, "expected both versions to be equal")
|
|
|
|
assert.Equal(t, header.PrevHash, headerDecode.PrevHash, "expected both prev hashes to be equal")
|
|
|
|
assert.Equal(t, header.MerkleRoot, headerDecode.MerkleRoot, "expected both merkle roots to be equal")
|
|
|
|
assert.Equal(t, header.Index, headerDecode.Index, "expected both indexes to be equal")
|
|
|
|
assert.Equal(t, header.ConsensusData, headerDecode.ConsensusData, "expected both consensus data fields to be equal")
|
|
|
|
assert.Equal(t, header.NextConsensus, headerDecode.NextConsensus, "expected both next consensus fields to be equal")
|
|
|
|
assert.Equal(t, header.Script.InvocationScript, headerDecode.Script.InvocationScript, "expected equal invocation scripts")
|
|
|
|
assert.Equal(t, header.Script.VerificationScript, headerDecode.Script.VerificationScript, "expected equal verification scripts")
|
2018-02-07 14:16:50 +00:00
|
|
|
}
|