-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,97 @@ | ||
package bitcoin_test | ||
|
||
import ( | ||
"bytes" | ||
"encoding/base64" | ||
"encoding/hex" | ||
"encoding/json" | ||
"os" | ||
"testing" | ||
|
||
"github.com/btcsuite/btcd/btcjson" | ||
"github.com/btcsuite/btcd/wire" | ||
"github.com/btcsuite/btcutil" | ||
"github.com/stretchr/testify/require" | ||
"github.com/zeta-chain/zetacore/common/bitcoin" | ||
) | ||
|
||
type Block struct { | ||
TssAddress string `json:"tssAddress"` | ||
Height int `json:"height"` | ||
Nonce uint64 `json:"nonce"` | ||
OutTxid string `json:"outTxid"` | ||
HeaderBase64 string `json:"headerBase64"` | ||
BlockBase64 string `json:"blockBase64"` | ||
} | ||
|
||
type Blocks struct { | ||
Blocks []Block `json:"blocks"` | ||
} | ||
|
||
func TestBitcoinMerkleProof(t *testing.T) { | ||
blocks := LoadTestBlocks(t) | ||
|
||
for _, b := range blocks.Blocks { | ||
// Deserialize the header bytes from base64 | ||
headerBytes, err := base64.StdEncoding.DecodeString(b.HeaderBase64) | ||
require.NoError(t, err) | ||
header := unmarshalHeader(t, headerBytes) | ||
|
||
// Deserialize the block bytes from base64 | ||
blockBytes, err := base64.StdEncoding.DecodeString(b.BlockBase64) | ||
require.NoError(t, err) | ||
blockVerbose := &btcjson.GetBlockVerboseTxResult{} | ||
err = json.Unmarshal(blockBytes, blockVerbose) | ||
require.NoError(t, err) | ||
|
||
// Validate block | ||
validateBitcoinBlock(t, header, headerBytes, blockVerbose, b.OutTxid, b.TssAddress, b.Nonce) | ||
} | ||
} | ||
func LoadTestBlocks(t *testing.T) Blocks { | ||
file, err := os.Open("../testdata/test_blocks.json") | ||
require.NoError(t, err) | ||
defer file.Close() | ||
|
||
// Decode the JSON into the data struct | ||
var blocks Blocks | ||
err = json.NewDecoder(file).Decode(&blocks) | ||
require.NoError(t, err) | ||
|
||
return blocks | ||
} | ||
|
||
func unmarshalHeader(t *testing.T, headerBytes []byte) *wire.BlockHeader { | ||
var header wire.BlockHeader | ||
err := header.Deserialize(bytes.NewReader(headerBytes)) | ||
require.NoError(t, err) | ||
return &header | ||
} | ||
|
||
func validateBitcoinBlock(t *testing.T, header *wire.BlockHeader, headerBytes []byte, blockVerbose *btcjson.GetBlockVerboseTxResult, outTxid string, tssAddress string, nonce uint64) { | ||
// Deserialization should work for each transaction in the block | ||
txns := []*btcutil.Tx{} | ||
for _, res := range blockVerbose.Tx { | ||
txBytes, err := hex.DecodeString(res.Hex) | ||
require.NoError(t, err) | ||
tx, err := btcutil.NewTxFromBytes(txBytes) | ||
require.NoError(t, err) | ||
txns = append(txns, tx) | ||
} | ||
|
||
// Build a Merkle tree from the transaction hashes and verify each transaction | ||
mk := bitcoin.NewMerkle(txns) | ||
for i, tx := range txns { | ||
path, index, err := mk.BuildMerkleProof(i) | ||
require.NoError(t, err) | ||
|
||
// True proof should verify | ||
pass := bitcoin.Prove(*tx.Hash(), header.MerkleRoot, path, index) | ||
require.True(t, pass) | ||
|
||
// Fake proof should not verify | ||
fakeIndex := index ^ 0xffffffff // flip all bits | ||
pass = bitcoin.Prove(*tx.Hash(), header.MerkleRoot, path, fakeIndex) | ||
require.False(t, pass) | ||
} | ||
} |