95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
package query
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
)
|
|
|
|
func TestRepo_FindFiles(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.OriginalsPath(), conf.Db())
|
|
|
|
t.Run("files found", func(t *testing.T) {
|
|
files, err := search.FindFiles(1000, 0)
|
|
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, 5, len(files))
|
|
})
|
|
}
|
|
|
|
func TestRepo_FindFilesByUUID(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.OriginalsPath(), conf.Db())
|
|
|
|
t.Run("files found", func(t *testing.T) {
|
|
files, err := search.FindFilesByUUID([]string{"654"}, 100, 0)
|
|
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, 1, len(files))
|
|
assert.Equal(t, "exampleFileName.jpg", files[0].FileName)
|
|
})
|
|
}
|
|
|
|
func TestRepo_FindFileByPhotoUUID(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.OriginalsPath(), conf.Db())
|
|
|
|
t.Run("files found", func(t *testing.T) {
|
|
file, err := search.FindFileByPhotoUUID("655")
|
|
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, "exampleDNGFile.dng", file.FileName)
|
|
})
|
|
|
|
t.Run("no files found", func(t *testing.T) {
|
|
file, err := search.FindFileByPhotoUUID("111")
|
|
|
|
assert.Error(t, err, "record not found")
|
|
t.Log(file)
|
|
})
|
|
}
|
|
|
|
func TestRepo_FindFileByID(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.OriginalsPath(), conf.Db())
|
|
|
|
t.Run("files found", func(t *testing.T) {
|
|
file, err := search.FindFileByID("3")
|
|
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, "exampleXmpFile.xmp", file.FileName)
|
|
})
|
|
|
|
t.Run("no files found", func(t *testing.T) {
|
|
file, err := search.FindFileByID("111")
|
|
|
|
assert.Error(t, err, "record not found")
|
|
t.Log(file)
|
|
})
|
|
}
|
|
|
|
func TestRepo_FindFileByHash(t *testing.T) {
|
|
conf := config.TestConfig()
|
|
|
|
search := New(conf.OriginalsPath(), conf.Db())
|
|
|
|
t.Run("files found", func(t *testing.T) {
|
|
file, err := search.FindFileByHash("123xxx")
|
|
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, "exampleFileName.jpg", file.FileName)
|
|
})
|
|
|
|
t.Run("no files found", func(t *testing.T) {
|
|
file, err := search.FindFileByHash("111")
|
|
|
|
assert.Error(t, err, "record not found")
|
|
t.Log(file)
|
|
})
|
|
}
|