2020-01-05 14:18:40 +01:00
|
|
|
package query
|
2018-09-12 16:37:30 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-12-11 22:09:11 +01:00
|
|
|
"time"
|
2018-10-31 07:14:33 +01:00
|
|
|
|
2020-11-21 18:08:41 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
|
|
|
2019-12-11 14:10:20 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-09-12 16:37:30 +02:00
|
|
|
)
|
|
|
|
|
2020-05-08 15:41:01 +02:00
|
|
|
func TestPhotoByID(t *testing.T) {
|
2020-02-02 13:03:08 +01:00
|
|
|
t.Run("photo found", func(t *testing.T) {
|
2020-05-08 15:41:01 +02:00
|
|
|
result, err := PhotoByID(1000000)
|
2020-05-13 11:57:54 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Equal(t, 2790, result.PhotoYear)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("no photo found", func(t *testing.T) {
|
2020-05-08 15:41:01 +02:00
|
|
|
result, err := PhotoByID(99999)
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Error(t, err, "record not found")
|
|
|
|
t.Log(result)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-05-23 20:58:58 +02:00
|
|
|
func TestPhotoByUID(t *testing.T) {
|
2020-02-02 13:03:08 +01:00
|
|
|
t.Run("photo found", func(t *testing.T) {
|
2020-05-23 20:58:58 +02:00
|
|
|
result, err := PhotoByUID("pt9jtdre2lvl0y12")
|
2020-05-13 11:57:54 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Equal(t, "Reunion", result.PhotoTitle)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("no photo found", func(t *testing.T) {
|
2020-05-23 20:58:58 +02:00
|
|
|
result, err := PhotoByUID("99999")
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Error(t, err, "record not found")
|
|
|
|
t.Log(result)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-05-23 20:58:58 +02:00
|
|
|
func TestPreloadPhotoByUID(t *testing.T) {
|
2020-02-02 13:03:08 +01:00
|
|
|
t.Run("photo found", func(t *testing.T) {
|
2020-05-26 19:27:29 +02:00
|
|
|
result, err := PhotoPreloadByUID("pt9jtdre2lvl0y12")
|
2020-05-13 11:57:54 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Equal(t, "Reunion", result.PhotoTitle)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("no photo found", func(t *testing.T) {
|
2020-05-26 19:27:29 +02:00
|
|
|
result, err := PhotoPreloadByUID("99999")
|
2020-02-02 13:03:08 +01:00
|
|
|
assert.Error(t, err, "record not found")
|
|
|
|
t.Log(result)
|
|
|
|
})
|
|
|
|
}
|
2020-05-13 11:57:54 +02:00
|
|
|
|
|
|
|
func TestMissingPhotos(t *testing.T) {
|
2020-05-26 19:27:29 +02:00
|
|
|
r, err := PhotosMissing(15, 0)
|
2020-05-13 11:57:54 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assert.LessOrEqual(t, 1, len(r))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestResetPhotosQuality(t *testing.T) {
|
2020-05-26 19:27:29 +02:00
|
|
|
err := ResetPhotoQuality()
|
2020-05-13 11:57:54 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2020-07-13 12:29:11 +02:00
|
|
|
|
|
|
|
func TestPhotosCheck(t *testing.T) {
|
2020-12-11 22:09:11 +01:00
|
|
|
result, err := PhotosCheck(10, 0, time.Second)
|
2020-07-13 12:29:11 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assert.IsType(t, entity.Photos{}, result)
|
2020-12-09 21:49:41 +01:00
|
|
|
}
|