Upcoming changes constitute breaking public API changes to the chaincfg
module, therefore, this follows the process for introducing major API
breaks which consists of:
- Bump the major version in the go.mod of the affected module if not
already done since the last release tag
- Add a replacement to the go.mod in the main module if not already done
since the last release tag
- Update all imports in the repo to use the new major version as
necessary
- Make necessary modifications to allow all other modules to use the
new version in the same commit
- Repeat the process for any other modules the require a new major as a
result of consuming the new major(s)
101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
// Copyright (c) 2015-2016 The btcsuite developers
|
|
// Copyright (c) 2016-2020 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ffldb
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/decred/dcrd/chaincfg/v3"
|
|
"github.com/decred/dcrd/database/v2"
|
|
"github.com/decred/dcrd/dcrutil/v3"
|
|
)
|
|
|
|
// BenchmarkBlockHeader benchmarks how long it takes to load the mainnet genesis
|
|
// block header.
|
|
func BenchmarkBlockHeader(b *testing.B) {
|
|
// Start by creating a new database and populating it with the mainnet
|
|
// genesis block.
|
|
dbPath := filepath.Join(os.TempDir(), "ffldb-benchblkhdr")
|
|
_ = os.RemoveAll(dbPath)
|
|
db, err := database.Create("ffldb", dbPath, blockDataNet)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(dbPath)
|
|
defer db.Close()
|
|
mainNetParams := chaincfg.MainNetParams()
|
|
err = db.Update(func(tx database.Tx) error {
|
|
block := dcrutil.NewBlock(mainNetParams.GenesisBlock)
|
|
return tx.StoreBlock(block)
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
err = db.View(func(tx database.Tx) error {
|
|
blockHash := &mainNetParams.GenesisHash
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := tx.FetchBlockHeader(blockHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
// Don't benchmark teardown.
|
|
b.StopTimer()
|
|
}
|
|
|
|
// BenchmarkBlockHeader benchmarks how long it takes to load the mainnet genesis
|
|
// block.
|
|
func BenchmarkBlock(b *testing.B) {
|
|
// Start by creating a new database and populating it with the mainnet
|
|
// genesis block.
|
|
dbPath := filepath.Join(os.TempDir(), "ffldb-benchblk")
|
|
_ = os.RemoveAll(dbPath)
|
|
db, err := database.Create("ffldb", dbPath, blockDataNet)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(dbPath)
|
|
defer db.Close()
|
|
mainNetParams := chaincfg.MainNetParams()
|
|
err = db.Update(func(tx database.Tx) error {
|
|
block := dcrutil.NewBlock(mainNetParams.GenesisBlock)
|
|
return tx.StoreBlock(block)
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
err = db.View(func(tx database.Tx) error {
|
|
blockHash := &mainNetParams.GenesisHash
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := tx.FetchBlock(blockHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
// Don't benchmark teardown.
|
|
b.StopTimer()
|
|
}
|