Michael Mayer 47814e2fde Initial stub for feature flags in settings #284
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-12 18:00:31 +02:00

36 lines
688 B
Go

package photoprism
import (
"testing"
"github.com/photoprism/photoprism/internal/classify"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/nsfw"
)
func TestIndex_Start(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
conf := config.TestConfig()
conf.InitializeTestData(t)
tf := classify.New(conf.ResourcesPath(), conf.DisableTensorFlow())
nd := nsfw.New(conf.NSFWModelPath())
ind := NewIndex(conf, tf, nd)
convert := NewConvert(conf)
imp := NewImport(conf, ind, convert)
opt := ImportOptionsMove(conf.ImportPath())
imp.Start(opt)
indexOpt := IndexOptionsAll()
ind.Start(indexOpt)
}