mirror of
https://github.com/kaspanet/kaspad.git
synced 2026-03-13 11:55:05 +00:00
* [NOD-570] Separate genesis variables for different netwroks * [NOD-570] Make Testnet genesis * [NOD-570] Make simnet and regtest genesis * [NOD-570] Remake devnet genesis * [NOD-570] Rename regNet -> regTest testnet->testNet * [NOD-570] Change network names to one word instead of camel case * [NOD-570] Change network names to one word instead of camel case * [NOD-570] Fix test names * [NOD-570] Fix TestGHOSTDAG Co-authored-by: Dan Aharoni <dereeno@protonmail.com>
98 lines
2.5 KiB
Go
98 lines
2.5 KiB
Go
package blockdag
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/dagconfig"
|
|
"github.com/kaspanet/kaspad/wire"
|
|
"testing"
|
|
)
|
|
|
|
func TestChainHeight(t *testing.T) {
|
|
// Create a new database and DAG instance to run tests against.
|
|
params := dagconfig.SimnetParams
|
|
params.K = 2
|
|
dag, teardownFunc, err := DAGSetup("TestChainHeight", Config{
|
|
DAGParams: ¶ms,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("TestChainHeight: Failed to setup DAG instance: %s", err)
|
|
}
|
|
defer teardownFunc()
|
|
|
|
block0 := dag.dagParams.GenesisBlock
|
|
block1 := prepareAndProcessBlock(t, dag, block0)
|
|
block2 := prepareAndProcessBlock(t, dag, block0)
|
|
block3 := prepareAndProcessBlock(t, dag, block0)
|
|
block4 := prepareAndProcessBlock(t, dag, block1, block2, block3)
|
|
block5 := prepareAndProcessBlock(t, dag, block1, block2, block3)
|
|
block6 := prepareAndProcessBlock(t, dag, block1, block2, block3)
|
|
block7 := prepareAndProcessBlock(t, dag, block0)
|
|
block8 := prepareAndProcessBlock(t, dag, block7)
|
|
block9 := prepareAndProcessBlock(t, dag, block8)
|
|
block10 := prepareAndProcessBlock(t, dag, block9, block6)
|
|
|
|
// Because nodes 7 & 8 were mined secretly, block10's selected
|
|
// parent will be block6, although block9 is higher. So in this
|
|
// case, block10.height and block10.chainHeight will be different
|
|
|
|
tests := []struct {
|
|
block *wire.MsgBlock
|
|
expectedChainHeight uint64
|
|
}{
|
|
{
|
|
block: block0,
|
|
expectedChainHeight: 0,
|
|
},
|
|
{
|
|
block: block1,
|
|
expectedChainHeight: 1,
|
|
},
|
|
{
|
|
block: block2,
|
|
expectedChainHeight: 1,
|
|
},
|
|
{
|
|
block: block3,
|
|
expectedChainHeight: 1,
|
|
},
|
|
{
|
|
block: block4,
|
|
expectedChainHeight: 2,
|
|
},
|
|
{
|
|
block: block5,
|
|
expectedChainHeight: 2,
|
|
},
|
|
{
|
|
block: block6,
|
|
expectedChainHeight: 2,
|
|
},
|
|
{
|
|
block: block7,
|
|
expectedChainHeight: 1,
|
|
},
|
|
{
|
|
block: block8,
|
|
expectedChainHeight: 2,
|
|
},
|
|
{
|
|
block: block9,
|
|
expectedChainHeight: 3,
|
|
},
|
|
{
|
|
block: block10,
|
|
expectedChainHeight: 3,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
node := dag.index.LookupNode(test.block.BlockHash())
|
|
if node.chainHeight != test.expectedChainHeight {
|
|
t.Errorf("block %s expected chain height %v but got %v", node, test.expectedChainHeight, node.chainHeight)
|
|
}
|
|
if calculateChainHeight(node) != test.expectedChainHeight {
|
|
t.Errorf("block %s expected calculated chain height %v but got %v", node, test.expectedChainHeight, node.chainHeight)
|
|
}
|
|
}
|
|
|
|
}
|