photoprism/internal/workers/meta_test.go

49 lines
916 B
Go

package workers
import (
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/mutex"
)
func TestPrism_Start(t *testing.T) {
conf := config.TestConfig()
t.Logf("database-dsn: %s", conf.DatabaseDsn())
worker := NewMeta(conf)
assert.IsType(t, &Meta{}, worker)
if err := mutex.MetaWorker.Start(); err != nil {
t.Fatal(err)
}
delay := time.Second
interval := time.Second
if err := worker.Start(delay, interval, true); err == nil {
t.Fatal("error expected")
}
mutex.MetaWorker.Stop()
if err := worker.Start(delay, interval, true); err != nil {
t.Fatal(err)
}
}
func TestMeta_originalsPath(t *testing.T) {
conf := config.TestConfig()
worker := NewMeta(conf)
assert.IsType(t, &Meta{}, worker)
assert.True(t, strings.HasSuffix(worker.originalsPath(), "testdata/originals"))
}