[#1686] blobstor: Add generic tests
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
This commit is contained in:
parent
9792e6a4ef
commit
5f95498364
1 changed files with 24 additions and 0 deletions
24
pkg/local_object_storage/blobstor/generic_test.go
Normal file
24
pkg/local_object_storage/blobstor/generic_test.go
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
package blobstor
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strconv"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/internal/storagetest"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGeneric(t *testing.T) {
|
||||||
|
defer func() { _ = os.RemoveAll(t.Name()) }()
|
||||||
|
|
||||||
|
var n int
|
||||||
|
newMetabase := func(t *testing.T) storagetest.Component {
|
||||||
|
n++
|
||||||
|
dir := filepath.Join(t.Name(), strconv.Itoa(n))
|
||||||
|
return New(
|
||||||
|
WithStorages(defaultStorages(dir, 128)))
|
||||||
|
}
|
||||||
|
|
||||||
|
storagetest.TestAll(t, newMetabase)
|
||||||
|
}
|
Loading…
Reference in a new issue