kaspad/testing/integration/ibd_test.go
Ori Newman 2adb4f5d0f
Fix UTXO index (#1548)
* Add VirtualUTXODiff and VirtualParents to block insertion result

* Add GetVirtualUTXOs

* Add OnPruningPointUTXOSetOverrideHandler

* Add recovery to UTXO index

* Add UTXO set override notification

* Fix compilation error

* Fix iterators in UTXO index and fix TestUTXOIndex

* Change Dialing to DEBUG

* Change LogBlock location

* Rename StopNotify to StopNotifying

* Add sanity check

* Add comment

* Remove receiver from serialization functions

Co-authored-by: Elichai Turkel <elichai.turkel@gmail.com>
2021-02-23 16:51:51 +02:00

171 lines
4.8 KiB
Go

package integration
import (
"sync"
"testing"
"time"
"github.com/kaspanet/kaspad/domain/dagconfig"
"github.com/kaspanet/kaspad/app/appmessage"
)
func TestIBD(t *testing.T) {
const numBlocks = 100
syncer, syncee, _, teardown := standardSetup(t)
defer teardown()
for i := 0; i < numBlocks; i++ {
mineNextBlock(t, syncer)
}
blockAddedWG := sync.WaitGroup{}
blockAddedWG.Add(numBlocks)
receivedBlocks := 0
setOnBlockAddedHandler(t, syncee, func(_ *appmessage.BlockAddedNotificationMessage) {
receivedBlocks++
blockAddedWG.Done()
})
// We expect this to trigger IBD
connect(t, syncer, syncee)
select {
case <-time.After(defaultTimeout):
t.Fatalf("Timeout waiting for IBD to finish. Received %d blocks out of %d", receivedBlocks, numBlocks)
case <-ReceiveFromChanWhenDone(func() { blockAddedWG.Wait() }):
}
tip1Hash, err := syncer.rpcClient.GetSelectedTipHash()
if err != nil {
t.Fatalf("Error getting tip for syncer")
}
tip2Hash, err := syncee.rpcClient.GetSelectedTipHash()
if err != nil {
t.Fatalf("Error getting tip for syncee")
}
if tip1Hash.SelectedTipHash != tip2Hash.SelectedTipHash {
t.Errorf("Tips of syncer: '%s' and syncee '%s' are not equal", tip1Hash.SelectedTipHash, tip2Hash.SelectedTipHash)
}
}
// TestIBDWithPruning checks the IBD from a node with
// already pruned blocks.
func TestIBDWithPruning(t *testing.T) {
const numBlocks = 100
overrideDAGParams := dagconfig.SimnetParams
// This is done to make a pruning depth of 6 blocks
overrideDAGParams.FinalityDuration = 2 * overrideDAGParams.TargetTimePerBlock
overrideDAGParams.K = 0
harnesses, teardown := setupHarnesses(t, []*harnessParams{
{
p2pAddress: p2pAddress1,
rpcAddress: rpcAddress1,
miningAddress: miningAddress1,
miningAddressPrivateKey: miningAddress1PrivateKey,
overrideDAGParams: &overrideDAGParams,
},
{
p2pAddress: p2pAddress2,
rpcAddress: rpcAddress2,
miningAddress: miningAddress2,
miningAddressPrivateKey: miningAddress2PrivateKey,
overrideDAGParams: &overrideDAGParams,
utxoIndex: true,
},
})
defer teardown()
syncer, syncee := harnesses[0], harnesses[1]
// Let the syncee have two blocks that the syncer
// doesn't have to test a situation where
// the block locator will need more than one
// iteration to find the highest shared chain
// block.
const synceeOnlyBlocks = 2
for i := 0; i < synceeOnlyBlocks; i++ {
mineNextBlock(t, syncee)
}
for i := 0; i < numBlocks-1; i++ {
mineNextBlock(t, syncer)
}
utxoSetOverriden := make(chan struct{})
err := syncee.rpcClient.RegisterPruningPointUTXOSetNotifications(func() {
close(utxoSetOverriden)
})
if err != nil {
t.Fatalf("RegisterPruningPointUTXOSetNotifications: %+v", err)
}
// We expect this to trigger IBD
connect(t, syncer, syncee)
syncerBlockCountResponse, err := syncer.rpcClient.GetBlockCount()
if err != nil {
t.Fatalf("GetBlockCount: %+v", err)
}
if syncerBlockCountResponse.BlockCount == syncerBlockCountResponse.HeaderCount {
t.Fatalf("Expected some pruned blocks but found none")
}
ticker := time.NewTicker(time.Second)
defer ticker.Stop()
start := time.Now()
for range ticker.C {
if time.Since(start) > defaultTimeout {
t.Fatalf("Timeout waiting for IBD to finish.")
}
tip1Hash, err := syncer.rpcClient.GetSelectedTipHash()
if err != nil {
t.Fatalf("Error getting tip for syncer")
}
tip2Hash, err := syncee.rpcClient.GetSelectedTipHash()
if err != nil {
t.Fatalf("Error getting tip for syncee")
}
if tip1Hash.SelectedTipHash == tip2Hash.SelectedTipHash {
break
}
}
synceeBlockCountResponse, err := syncee.rpcClient.GetBlockCount()
if err != nil {
t.Fatalf("GetBlockCount: %+v", err)
}
if synceeBlockCountResponse.BlockCount != syncerBlockCountResponse.BlockCount+synceeOnlyBlocks+1 {
t.Fatalf("Because the syncee haven't pruned any of its old blocks, its expected "+
"block count is expected to be greater than the syncer by synceeOnlyBlocks(%d)+genesis, but instead "+
"we got syncer block count of %d and syncee block count of %d", synceeOnlyBlocks,
syncerBlockCountResponse.BlockCount,
synceeBlockCountResponse.BlockCount)
}
if synceeBlockCountResponse.HeaderCount != syncerBlockCountResponse.HeaderCount+synceeOnlyBlocks {
t.Fatalf("Because the syncer haven't synced from the syncee, its expected "+
"block count is expected to be smaller by synceeOnlyBlocks(%d), but instead "+
"we got syncer headers count of %d and syncee headers count of %d", synceeOnlyBlocks,
syncerBlockCountResponse.HeaderCount,
synceeBlockCountResponse.HeaderCount)
}
const timeout = 10 * time.Second
select {
case <-utxoSetOverriden:
case <-time.After(timeout):
t.Fatalf("expected pruning point UTXO set override notification, but it didn't get one after %s", timeout)
}
}