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.
This commit is contained in:
fox.cpp 2021-07-15 18:06:58 +03:00
parent a1777db310
commit 02924d8d4b
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
7 changed files with 122 additions and 5 deletions

View file

@ -0,0 +1,13 @@
//+build !cgo no_sqlite3
package blob
import (
"testing"
"github.com/foxcpp/maddy/framework/module"
)
func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(module.BlobStore)) {
t.Skip("storage.blob tests require CGo and sqlite3")
}