From 482a7e7f2f1b3314f3b96bf570e236d89aa9c3e8 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Mon, 22 Aug 2022 14:43:09 +0300 Subject: [PATCH] [#1686] pilorama: Add generic tests Signed-off-by: Evgenii Stratonikov --- .../pilorama/generic_test.go | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkg/local_object_storage/pilorama/generic_test.go diff --git a/pkg/local_object_storage/pilorama/generic_test.go b/pkg/local_object_storage/pilorama/generic_test.go new file mode 100644 index 000000000..2e2280641 --- /dev/null +++ b/pkg/local_object_storage/pilorama/generic_test.go @@ -0,0 +1,24 @@ +package pilorama + +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 + newPilorama := func(t *testing.T) storagetest.Component { + n++ + dir := filepath.Join(t.Name(), strconv.Itoa(n)) + return NewBoltForest( + WithPath(dir)) + } + + storagetest.TestAll(t, newPilorama) +}