kaspad/domain/consensus/processes/dagtopologymanager/dagtopologymanager_external_test.go
Svarog 49e0a2a2e7
Add basic support for archival node (#1370)
* Add archival cli flag

* If --archival was activated - don't delete anything

* Fix tests

* Still change block status to StatusHeaderOnly even in archival nodes
2021-01-10 10:25:15 +02:00

54 lines
1.6 KiB
Go

package dagtopologymanager_test
import (
"testing"
"github.com/kaspanet/kaspad/domain/consensus"
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
"github.com/kaspanet/kaspad/domain/consensus/utils/testutils"
"github.com/kaspanet/kaspad/domain/dagconfig"
)
func TestIsAncestorOf(t *testing.T) {
testutils.ForAllNets(t, true, func(t *testing.T, params *dagconfig.Params) {
factory := consensus.NewFactory()
tc, tearDown, err := factory.NewTestConsensus(params, false, "TestIsAncestorOf")
if err != nil {
t.Fatalf("NewTestConsensus: %s", err)
}
defer tearDown(false)
// Add a chain of two blocks above the genesis. This will be the
// selected parent chain.
blockA, _, err := tc.AddBlock([]*externalapi.DomainHash{params.GenesisHash}, nil, nil)
if err != nil {
t.Fatalf("AddBlock: %+v", err)
}
blockB, _, err := tc.AddBlock([]*externalapi.DomainHash{blockA}, nil, nil)
if err != nil {
t.Fatalf("AddBlock: %s", err)
}
// Add another block above the genesis
blockC, _, err := tc.AddBlock([]*externalapi.DomainHash{params.GenesisHash}, nil, nil)
if err != nil {
t.Fatalf("AddBlock: %s", err)
}
// Add a block whose parents are the two tips
blockD, _, err := tc.AddBlock([]*externalapi.DomainHash{blockB, blockC}, nil, nil)
if err != nil {
t.Fatalf("AddBlock: %s", err)
}
isAncestorOf, err := tc.DAGTopologyManager().IsAncestorOf(blockC, blockD)
if err != nil {
t.Fatalf("IsAncestorOf: %s", err)
}
if !isAncestorOf {
t.Fatalf("TestIsInPast: node C is unexpectedly not the past of node D")
}
})
}