mirror of https://github.com/etcd-io/bbolt.git
*: fix gofmt errors and makefile test
parent
a4199f8f4d
commit
e39821f3de
15
Makefile
15
Makefile
|
@ -7,13 +7,16 @@ default: build
|
|||
race:
|
||||
@go test -v -race -test.run="TestSimulate_(100op|1000op)"
|
||||
|
||||
# go get honnef.co/go/tools/simple
|
||||
# go get honnef.co/go/tools/unused
|
||||
fmt:
|
||||
gosimple ./...
|
||||
unused ./...
|
||||
gofmt -l -s -d $(find -name \*.go)
|
||||
!(gofmt -l -s -d $(shell find . -name \*.go) | grep '[a-z]')
|
||||
|
||||
# go get honnef.co/go/tools/simple
|
||||
gosimple:
|
||||
gosimple ./...
|
||||
|
||||
# go get honnef.co/go/tools/unused
|
||||
unused:
|
||||
unused ./...
|
||||
|
||||
# go get github.com/kisielk/errcheck
|
||||
errcheck:
|
||||
|
@ -24,4 +27,4 @@ test:
|
|||
# Note: gets "program not an importable package" in out of path builds
|
||||
go test -v ./cmd/bolt
|
||||
|
||||
.PHONY: race fmt errcheck test
|
||||
.PHONY: race fmt errcheck test gosimple unused
|
||||
|
|
|
@ -14,14 +14,14 @@ import (
|
|||
func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) error {
|
||||
var t time.Time
|
||||
if timeout != 0 {
|
||||
t = time.Now()
|
||||
t = time.Now()
|
||||
}
|
||||
fd := db.file.Fd()
|
||||
flag := syscall.LOCK_NB
|
||||
if exclusive {
|
||||
flag |= syscall.LOCK_EX
|
||||
} else {
|
||||
flag |= syscall.LOCK_SH
|
||||
flag |= syscall.LOCK_SH
|
||||
}
|
||||
for {
|
||||
// Attempt to obtain an exclusive lock.
|
||||
|
@ -33,7 +33,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro
|
|||
}
|
||||
|
||||
// If we timed out then return an error.
|
||||
if timeout != 0 && time.Since(t) > timeout - flockRetryTimeout {
|
||||
if timeout != 0 && time.Since(t) > timeout-flockRetryTimeout {
|
||||
return ErrTimeout
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import (
|
|||
func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) error {
|
||||
var t time.Time
|
||||
if timeout != 0 {
|
||||
t = time.Now()
|
||||
t = time.Now()
|
||||
}
|
||||
fd := db.file.Fd()
|
||||
var lockType int16
|
||||
|
@ -34,7 +34,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro
|
|||
}
|
||||
|
||||
// If we timed out then return an error.
|
||||
if timeout != 0 && time.Since(t) > timeout - flockRetryTimeout {
|
||||
if timeout != 0 && time.Since(t) > timeout-flockRetryTimeout {
|
||||
return ErrTimeout
|
||||
}
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro
|
|||
|
||||
var t time.Time
|
||||
if timeout != 0 {
|
||||
t = time.Now()
|
||||
t = time.Now()
|
||||
}
|
||||
fd := db.file.Fd()
|
||||
var flag uint32 = flagLockFailImmediately
|
||||
|
@ -77,7 +77,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro
|
|||
}
|
||||
|
||||
// If we timed oumercit then return an error.
|
||||
if timeout != 0 && time.Since(t) > timeout - flockRetryTimeout {
|
||||
if timeout != 0 && time.Since(t) > timeout-flockRetryTimeout {
|
||||
return ErrTimeout
|
||||
}
|
||||
|
||||
|
|
|
@ -450,7 +450,7 @@ func TestDB_Open_ReadOnly(t *testing.T) {
|
|||
// Read from a read-only transaction.
|
||||
if err := readOnlyDB.View(func(tx *bolt.Tx) error {
|
||||
value := tx.Bucket([]byte("widgets")).Get([]byte("foo"))
|
||||
if bytes.Compare(value, []byte("bar")) != 0 {
|
||||
if !bytes.Equal(value, []byte("bar")) {
|
||||
t.Fatal("expect value 'bar', got", value)
|
||||
}
|
||||
return nil
|
||||
|
|
|
@ -65,83 +65,83 @@ func TestFreelist_releaseRange(t *testing.T) {
|
|||
}{
|
||||
{
|
||||
title: "Single pending in range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{1, 300}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{1, 300}},
|
||||
wantFree: []pgid{3},
|
||||
},
|
||||
{
|
||||
title: "Single pending with minimum end range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{1, 200}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{1, 200}},
|
||||
wantFree: []pgid{3},
|
||||
},
|
||||
{
|
||||
title: "Single pending outsize minimum end range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{1, 199}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{1, 199}},
|
||||
wantFree: nil,
|
||||
},
|
||||
{
|
||||
title: "Single pending with minimum begin range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{100, 300}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{100, 300}},
|
||||
wantFree: []pgid{3},
|
||||
},
|
||||
{
|
||||
title: "Single pending outside minimum begin range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{101, 300}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 100, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{101, 300}},
|
||||
wantFree: nil,
|
||||
},
|
||||
{
|
||||
title: "Single pending in minimum range",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 199, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{199, 200}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 199, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{199, 200}},
|
||||
wantFree: []pgid{3},
|
||||
},
|
||||
{
|
||||
title: "Single pending and read transaction at 199",
|
||||
pagesIn: []testPage{testPage{id: 3, n: 1, allocTxn: 199, freeTxn: 200}},
|
||||
releaseRanges: []testRange{testRange{100, 198}, testRange{200, 300}},
|
||||
pagesIn: []testPage{{id: 3, n: 1, allocTxn: 199, freeTxn: 200}},
|
||||
releaseRanges: []testRange{{100, 198}, {200, 300}},
|
||||
wantFree: nil,
|
||||
},
|
||||
{
|
||||
title: "Adjacent pending and read transactions at 199, 200",
|
||||
pagesIn: []testPage{
|
||||
testPage{id: 3, n: 1, allocTxn: 199, freeTxn: 200},
|
||||
testPage{id: 4, n: 1, allocTxn: 200, freeTxn: 201},
|
||||
{id: 3, n: 1, allocTxn: 199, freeTxn: 200},
|
||||
{id: 4, n: 1, allocTxn: 200, freeTxn: 201},
|
||||
},
|
||||
releaseRanges: []testRange{
|
||||
testRange{100, 198},
|
||||
testRange{200, 199}, // Simulate the ranges db.freePages might produce.
|
||||
testRange{201, 300},
|
||||
{100, 198},
|
||||
{200, 199}, // Simulate the ranges db.freePages might produce.
|
||||
{201, 300},
|
||||
},
|
||||
wantFree: nil,
|
||||
},
|
||||
{
|
||||
title: "Out of order ranges",
|
||||
pagesIn: []testPage{
|
||||
testPage{id: 3, n: 1, allocTxn: 199, freeTxn: 200},
|
||||
testPage{id: 4, n: 1, allocTxn: 200, freeTxn: 201},
|
||||
{id: 3, n: 1, allocTxn: 199, freeTxn: 200},
|
||||
{id: 4, n: 1, allocTxn: 200, freeTxn: 201},
|
||||
},
|
||||
releaseRanges: []testRange{
|
||||
testRange{201, 199},
|
||||
testRange{201, 200},
|
||||
testRange{200, 200},
|
||||
{201, 199},
|
||||
{201, 200},
|
||||
{200, 200},
|
||||
},
|
||||
wantFree: nil,
|
||||
},
|
||||
{
|
||||
title: "Multiple pending, read transaction at 150",
|
||||
pagesIn: []testPage{
|
||||
testPage{id: 3, n: 1, allocTxn: 100, freeTxn: 200},
|
||||
testPage{id: 4, n: 1, allocTxn: 100, freeTxn: 125},
|
||||
testPage{id: 5, n: 1, allocTxn: 125, freeTxn: 150},
|
||||
testPage{id: 6, n: 1, allocTxn: 125, freeTxn: 175},
|
||||
testPage{id: 7, n: 2, allocTxn: 150, freeTxn: 175},
|
||||
testPage{id: 9, n: 2, allocTxn: 175, freeTxn: 200},
|
||||
{id: 3, n: 1, allocTxn: 100, freeTxn: 200},
|
||||
{id: 4, n: 1, allocTxn: 100, freeTxn: 125},
|
||||
{id: 5, n: 1, allocTxn: 125, freeTxn: 150},
|
||||
{id: 6, n: 1, allocTxn: 125, freeTxn: 175},
|
||||
{id: 7, n: 2, allocTxn: 150, freeTxn: 175},
|
||||
{id: 9, n: 2, allocTxn: 175, freeTxn: 200},
|
||||
},
|
||||
releaseRanges: []testRange{testRange{50, 149}, testRange{151, 300}},
|
||||
releaseRanges: []testRange{{50, 149}, {151, 300}},
|
||||
wantFree: []pgid{4, 9},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue