photoprism/internal/auto/auto_test.go
Michael Mayer ff758c3ed6 WebDAV: Changes trigger auto indexing / importing #281
The safety delay may be configured individually using
PHOTOPRISM_AUTO_INDEX and PHOTOPRISM_AUTO_IMPORT. A negative value
disables the feature.
2021-01-02 18:56:15 +01:00

48 lines
698 B
Go

package auto
import (
"os"
"testing"
"github.com/photoprism/photoprism/internal/config"
"github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
log = logrus.StandardLogger()
log.SetLevel(logrus.DebugLevel)
if err := os.Remove(".test.db"); err == nil {
log.Debugln("removed .test.db")
}
c := config.TestConfig()
code := m.Run()
_ = c.CloseDb()
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()
}