photoprism/internal/auto/auto_test.go
Michael Mayer f98aa619ec Security: Disable HTTPS redirect by default #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-13 23:44:51 +02:00

44 lines
615 B
Go

package auto
import (
"os"
"testing"
"github.com/sirupsen/logrus"
"github.com/photoprism/photoprism/internal/config"
)
func TestMain(m *testing.M) {
log = logrus.StandardLogger()
log.SetLevel(logrus.TraceLevel)
c := config.TestConfig()
defer c.CloseDb()
code := m.Run()
os.Exit(code)
}
func TestStart(t *testing.T) {
conf := config.TestConfig()
Start(conf)
ShouldIndex()
ShouldImport()
if mustIndex(conf.AutoIndex()) {
t.Error("mustIndex() must return false")
}
if mustImport(conf.AutoImport()) {
t.Error("mustImport() must return false")
}
ResetImport()
ResetIndex()
Stop()
}