mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-09 05:14:15 +01:00
24 lines
459 B
Go
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
|
||
|
}
|