mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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:
parent
a1777db310
commit
02924d8d4b
7 changed files with 122 additions and 5 deletions
13
internal/storage/blob/test_blob_nosqlite.go
Normal file
13
internal/storage/blob/test_blob_nosqlite.go
Normal 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")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue