ledisdb/store/boltdb_test.go

40 lines
496 B
Go
Raw Normal View History

2014-08-02 11:16:16 +04:00
package store
import (
"github.com/siddontang/ledisdb/config"
2014-08-02 11:16:16 +04:00
"os"
"testing"
)
func newTestBoltDB() *DB {
cfg := new(config.Config)
cfg.DBName = "boltdb"
cfg.DataDir = "/tmp/testdb"
2014-08-02 11:16:16 +04:00
os.RemoveAll(getStorePath(cfg))
2014-08-02 11:16:16 +04:00
db, err := Open(cfg)
if err != nil {
println(err.Error())
panic(err)
}
return db
}
func TestBoltDB(t *testing.T) {
db := newTestBoltDB()
testStore(db, t)
db.Close()
}
func TestBoltDBTx(t *testing.T) {
db := newTestBoltDB()
testTx(db, t)
db.Close()
}