mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-08-13 22:23:15 +00:00

* Avoid creating the chain iterator if high hash is actually low hash * Always use iterator in nextPruningPointAndCandidateByBlockHash * Initial failing test * Minimal failing test + some comments * go lint * Add simpler tests with two different errors * Missed some error checks * Minor * A workaround patch for preventing the missing utxo child diff bug * Make sure we fully resolve virtual * Move ResolveVirtualWithMaxParam to test consensus * Mark virtual not updated and loop in batches * Refactor: remove VirtualChangeSet from functions return values * Remove workaround comments * If block has no body, virtual is still considered updated * Remove special error ErrReverseUTXODiffsUTXODiffChildNotFound Co-authored-by: Ori Newman <orinewman1@gmail.com>
86 lines
2.6 KiB
Go
86 lines
2.6 KiB
Go
package pastmediantimemanager_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
|
|
"github.com/kaspanet/kaspad/domain/consensus"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/consensushashing"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/testutils"
|
|
)
|
|
|
|
func TestPastMedianTime(t *testing.T) {
|
|
testutils.ForAllNets(t, true, func(t *testing.T, consensusConfig *consensus.Config) {
|
|
factory := consensus.NewFactory()
|
|
tc, tearDown, err := factory.NewTestConsensus(consensusConfig, "TestUpdateReindexRoot")
|
|
if err != nil {
|
|
t.Fatalf("NewTestConsensus: %+v", err)
|
|
}
|
|
defer tearDown(false)
|
|
|
|
numBlocks := uint32(300)
|
|
blockHashes := make([]*externalapi.DomainHash, numBlocks)
|
|
blockHashes[0] = consensusConfig.GenesisHash
|
|
blockTime := consensusConfig.GenesisBlock.Header.TimeInMilliseconds()
|
|
for i := uint32(1); i < numBlocks; i++ {
|
|
blockTime += 1000
|
|
block, _, err := tc.BuildBlockWithParents([]*externalapi.DomainHash{blockHashes[i-1]}, nil, nil)
|
|
if err != nil {
|
|
t.Fatalf("BuildBlockWithParents: %s", err)
|
|
}
|
|
|
|
newHeader := block.Header.ToMutable()
|
|
newHeader.SetTimeInMilliseconds(blockTime)
|
|
block.Header = newHeader.ToImmutable()
|
|
err = tc.ValidateAndInsertBlock(block, true)
|
|
if err != nil {
|
|
t.Fatalf("ValidateAndInsertBlock: %+v", err)
|
|
}
|
|
|
|
blockHashes[i] = consensushashing.BlockHash(block)
|
|
}
|
|
|
|
tests := []struct {
|
|
blockNumber uint32
|
|
expectedMillisecondsSinceGenesis int64
|
|
}{
|
|
{
|
|
blockNumber: 263,
|
|
expectedMillisecondsSinceGenesis: 132000,
|
|
},
|
|
{
|
|
blockNumber: 271,
|
|
expectedMillisecondsSinceGenesis: 139000,
|
|
},
|
|
{
|
|
blockNumber: 241,
|
|
expectedMillisecondsSinceGenesis: 121000,
|
|
},
|
|
{
|
|
blockNumber: 5,
|
|
expectedMillisecondsSinceGenesis: 3000,
|
|
},
|
|
}
|
|
|
|
stagingArea := model.NewStagingArea()
|
|
for _, test := range tests {
|
|
pastMedianTime, err := tc.PastMedianTimeManager().PastMedianTime(stagingArea, blockHashes[test.blockNumber])
|
|
if err != nil {
|
|
t.Fatalf("PastMedianTime: %s", err)
|
|
}
|
|
|
|
millisecondsSinceGenesis := pastMedianTime -
|
|
consensusConfig.GenesisBlock.Header.TimeInMilliseconds()
|
|
|
|
if millisecondsSinceGenesis != test.expectedMillisecondsSinceGenesis {
|
|
t.Errorf("TestCalcPastMedianTime: expected past median time of block %v to be %v milliseconds "+
|
|
"from genesis but got %v",
|
|
test.blockNumber, test.expectedMillisecondsSinceGenesis, millisecondsSinceGenesis)
|
|
}
|
|
}
|
|
})
|
|
|
|
}
|