mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
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.
19 lines
406 B
Go
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)
|
|
})
|
|
}
|