photoprism/internal/api/photos_search_test.go

42 lines
1 KiB
Go
Raw Normal View History

package api
import (
"net/http"
"testing"
2020-11-21 17:08:41 +00:00
"github.com/tidwall/gjson"
"github.com/stretchr/testify/assert"
)
func TestSearchPhotos(t *testing.T) {
t.Run("Success", func(t *testing.T) {
app, router, _ := NewApiTest()
SearchPhotos(router)
2020-05-15 11:14:50 +00: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 11:14:50 +00:00
assert.Equal(t, http.StatusOK, r.Code)
2019-07-17 14:44:21 +00: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 14:44:21 +00:00
result := PerformRequest(app, "GET", "/api/v1/photos?xxx=10")
assert.Equal(t, http.StatusBadRequest, result.Code)
})
}