photoprism/internal/query/photo_selection_test.go

86 lines
1.8 KiB
Go
Raw Normal View History

2020-05-13 17:23:16 +02:00
package query
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/internal/entity"
2020-05-13 17:23:16 +02:00
"github.com/photoprism/photoprism/internal/form"
)
func TestPhotoSelection(t *testing.T) {
albums := form.Selection{Albums: []string{"as6sg6bxpogaaba9", "as6sg6bitoga0004", "as6sg6bxpogaaba8", "as6sg6bxpogaaba7"}}
months := form.Selection{Albums: []string{"as6sg6bipogaabj9"}}
folders := form.Selection{Albums: []string{"as6sg6bipogaaba1", "as6sg6bipogaabj8"}}
states := form.Selection{Albums: []string{"as6sg6bipogaab11", "as6sg6bipotaab12", "as6sg6bipotaab19"}}
t.Run("no items selected", func(t *testing.T) {
2020-05-13 17:23:16 +02:00
f := form.Selection{
Photos: []string{},
}
r, err := SelectedPhotos(f)
assert.Equal(t, "no items selected", err.Error())
2020-05-13 17:23:16 +02:00
assert.Empty(t, r)
})
t.Run("photos selected", func(t *testing.T) {
f := form.Selection{
Photos: []string{"ps6sg6be2lvl0yh7", "ps6sg6be2lvl0yh8"},
2020-05-13 17:23:16 +02:00
}
r, err := SelectedPhotos(f)
2020-05-13 17:23:16 +02:00
if err != nil {
t.Fatal(err)
}
2020-05-13 17:23:16 +02:00
assert.Equal(t, 2, len(r))
assert.IsType(t, entity.Photos{}, r)
})
t.Run("FindAlbums", func(t *testing.T) {
r, err := SelectedPhotos(albums)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, 6, len(r))
assert.IsType(t, entity.Photos{}, r)
})
t.Run("FindMonths", func(t *testing.T) {
r, err := SelectedPhotos(months)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, 0, len(r))
assert.IsType(t, entity.Photos{}, r)
})
t.Run("FindFolders", func(t *testing.T) {
r, err := SelectedPhotos(folders)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, 2, len(r))
assert.IsType(t, entity.Photos{}, r)
})
t.Run("FindStates", func(t *testing.T) {
r, err := SelectedPhotos(states)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, 1, len(r))
assert.IsType(t, entity.Photos{}, r)
2020-05-13 17:23:16 +02:00
})
}