25 lines
465 B
Go
25 lines
465 B
Go
|
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)
|
||
|
}
|