maddy/internal/storage/blob/fs/fs_test.go
fox.cpp 02924d8d4b
storage/blob: Implement usability test using go-imap-backend-tests and go-imap-sql
Blob storage would also benefit from stress
testing and concurrency consistency tests.

But these are things that are probably also
worth adding to go-imap-backend-tests instead.
2021-07-15 20:34:07 +03:00

19 lines
406 B
Go

package fs
import (
"os"
"testing"
"github.com/foxcpp/maddy/framework/module"
"github.com/foxcpp/maddy/internal/storage/blob"
"github.com/foxcpp/maddy/internal/testutils"
)
func TestFS(t *testing.T) {
blob.TestStore(t, func() module.BlobStore {
dir := testutils.Dir(t)
return &FSStore{instName: "test", root: dir}
}, func(store module.BlobStore) {
os.RemoveAll(store.(*FSStore).root)
})
}