03ec4b586d
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
132 lines
4.6 KiB
Go
132 lines
4.6 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
func TestGetPhoto(t *testing.T) {
|
|
t.Run("search for existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
GetPhoto(router, ctx)
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh7")
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
val := gjson.Get(r.Body.String(), "Lat")
|
|
assert.Equal(t, "48.519234", val.String())
|
|
})
|
|
t.Run("search for not existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
GetPhoto(router, ctx)
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/xxx")
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|
|
|
|
func TestUpdatePhoto(t *testing.T) {
|
|
t.Run("successful request", func(t *testing.T) {
|
|
app, router, conf := NewApiTest()
|
|
UpdatePhoto(router, conf)
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/pt9jtdre2lvl0y13", `{"Title": "Updated01", "Country": "de"}`)
|
|
val := gjson.Get(r.Body.String(), "Title")
|
|
assert.Equal(t, "Updated01", val.String())
|
|
val2 := gjson.Get(r.Body.String(), "Country")
|
|
assert.Equal(t, "de", val2.String())
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
})
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
app, router, conf := NewApiTest()
|
|
UpdatePhoto(router, conf)
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/pt9jtdre2lvl0y13", `{"Name": "Updated01", "Country": 123}`)
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
})
|
|
|
|
t.Run("not found", func(t *testing.T) {
|
|
app, router, conf := NewApiTest()
|
|
UpdatePhoto(router, conf)
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/xxx", `{"Name": "Updated01", "Country": "de"}`)
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
assert.Equal(t, "Photo not found", val.String())
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|
|
|
|
func TestGetPhotoDownload(t *testing.T) {
|
|
t.Run("could not find original", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
GetPhotoDownload(router, ctx)
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh7/download")
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
t.Run("not existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
GetPhotoDownload(router, ctx)
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/xxx/download")
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|
|
|
|
func TestLikePhoto(t *testing.T) {
|
|
t.Run("existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
LikePhoto(router, ctx)
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/pt9jtdre2lvl0yh9/like")
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
GetPhoto(router, ctx)
|
|
r2 := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh9")
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
|
assert.Equal(t, "true", val.String())
|
|
})
|
|
t.Run("not existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
LikePhoto(router, ctx)
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/xxx/like")
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|
|
|
|
func TestDislikePhoto(t *testing.T) {
|
|
t.Run("existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
DislikePhoto(router, ctx)
|
|
r := PerformRequest(app, "DELETE", "/api/v1/photos/pt9jtdre2lvl0yh8/like")
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
GetPhoto(router, ctx)
|
|
r2 := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh8")
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
|
assert.Equal(t, "false", val.String())
|
|
})
|
|
t.Run("not existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
DislikePhoto(router, ctx)
|
|
r := PerformRequest(app, "DELETE", "/api/v1/photos/xxx/like")
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|
|
|
|
func TestSetPhotoPrimary(t *testing.T) {
|
|
t.Run("existing photo", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
SetPhotoPrimary(router, ctx)
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/pt9jtdre2lvl0yh8/primary/ft1es39w45bnlqdw")
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
GetFile(router, ctx)
|
|
r2 := PerformRequest(app, "GET", "/api/v1/files/ocad9168fa6acc5c5c2965ddf6ec465ca42fd818")
|
|
val := gjson.Get(r2.Body.String(), "Primary")
|
|
assert.Equal(t, "true", val.String())
|
|
r3 := PerformRequest(app, "GET", "/api/v1/files/3cad9168fa6acc5c5c2965ddf6ec465ca42fd818")
|
|
val2 := gjson.Get(r3.Body.String(), "Primary")
|
|
assert.Equal(t, "false", val2.String())
|
|
})
|
|
t.Run("wrong photo uid", func(t *testing.T) {
|
|
app, router, ctx := NewApiTest()
|
|
SetPhotoPrimary(router, ctx)
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/xxx/primary/ft1es39w45bnlqdw")
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
assert.Equal(t, "Photo not found", val.String())
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
})
|
|
}
|