2018-11-17 08:28:50 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2020-05-15 13:14:50 +02:00
|
|
|
"github.com/tidwall/gjson"
|
2018-11-17 08:28:50 +01:00
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetPhotos(t *testing.T) {
|
2020-02-03 15:49:49 +01:00
|
|
|
t.Run("successful request", func(t *testing.T) {
|
2019-07-17 16:44:21 +02:00
|
|
|
app, router, ctx := NewApiTest()
|
2018-11-17 08:28:50 +01:00
|
|
|
|
2019-07-17 16:44:21 +02:00
|
|
|
GetPhotos(router, ctx)
|
2020-05-15 13:14:50 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/photos?count=10")
|
2020-05-22 16:29:12 +02:00
|
|
|
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("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)
|
|
|
|
})
|
2018-11-17 08:28:50 +01:00
|
|
|
}
|