photoprism/internal/api/photos_search_test.go

42 lines
1.0 KiB
Go
Raw Normal View History

package api
import (
"net/http"
"testing"
2020-11-21 18:08:41 +01:00
"github.com/tidwall/gjson"
"github.com/stretchr/testify/assert"
)
func TestSearchPhotos(t *testing.T) {
t.Run("Ok", func(t *testing.T) {
app, router, _ := NewApiTest()
SearchPhotos(router)
2020-05-15 13:14:50 +02:00
r := PerformRequest(app, "GET", "/api/v1/photos?count=10")
count := gjson.Get(r.Body.String(), "#")
assert.LessOrEqual(t, int64(2), count.Int())
2020-05-15 13:14:50 +02:00
assert.Equal(t, http.StatusOK, r.Code)
2019-07-17 16:44:21 +02:00
})
t.Run("ViewerJSON", func(t *testing.T) {
app, router, _ := NewApiTest()
SearchPhotos(router)
r := PerformRequest(app, "GET", "/api/v1/photos?count=10&format=view")
body := r.Body.String()
t.Logf("response body: %s", body)
count := gjson.Get(body, "#")
assert.LessOrEqual(t, int64(2), count.Int())
assert.Equal(t, http.StatusOK, r.Code)
})
t.Run("InvalidRequest", func(t *testing.T) {
app, router, _ := NewApiTest()
SearchPhotos(router)
2019-07-17 16:44:21 +02:00
result := PerformRequest(app, "GET", "/api/v1/photos?xxx=10")
assert.Equal(t, http.StatusBadRequest, result.Code)
})
}