mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
36 lines
624 B
Go
36 lines
624 B
Go
|
package db
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
|
||
|
cmn "github.com/tendermint/tendermint/libs/common"
|
||
|
)
|
||
|
|
||
|
func TestBoltDBNewBoltDB(t *testing.T) {
|
||
|
name := fmt.Sprintf("test_%x", cmn.RandStr(12))
|
||
|
dir := os.TempDir()
|
||
|
defer cleanupDBDir(dir, name)
|
||
|
|
||
|
db, err := NewBoltDB(name, dir)
|
||
|
require.NoError(t, err)
|
||
|
db.Close()
|
||
|
}
|
||
|
|
||
|
func BenchmarkBoltDBRandomReadsWrites(b *testing.B) {
|
||
|
name := fmt.Sprintf("test_%x", cmn.RandStr(12))
|
||
|
db, err := NewBoltDB(name, "")
|
||
|
if err != nil {
|
||
|
b.Fatal(err)
|
||
|
}
|
||
|
defer func() {
|
||
|
db.Close()
|
||
|
cleanupDBDir("", name)
|
||
|
}()
|
||
|
|
||
|
benchmarkRandomReadsWrites(b, db)
|
||
|
}
|