ntfy/server/cache_sqlite_test.go
2021-12-07 11:45:15 -05:00

24 lines
459 B
Go

package server
import (
"path/filepath"
"testing"
)
func TestSqliteCache_AddMessage(t *testing.T) {
testCacheMessages(t, newSqliteTestCache(t))
}
func TestSqliteCache_MessagesTagsPrioAndTitle(t *testing.T) {
testCacheMessagesTagsPrioAndTitle(t, newSqliteTestCache(t))
}
func newSqliteTestCache(t *testing.T) cache {
filename := filepath.Join(t.TempDir(), "cache.db")
c, err := newSqliteCache(filename)
if err != nil {
t.Fatal(err)
}
return c
}