39878b3f83
See #268, #311 and #313 Hidden directory name poll: https://twitter.com/browseyourlife/status/1262320988081074178 Signed-off-by: Michael Mayer <michael@liquidbytes.net>
28 lines
685 B
Go
28 lines
685 B
Go
package api
|
|
|
|
import (
|
|
"github.com/tidwall/gjson"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGetPhotos(t *testing.T) {
|
|
t.Run("successful request", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
|
|
GetPhotos(router, ctx)
|
|
r := PerformRequest(app, "GET", "/api/v1/photos?count=10")
|
|
len := gjson.Get(r.Body.String(), "#")
|
|
assert.LessOrEqual(t, int64(2), len.Int())
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
})
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
GetPhotos(router, ctx)
|
|
result := PerformRequest(app, "GET", "/api/v1/photos?xxx=10")
|
|
assert.Equal(t, http.StatusBadRequest, result.Code)
|
|
})
|
|
}
|