ledisdb/store/mdb_test.go

42 lines
522 B
Go
Raw Normal View History

2014-07-28 05:25:40 +04:00
package store
import (
"github.com/siddontang/ledisdb/config"
2014-07-28 05:25:40 +04:00
"os"
2014-07-28 05:25:40 +04:00
"testing"
)
func newTestLMDB() *DB {
cfg := new(config.Config)
cfg.DBName = "lmdb"
cfg.DataDir = "/tmp/testdb"
cfg.LMDB.MapSize = 10 * 1024 * 1024
2014-07-28 05:25:40 +04:00
os.RemoveAll(getStorePath(cfg))
2014-07-28 05:25:40 +04:00
db, err := Open(cfg)
if err != nil {
println(err.Error())
panic(err)
}
return db
}
func TestLMDB(t *testing.T) {
db := newTestLMDB()
testStore(db, t)
db.Close()
}
2014-07-29 13:29:51 +04:00
func TestLMDBTx(t *testing.T) {
db := newTestLMDB()
testTx(db, t)
db.Close()
}