2020-02-03 15:50:05 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2020-04-26 11:41:54 +02:00
|
|
|
"github.com/tidwall/gjson"
|
2020-02-03 15:50:05 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetPhoto(t *testing.T) {
|
|
|
|
t.Run("search for existing photo", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
GetPhoto(router, ctx)
|
2020-05-04 17:54:42 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh7")
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "Lat")
|
2020-04-26 11:41:54 +02:00
|
|
|
assert.Equal(t, "48.519234", val.String())
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
t.Run("search for not existing photo", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
GetPhoto(router, ctx)
|
2020-05-04 17:54:42 +02:00
|
|
|
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)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/pt9jtdre2lvl0y13", `{"Title": "Updated01", "Country": "de"}`)
|
|
|
|
val := gjson.Get(r.Body.String(), "Title")
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, "Updated01", val.String())
|
2020-05-23 20:58:58 +02:00
|
|
|
val2 := gjson.Get(r.Body.String(), "Country")
|
2020-05-04 17:54:42 +02:00
|
|
|
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)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/pt9jtdre2lvl0y13", `{"Name": "Updated01", "Country": 123}`)
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("not found", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
UpdatePhoto(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/photos/xxx", `{"Name": "Updated01", "Country": "de"}`)
|
2020-05-04 17:54:42 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
|
|
assert.Equal(t, "Photo not found", val.String())
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetPhotoDownload(t *testing.T) {
|
|
|
|
t.Run("could not find original", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
GetPhotoDownload(router, conf)
|
|
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh7/dl?t="+conf.DownloadToken())
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
t.Run("not existing photo", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
GetPhotoDownload(router, conf)
|
|
|
|
r := PerformRequest(app, "GET", "/api/v1/photos/xxx/dl?t="+conf.DownloadToken())
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLikePhoto(t *testing.T) {
|
|
|
|
t.Run("existing photo", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
LikePhoto(router, conf)
|
2020-05-04 17:54:42 +02:00
|
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/pt9jtdre2lvl0yh9/like")
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-27 19:38:40 +02:00
|
|
|
GetPhoto(router, conf)
|
2020-05-04 17:54:42 +02:00
|
|
|
r2 := PerformRequest(app, "GET", "/api/v1/photos/pt9jtdre2lvl0yh9")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, "true", val.String())
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
t.Run("not existing photo", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
LikePhoto(router, conf)
|
2020-05-04 17:54:42 +02:00
|
|
|
r := PerformRequest(app, "POST", "/api/v1/photos/xxx/like")
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDislikePhoto(t *testing.T) {
|
|
|
|
t.Run("existing photo", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
DislikePhoto(router, ctx)
|
2020-05-04 17:54:42 +02:00
|
|
|
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")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, "false", val.String())
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
t.Run("not existing photo", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
DislikePhoto(router, ctx)
|
2020-05-04 17:54:42 +02:00
|
|
|
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")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r2.Body.String(), "Primary")
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, "true", val.String())
|
|
|
|
r3 := PerformRequest(app, "GET", "/api/v1/files/3cad9168fa6acc5c5c2965ddf6ec465ca42fd818")
|
2020-05-23 20:58:58 +02:00
|
|
|
val2 := gjson.Get(r3.Body.String(), "Primary")
|
2020-05-04 17:54:42 +02:00
|
|
|
assert.Equal(t, "false", val2.String())
|
|
|
|
})
|
2020-05-23 20:58:58 +02:00
|
|
|
t.Run("wrong photo uid", func(t *testing.T) {
|
2020-05-04 17:54:42 +02:00
|
|
|
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)
|
2020-02-03 15:50:05 +01:00
|
|
|
})
|
|
|
|
}
|