photoprism/internal/api/photo_search_test.go

29 lines
675 B
Go
Raw Normal View History

package api
import (
2020-05-15 11:14:50 +00:00
"github.com/tidwall/gjson"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPhotos(t *testing.T) {
2020-02-03 14:49:49 +00:00
t.Run("successful request", func(t *testing.T) {
app, router, _ := NewApiTest()
GetPhotos(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("invalid request", func(t *testing.T) {
app, router, _ := NewApiTest()
GetPhotos(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)
})
}