2014-01-12 05:51:01 +00:00
|
|
|
package bolt
|
|
|
|
|
|
|
|
import (
|
2014-01-13 15:25:56 +00:00
|
|
|
"io"
|
2014-01-12 05:51:01 +00:00
|
|
|
"io/ioutil"
|
2014-03-04 20:02:17 +00:00
|
|
|
"math/rand"
|
2014-01-12 05:51:01 +00:00
|
|
|
"os"
|
2014-02-21 16:49:15 +00:00
|
|
|
"strconv"
|
2014-03-04 20:02:17 +00:00
|
|
|
"strings"
|
2014-01-13 15:25:56 +00:00
|
|
|
"syscall"
|
2014-01-12 05:51:01 +00:00
|
|
|
"testing"
|
2014-01-13 15:25:56 +00:00
|
|
|
"time"
|
|
|
|
"unsafe"
|
2014-01-12 05:51:01 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2014-01-13 15:25:56 +00:00
|
|
|
"github.com/stretchr/testify/mock"
|
2014-01-12 05:51:01 +00:00
|
|
|
)
|
|
|
|
|
2014-02-26 23:32:05 +00:00
|
|
|
// Ensure that a database can be opened without error.
|
|
|
|
func TestOpen(t *testing.T) {
|
|
|
|
f, _ := ioutil.TempFile("", "bolt-")
|
|
|
|
path := f.Name()
|
|
|
|
f.Close()
|
|
|
|
os.Remove(path)
|
|
|
|
defer os.RemoveAll(path)
|
|
|
|
|
|
|
|
db, err := Open(path, 0666)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, db)
|
|
|
|
db.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that opening a database with a bad path returns an error.
|
|
|
|
func TestOpenBadPath(t *testing.T) {
|
|
|
|
db, err := Open("/../bad-path", 0666)
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Nil(t, db)
|
|
|
|
}
|
|
|
|
|
2014-01-12 22:30:09 +00:00
|
|
|
// Ensure that a database can be opened without error.
|
2014-01-12 05:51:01 +00:00
|
|
|
func TestDBOpen(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
err := db.Open(path, 0666)
|
|
|
|
assert.NoError(t, err)
|
2014-01-12 22:30:09 +00:00
|
|
|
assert.Equal(t, db.Path(), path)
|
2014-01-12 05:51:01 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-01-12 22:30:09 +00:00
|
|
|
// Ensure that the database returns an error if already open.
|
|
|
|
func TestDBReopen(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
db.Open(path, 0666)
|
|
|
|
err := db.Open(path, 0666)
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseOpen)
|
2014-01-12 22:30:09 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that the database returns an error if the file handle cannot be open.
|
|
|
|
func TestDBOpenFileError(t *testing.T) {
|
2014-01-13 15:25:56 +00:00
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
2014-01-12 22:30:09 +00:00
|
|
|
exp := &os.PathError{}
|
2014-01-13 15:25:56 +00:00
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return((*mockfile)(nil), exp)
|
2014-01-12 22:30:09 +00:00
|
|
|
err := db.Open(path, 0666)
|
|
|
|
assert.Equal(t, err, exp)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that the database returns an error if the meta file handle cannot be open.
|
|
|
|
func TestDBOpenMetaFileError(t *testing.T) {
|
2014-01-13 15:25:56 +00:00
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
2014-01-12 22:30:09 +00:00
|
|
|
exp := &os.PathError{}
|
2014-01-13 15:25:56 +00:00
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return(&mockfile{}, nil)
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_SYNC, os.FileMode(0666)).Return((*mockfile)(nil), exp)
|
2014-01-12 22:30:09 +00:00
|
|
|
err := db.Open(path, 0666)
|
|
|
|
assert.Equal(t, err, exp)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-01-13 15:25:56 +00:00
|
|
|
// Ensure that write errors to the meta file handler during initialization are returned.
|
|
|
|
func TestDBMetaInitWriteError(t *testing.T) {
|
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
2014-01-28 19:52:09 +00:00
|
|
|
// Mock the file system.
|
2014-01-13 15:25:56 +00:00
|
|
|
file, metafile := &mockfile{}, &mockfile{}
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return(file, nil)
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_SYNC, os.FileMode(0666)).Return(metafile, nil)
|
|
|
|
mockos.On("Getpagesize").Return(0x10000)
|
2014-01-28 19:52:09 +00:00
|
|
|
file.On("Stat").Return(&mockfileinfo{"", 0, 0666, time.Now(), false, nil}, nil)
|
2014-01-13 15:25:56 +00:00
|
|
|
metafile.On("WriteAt", mock.Anything, int64(0)).Return(0, io.ErrShortWrite)
|
2014-01-28 19:52:09 +00:00
|
|
|
|
|
|
|
// Open the database.
|
2014-01-13 15:25:56 +00:00
|
|
|
err := db.Open(path, 0666)
|
|
|
|
assert.Equal(t, err, io.ErrShortWrite)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that a database that is too small returns an error.
|
|
|
|
func TestDBFileTooSmall(t *testing.T) {
|
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
|
|
|
file, metafile := &mockfile{}, &mockfile{}
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return(file, nil)
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_SYNC, os.FileMode(0666)).Return(metafile, nil)
|
|
|
|
mockos.On("Getpagesize").Return(0x1000)
|
2014-01-28 19:52:09 +00:00
|
|
|
file.On("Stat").Return(&mockfileinfo{"", 0, 0666, time.Now(), false, nil}, nil)
|
2014-01-13 15:25:56 +00:00
|
|
|
metafile.On("WriteAt", mock.Anything, int64(0)).Return(0, nil)
|
|
|
|
err := db.Open(path, 0666)
|
|
|
|
assert.Equal(t, err, &Error{"file size too small", nil})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that stat errors during mmap get returned.
|
|
|
|
func TestDBMmapStatError(t *testing.T) {
|
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
|
|
|
exp := &os.PathError{}
|
|
|
|
file, metafile := &mockfile{}, &mockfile{}
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return(file, nil)
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_SYNC, os.FileMode(0666)).Return(metafile, nil)
|
|
|
|
mockos.On("Getpagesize").Return(0x1000)
|
|
|
|
file.On("ReadAt", mock.Anything, int64(0)).Return(0, nil)
|
|
|
|
file.On("Stat").Return((*mockfileinfo)(nil), exp)
|
|
|
|
metafile.On("WriteAt", mock.Anything, int64(0)).Return(0, nil)
|
2014-01-12 22:50:35 +00:00
|
|
|
err := db.Open(path, 0666)
|
2014-01-28 19:52:09 +00:00
|
|
|
assert.Equal(t, err, &Error{"stat error", exp})
|
2014-01-12 22:50:35 +00:00
|
|
|
})
|
|
|
|
}
|
2014-01-13 15:25:56 +00:00
|
|
|
|
|
|
|
// Ensure that corrupt meta0 page errors get returned.
|
|
|
|
func TestDBCorruptMeta0(t *testing.T) {
|
|
|
|
withMockDB(func(db *DB, mockos *mockos, mocksyscall *mocksyscall, path string) {
|
2014-01-30 03:35:58 +00:00
|
|
|
var m meta
|
|
|
|
m.magic = magic
|
2014-01-31 17:22:58 +00:00
|
|
|
m.version = version
|
2014-01-30 03:35:58 +00:00
|
|
|
m.pageSize = 0x8000
|
|
|
|
|
2014-01-28 19:52:09 +00:00
|
|
|
// Create a file with bad magic.
|
2014-01-13 15:25:56 +00:00
|
|
|
b := make([]byte, 0x10000)
|
|
|
|
p0, p1 := (*page)(unsafe.Pointer(&b[0x0000])), (*page)(unsafe.Pointer(&b[0x8000]))
|
2014-01-30 03:35:58 +00:00
|
|
|
p0.meta().magic = 0
|
2014-01-31 17:22:58 +00:00
|
|
|
p0.meta().version = version
|
2014-01-30 03:35:58 +00:00
|
|
|
p1.meta().magic = magic
|
2014-01-31 17:22:58 +00:00
|
|
|
p1.meta().version = version
|
2014-01-13 15:25:56 +00:00
|
|
|
|
2014-01-28 19:52:09 +00:00
|
|
|
// Mock file access.
|
2014-01-13 15:25:56 +00:00
|
|
|
file, metafile := &mockfile{}, &mockfile{}
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_CREATE, os.FileMode(0666)).Return(file, nil)
|
|
|
|
mockos.On("OpenFile", path, os.O_RDWR|os.O_SYNC, os.FileMode(0666)).Return(metafile, nil)
|
|
|
|
mockos.On("Getpagesize").Return(0x10000)
|
|
|
|
file.On("ReadAt", mock.Anything, int64(0)).Return(0, nil)
|
|
|
|
file.On("Stat").Return(&mockfileinfo{"", 0x10000, 0666, time.Now(), false, nil}, nil)
|
|
|
|
metafile.On("WriteAt", mock.Anything, int64(0)).Return(0, nil)
|
|
|
|
mocksyscall.On("Mmap", 0, int64(0), 0x10000, syscall.PROT_READ, syscall.MAP_SHARED).Return(b, nil)
|
2014-01-28 19:52:09 +00:00
|
|
|
|
|
|
|
// Open the database.
|
2014-01-13 15:25:56 +00:00
|
|
|
err := db.Open(path, 0666)
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, &Error{"meta error", ErrInvalid})
|
2014-01-13 15:25:56 +00:00
|
|
|
})
|
|
|
|
}
|
2014-01-12 22:50:35 +00:00
|
|
|
|
2014-01-13 17:35:04 +00:00
|
|
|
// Ensure that a database cannot open a transaction when it's not open.
|
2014-03-09 00:01:49 +00:00
|
|
|
func TestDBTxErrDatabaseNotOpen(t *testing.T) {
|
2014-01-13 17:35:04 +00:00
|
|
|
withDB(func(db *DB, path string) {
|
2014-03-09 00:01:49 +00:00
|
|
|
txn, err := db.Tx()
|
2014-01-13 17:35:04 +00:00
|
|
|
assert.Nil(t, txn)
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
2014-01-13 17:35:04 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-16 06:38:03 +00:00
|
|
|
// Ensure that a delete on a missing bucket returns an error.
|
|
|
|
func TestDBDeleteFromMissingBucket(t *testing.T) {
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
err := db.Delete("widgets", []byte("foo"))
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrBucketNotFound)
|
2014-02-16 06:38:03 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-15 21:54:45 +00:00
|
|
|
// Ensure a database can provide a transactional block.
|
2014-03-09 00:01:49 +00:00
|
|
|
func TestDBTxBlock(t *testing.T) {
|
2014-02-15 21:54:45 +00:00
|
|
|
withOpenDB(func(db *DB, path string) {
|
2014-03-09 00:01:49 +00:00
|
|
|
err := db.Do(func(txn *RWTx) error {
|
2014-02-15 21:54:45 +00:00
|
|
|
txn.CreateBucket("widgets")
|
2014-02-23 06:08:30 +00:00
|
|
|
b := txn.Bucket("widgets")
|
|
|
|
b.Put([]byte("foo"), []byte("bar"))
|
|
|
|
b.Put([]byte("baz"), []byte("bat"))
|
|
|
|
b.Delete([]byte("foo"))
|
2014-02-15 21:54:45 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
value, _ := db.Get("widgets", []byte("foo"))
|
|
|
|
assert.Nil(t, value)
|
|
|
|
value, _ = db.Get("widgets", []byte("baz"))
|
|
|
|
assert.Equal(t, value, []byte("bat"))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-16 06:38:03 +00:00
|
|
|
// Ensure a closed database returns an error while running a transaction block
|
2014-03-09 00:01:49 +00:00
|
|
|
func TestDBTxBlockWhileClosed(t *testing.T) {
|
2014-02-16 06:38:03 +00:00
|
|
|
withDB(func(db *DB, path string) {
|
2014-03-09 00:01:49 +00:00
|
|
|
err := db.Do(func(txn *RWTx) error {
|
2014-02-16 06:38:03 +00:00
|
|
|
txn.CreateBucket("widgets")
|
|
|
|
return nil
|
|
|
|
})
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
2014-02-16 06:38:03 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-16 20:51:35 +00:00
|
|
|
// Ensure a database returns an error when trying to attempt a for each on a missing bucket.
|
|
|
|
func TestDBForEachBucketNotFound(t *testing.T) {
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
err := db.ForEach("widgets", func(k, v []byte) error { return nil })
|
|
|
|
assert.Equal(t, err, ErrBucketNotFound)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure a closed database returns an error when executing a for each.
|
|
|
|
func TestDBForEachWhileClosed(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
err := db.ForEach("widgets", func(k, v []byte) error { return nil })
|
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-16 06:38:03 +00:00
|
|
|
// Ensure a closed database returns an error when finding a bucket.
|
|
|
|
func TestDBBucketWhileClosed(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
b, err := db.Bucket("widgets")
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
2014-02-16 06:38:03 +00:00
|
|
|
assert.Nil(t, b)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure a closed database returns an error when finding all buckets.
|
|
|
|
func TestDBBucketsWhileClosed(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
b, err := db.Buckets()
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
2014-02-16 06:38:03 +00:00
|
|
|
assert.Nil(t, b)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure a closed database returns an error when getting a key.
|
|
|
|
func TestDBGetWhileClosed(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
value, err := db.Get("widgets", []byte("foo"))
|
2014-02-16 19:18:44 +00:00
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
2014-02-16 06:38:03 +00:00
|
|
|
assert.Nil(t, value)
|
|
|
|
})
|
2014-02-09 22:52:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 06:08:30 +00:00
|
|
|
// Ensure that an error is returned when inserting into a bucket that doesn't exist.
|
|
|
|
func TestDBPutBucketNotFound(t *testing.T) {
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
err := db.Put("widgets", []byte("foo"), []byte("bar"))
|
|
|
|
assert.Equal(t, err, ErrBucketNotFound)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-09 22:52:19 +00:00
|
|
|
// Ensure that the database can be copied to a file path.
|
|
|
|
func TestDBCopyFile(t *testing.T) {
|
2014-02-16 06:38:03 +00:00
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
db.CreateBucket("widgets")
|
|
|
|
db.Put("widgets", []byte("foo"), []byte("bar"))
|
|
|
|
db.Put("widgets", []byte("baz"), []byte("bat"))
|
|
|
|
assert.NoError(t, os.RemoveAll("/tmp/bolt.copyfile.db"))
|
|
|
|
assert.NoError(t, db.CopyFile("/tmp/bolt.copyfile.db", 0666))
|
2014-02-09 22:52:19 +00:00
|
|
|
|
2014-02-16 06:38:03 +00:00
|
|
|
var db2 DB
|
|
|
|
assert.NoError(t, db2.Open("/tmp/bolt.copyfile.db", 0666))
|
|
|
|
defer db2.Close()
|
|
|
|
|
|
|
|
value, _ := db2.Get("widgets", []byte("foo"))
|
|
|
|
assert.Equal(t, value, []byte("bar"))
|
|
|
|
value, _ = db2.Get("widgets", []byte("baz"))
|
|
|
|
assert.Equal(t, value, []byte("bat"))
|
|
|
|
})
|
2014-02-09 22:52:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-21 16:49:15 +00:00
|
|
|
// Ensure the database can return stats about itself.
|
|
|
|
func TestDBStat(t *testing.T) {
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
2014-03-09 00:01:49 +00:00
|
|
|
db.Do(func(txn *RWTx) error {
|
2014-02-21 16:49:15 +00:00
|
|
|
txn.CreateBucket("widgets")
|
2014-02-23 06:08:30 +00:00
|
|
|
b := txn.Bucket("widgets")
|
2014-02-21 16:49:15 +00:00
|
|
|
for i := 0; i < 10000; i++ {
|
2014-02-23 06:08:30 +00:00
|
|
|
b.Put([]byte(strconv.Itoa(i)), []byte(strconv.Itoa(i)))
|
2014-02-21 16:49:15 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
// Delete some keys.
|
|
|
|
db.Delete("widgets", []byte("10"))
|
|
|
|
db.Delete("widgets", []byte("1000"))
|
|
|
|
|
|
|
|
// Open some readers.
|
2014-03-09 00:01:49 +00:00
|
|
|
t0, _ := db.Tx()
|
|
|
|
t1, _ := db.Tx()
|
|
|
|
t2, _ := db.Tx()
|
2014-02-23 05:54:54 +00:00
|
|
|
t2.Close()
|
2014-02-21 16:49:15 +00:00
|
|
|
|
|
|
|
// Obtain stats.
|
|
|
|
stat, err := db.Stat()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, stat.PageCount, 128)
|
|
|
|
assert.Equal(t, stat.FreePageCount, 2)
|
|
|
|
assert.Equal(t, stat.PageSize, 4096)
|
|
|
|
assert.Equal(t, stat.MmapSize, 4194304)
|
2014-03-09 00:01:49 +00:00
|
|
|
assert.Equal(t, stat.TxCount, 2)
|
2014-02-21 16:49:15 +00:00
|
|
|
|
|
|
|
// Close readers.
|
2014-02-23 05:54:54 +00:00
|
|
|
t0.Close()
|
|
|
|
t1.Close()
|
2014-02-21 16:49:15 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the getting stats on a closed database returns an error.
|
|
|
|
func TestDBStatWhileClosed(t *testing.T) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
stat, err := db.Stat()
|
|
|
|
assert.Equal(t, err, ErrDatabaseNotOpen)
|
|
|
|
assert.Nil(t, stat)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-02-09 22:52:19 +00:00
|
|
|
// Ensure that an error is returned when a database write fails.
|
|
|
|
func TestDBWriteFail(t *testing.T) {
|
|
|
|
t.Skip("pending") // TODO(benbjohnson)
|
|
|
|
}
|
|
|
|
|
2014-02-11 19:16:12 +00:00
|
|
|
// Ensure that the mmap grows appropriately.
|
|
|
|
func TestDBMmapSize(t *testing.T) {
|
|
|
|
db := &DB{pageSize: 4096}
|
|
|
|
assert.Equal(t, db.mmapSize(0), minMmapSize)
|
|
|
|
assert.Equal(t, db.mmapSize(16384), minMmapSize)
|
|
|
|
assert.Equal(t, db.mmapSize(minMmapSize-1), minMmapSize)
|
|
|
|
assert.Equal(t, db.mmapSize(minMmapSize), minMmapSize*2)
|
|
|
|
assert.Equal(t, db.mmapSize(10000000), 20000768)
|
|
|
|
assert.Equal(t, db.mmapSize((1<<30)-1), 2147483648)
|
|
|
|
assert.Equal(t, db.mmapSize(1<<30), 1<<31)
|
|
|
|
}
|
|
|
|
|
2014-02-28 22:13:00 +00:00
|
|
|
// Ensure that a database can return a string representation of itself.
|
|
|
|
func TestDBString(t *testing.T) {
|
|
|
|
db := &DB{path: "/tmp/foo"}
|
|
|
|
assert.Equal(t, db.String(), `DB<"/tmp/foo">`)
|
|
|
|
assert.Equal(t, db.GoString(), `bolt.DB{path:"/tmp/foo"}`)
|
|
|
|
}
|
|
|
|
|
2014-03-04 20:02:17 +00:00
|
|
|
// Benchmark the performance of single put transactions in random order.
|
|
|
|
func BenchmarkDBPutSequential(b *testing.B) {
|
|
|
|
value := []byte(strings.Repeat("0", 64))
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
db.CreateBucket("widgets")
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
db.Put("widgets", []byte(strconv.Itoa(i)), value)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Benchmark the performance of single put transactions in random order.
|
|
|
|
func BenchmarkDBPutRandom(b *testing.B) {
|
|
|
|
indexes := rand.Perm(b.N)
|
|
|
|
value := []byte(strings.Repeat("0", 64))
|
|
|
|
withOpenDB(func(db *DB, path string) {
|
|
|
|
db.CreateBucket("widgets")
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
db.Put("widgets", []byte(strconv.Itoa(indexes[i])), value)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-01-12 22:30:09 +00:00
|
|
|
// withDB executes a function with a database reference.
|
2014-01-12 05:51:01 +00:00
|
|
|
func withDB(fn func(*DB, string)) {
|
|
|
|
f, _ := ioutil.TempFile("", "bolt-")
|
|
|
|
path := f.Name()
|
|
|
|
f.Close()
|
|
|
|
os.Remove(path)
|
|
|
|
defer os.RemoveAll(path)
|
|
|
|
|
2014-02-14 15:32:42 +00:00
|
|
|
var db DB
|
|
|
|
fn(&db, path)
|
2014-01-12 05:51:01 +00:00
|
|
|
}
|
2014-01-12 22:30:09 +00:00
|
|
|
|
|
|
|
// withMockDB executes a function with a database reference and a mock filesystem.
|
2014-01-13 15:25:56 +00:00
|
|
|
func withMockDB(fn func(*DB, *mockos, *mocksyscall, string)) {
|
|
|
|
os, syscall := &mockos{}, &mocksyscall{}
|
2014-02-14 15:32:42 +00:00
|
|
|
var db DB
|
2014-01-12 22:30:09 +00:00
|
|
|
db.os = os
|
2014-01-13 15:25:56 +00:00
|
|
|
db.syscall = syscall
|
2014-02-14 15:32:42 +00:00
|
|
|
fn(&db, os, syscall, "/mock/db")
|
2014-01-12 22:30:09 +00:00
|
|
|
}
|
2014-01-13 17:35:04 +00:00
|
|
|
|
|
|
|
// withOpenDB executes a function with an already opened database.
|
|
|
|
func withOpenDB(fn func(*DB, string)) {
|
|
|
|
withDB(func(db *DB, path string) {
|
|
|
|
if err := db.Open(path, 0666); err != nil {
|
|
|
|
panic("cannot open db: " + err.Error())
|
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
fn(db, path)
|
|
|
|
})
|
|
|
|
}
|
2014-02-16 04:50:34 +00:00
|
|
|
|
|
|
|
func trunc(b []byte, length int) []byte {
|
|
|
|
if length < len(b) {
|
|
|
|
return b[:length]
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|