mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
44 lines
954 B
Go
44 lines
954 B
Go
package server
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/photoprism/get"
|
|
"github.com/photoprism/photoprism/internal/server/limiter"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
// Init test logger.
|
|
log = logrus.StandardLogger()
|
|
log.SetLevel(logrus.TraceLevel)
|
|
event.AuditLog = log
|
|
|
|
// Remove temporary SQLite files before running the tests.
|
|
fs.PurgeTestDbFiles(".", false)
|
|
|
|
// Init test config.
|
|
c := config.TestConfig()
|
|
get.SetConfig(c)
|
|
|
|
// Increase login rate limit for testing.
|
|
limiter.Login = limiter.NewLimit(1, 10000)
|
|
|
|
// Run unit tests.
|
|
code := m.Run()
|
|
|
|
if err := c.CloseDb(); err != nil {
|
|
log.Errorf("close db: %v", err)
|
|
}
|
|
|
|
// Remove temporary SQLite files after running the tests.
|
|
fs.PurgeTestDbFiles(".", false)
|
|
|
|
os.Exit(code)
|
|
}
|