photoprism/internal/query/query_test.go

32 lines
472 B
Go
Raw Normal View History

package query
import (
"os"
"strings"
"testing"
"github.com/photoprism/photoprism/internal/entity"
"github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
log = logrus.StandardLogger()
log.SetLevel(logrus.DebugLevel)
dsn := os.Getenv("PHOTOPRISM_TEST_DSN")
if dsn == "" {
panic("database dsn is empty")
}
db := entity.InitTestDb(strings.Replace(dsn, "/photoprism", "/query", 1))
code := m.Run()
if db != nil {
db.Close()
}
os.Exit(code)
}