fe9884331f
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
205 lines
4.3 KiB
Go
205 lines
4.3 KiB
Go
package query
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
form "github.com/photoprism/photoprism/internal/form"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAlbumByUID(t *testing.T) {
|
|
t.Run("existing uid", func(t *testing.T) {
|
|
album, err := AlbumByUID("at9lxuqxpogaaba7")
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "Christmas2030", album.AlbumTitle)
|
|
})
|
|
|
|
t.Run("not existing uid", func(t *testing.T) {
|
|
album, err := AlbumByUID("3765")
|
|
assert.Error(t, err, "record not found")
|
|
t.Log(album)
|
|
})
|
|
}
|
|
|
|
func TestAlbumCoverByUID(t *testing.T) {
|
|
t.Run("existing uid default album", func(t *testing.T) {
|
|
file, err := AlbumCoverByUID("at9lxuqxpogaaba8")
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "exampleFileName.jpg", file.FileName)
|
|
})
|
|
|
|
t.Run("existing uid folder album", func(t *testing.T) {
|
|
file, err := AlbumCoverByUID("at1lxuqipogaaba1")
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "bridge2.jpg", file.FileName)
|
|
})
|
|
|
|
t.Run("existing uid empty moment album", func(t *testing.T) {
|
|
file, err := AlbumCoverByUID("at7axuzitogaaiax")
|
|
|
|
assert.EqualError(t, err, "found no cover for moment", err)
|
|
assert.Equal(t, "", file.FileName)
|
|
})
|
|
|
|
t.Run("not existing uid", func(t *testing.T) {
|
|
file, err := AlbumCoverByUID("3765")
|
|
assert.Error(t, err, "record not found")
|
|
t.Log(file)
|
|
})
|
|
}
|
|
|
|
func TestAlbumPhotos(t *testing.T) {
|
|
t.Run("search with string", func(t *testing.T) {
|
|
results, err := AlbumPhotos(entity.AlbumFixtures.Get("april-1990"), 2)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if len(results) < 2 {
|
|
t.Errorf("at least 2 results expected: %d", len(results))
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestAlbumSearch(t *testing.T) {
|
|
t.Run("search with string", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("chr")
|
|
result, err := AlbumSearch(query)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "Christmas2030", result[0].AlbumTitle)
|
|
})
|
|
|
|
t.Run("search with slug", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("slug:holiday count:10")
|
|
result, err := AlbumSearch(query)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "Holiday2030", result[0].AlbumTitle)
|
|
})
|
|
|
|
t.Run("favorites true", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("favorite:true count:10000")
|
|
|
|
result, err := AlbumSearch(query)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, "Holiday2030", result[0].AlbumTitle)
|
|
})
|
|
t.Run("empty query", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("order:slug")
|
|
|
|
results, err := AlbumSearch(query)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if len(results) < 3 {
|
|
t.Errorf("at least 3 results expected: %d", len(results))
|
|
}
|
|
})
|
|
t.Run("search with invalid query string", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("xxx:bla")
|
|
result, err := AlbumSearch(query)
|
|
assert.Error(t, err, "unknown filter")
|
|
t.Log(result)
|
|
})
|
|
t.Run("search with invalid query string", func(t *testing.T) {
|
|
query := form.NewAlbumSearch("xxx:bla")
|
|
result, err := AlbumSearch(query)
|
|
assert.Error(t, err, "unknown filter")
|
|
t.Log(result)
|
|
})
|
|
t.Run("search for existing ID", func(t *testing.T) {
|
|
f := form.AlbumSearch{
|
|
Query: "",
|
|
ID: "at9lxuqxpogaaba7",
|
|
Slug: "",
|
|
Title: "",
|
|
Favorite: false,
|
|
Count: 0,
|
|
Offset: 0,
|
|
Order: "",
|
|
}
|
|
|
|
result, err := AlbumSearch(f)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, 1, len(result))
|
|
assert.Equal(t, "christmas2030", result[0].AlbumSlug)
|
|
})
|
|
t.Run("search with multiple filters", func(t *testing.T) {
|
|
f := form.AlbumSearch{
|
|
Query: "",
|
|
Type: "moment",
|
|
Category: "Fun",
|
|
Location: "Favorite Park",
|
|
Title: "Empty Moment",
|
|
Count: 0,
|
|
Offset: 0,
|
|
Order: "",
|
|
}
|
|
|
|
result, err := AlbumSearch(f)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, 1, len(result))
|
|
assert.Equal(t, "Empty Moment", result[0].AlbumTitle)
|
|
})
|
|
t.Run("search for year/month/day", func(t *testing.T) {
|
|
f := form.AlbumSearch{
|
|
Year: 2021,
|
|
Month: 10,
|
|
Day: 3,
|
|
Count: 0,
|
|
Offset: 0,
|
|
Order: "",
|
|
}
|
|
|
|
result, err := AlbumSearch(f)
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Equal(t, 0, len(result))
|
|
})
|
|
}
|
|
|
|
func TestUpdateAlbumDates(t *testing.T) {
|
|
t.Run("success", func(t *testing.T) {
|
|
if err := UpdateAlbumDates(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
}
|