2019-07-17 16:46:54 +02:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
2019-12-11 14:10:20 +01:00
|
|
|
|
2020-05-22 16:29:12 +02:00
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
|
2019-12-11 14:10:20 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-07-17 16:46:54 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetAlbums(t *testing.T) {
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
2019-11-12 05:49:10 +01:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
GetAlbums(router, conf)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums?count=10")
|
2020-05-22 16:29:12 +02:00
|
|
|
count := gjson.Get(r.Body.String(), "#")
|
|
|
|
assert.LessOrEqual(t, int64(3), count.Int())
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2019-07-17 16:46:54 +02:00
|
|
|
})
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
2019-11-12 05:49:10 +01:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
GetAlbums(router, conf)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums?xxx=10")
|
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
2019-07-17 16:46:54 +02:00
|
|
|
})
|
2020-02-02 15:50:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetAlbum(t *testing.T) {
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
GetAlbum(router, conf)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba8")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "Slug")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "holiday-2030", val.String())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-02-02 15:50:33 +01:00
|
|
|
})
|
2019-07-17 16:46:54 +02:00
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
2019-11-12 05:49:10 +01:00
|
|
|
app, router, conf := NewApiTest()
|
2020-02-02 15:50:33 +01:00
|
|
|
GetAlbum(router, conf)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/999000")
|
|
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
|
|
assert.Equal(t, "Album not found", val.String())
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateAlbum(t *testing.T) {
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": "New created album", "Notes": "", "Favorite": true}`)
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "Slug")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "new-created-album", val.String())
|
2020-05-23 20:58:58 +02:00
|
|
|
val2 := gjson.Get(r.Body.String(), "Favorite")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "true", val2.String())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": 333, "Description": "Created via unit test", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
2020-02-02 15:50:33 +01:00
|
|
|
})
|
|
|
|
}
|
2020-05-01 19:58:05 +02:00
|
|
|
func TestUpdateAlbum(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": "Update", "Description": "To be updated", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
uid := gjson.Get(r.Body.String(), "UID").String()
|
2020-05-01 19:58:05 +02:00
|
|
|
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
UpdateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/albums/"+uid, `{"Title": "Updated01", "Notes": "", "Favorite": false}`)
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "Slug")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "updated01", val.String())
|
2020-05-23 20:58:58 +02:00
|
|
|
val2 := gjson.Get(r.Body.String(), "Favorite")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "false", val2.String())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
UpdateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/albums"+uid, `{"Title": 333, "Description": "Created via unit test", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
|
|
})
|
2019-07-17 16:46:54 +02:00
|
|
|
|
2020-05-01 19:58:05 +02:00
|
|
|
t.Run("not found", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
UpdateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "PUT", "/api/v1/albums/xxx", `{"Title": "Update03", "Description": "Created via unit test", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
|
|
assert.Equal(t, "Album not found", val.String())
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
|
|
})
|
|
|
|
}
|
2020-02-02 15:50:33 +01:00
|
|
|
func TestDeleteAlbum(t *testing.T) {
|
2020-05-01 19:58:05 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": "Delete", "Description": "To be deleted", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
uid := gjson.Get(r.Body.String(), "UID").String()
|
2020-05-01 19:58:05 +02:00
|
|
|
|
2020-02-02 15:50:33 +01:00
|
|
|
t.Run("delete existing album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
DeleteAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequest(app, "DELETE", "/api/v1/albums/"+uid)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "Slug")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "delete", val.String())
|
2020-02-02 15:50:33 +01:00
|
|
|
GetAlbums(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r2 := PerformRequest(app, "GET", "/api/v1/albums/"+uid)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r2.Code)
|
2020-02-02 15:50:33 +01:00
|
|
|
})
|
|
|
|
t.Run("delete not existing album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
DeleteAlbum(router, conf)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "DELETE", "/api/v1/albums/999000")
|
|
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
|
|
assert.Equal(t, "Album not found", val.String())
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2019-07-17 16:46:54 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLikeAlbum(t *testing.T) {
|
|
|
|
t.Run("like not existing album", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
|
|
|
|
|
|
|
LikeAlbum(router, ctx)
|
|
|
|
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "POST", "/api/v1/albums/xxx/like")
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2019-07-17 16:46:54 +02:00
|
|
|
})
|
2020-02-02 15:50:33 +01:00
|
|
|
t.Run("like existing album", func(t *testing.T) {
|
|
|
|
app, router, ctx := NewApiTest()
|
2019-07-17 16:46:54 +02:00
|
|
|
|
2020-02-02 15:50:33 +01:00
|
|
|
LikeAlbum(router, ctx)
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "POST", "/api/v1/albums/at9lxuqxpogaaba7/like")
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
GetAlbum(router, ctx)
|
|
|
|
r2 := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba7")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "true", val.String())
|
2020-02-02 15:50:33 +01:00
|
|
|
})
|
2019-07-17 16:46:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDislikeAlbum(t *testing.T) {
|
|
|
|
t.Run("dislike not existing album", func(t *testing.T) {
|
2019-11-12 05:49:10 +01:00
|
|
|
app, router, conf := NewApiTest()
|
2019-07-17 16:46:54 +02:00
|
|
|
|
2020-02-02 18:41:03 +01:00
|
|
|
DislikeAlbum(router, conf)
|
2019-07-17 16:46:54 +02:00
|
|
|
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "DELETE", "/api/v1/albums/5678/like")
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-02 15:50:33 +01:00
|
|
|
})
|
|
|
|
t.Run("dislike existing album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
|
2020-02-02 18:41:03 +01:00
|
|
|
DislikeAlbum(router, conf)
|
2020-02-02 15:50:33 +01:00
|
|
|
|
2020-05-01 19:58:05 +02:00
|
|
|
r := PerformRequest(app, "DELETE", "/api/v1/albums/at9lxuqxpogaaba8/like")
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
GetAlbum(router, conf)
|
|
|
|
r2 := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba8")
|
2020-05-23 20:58:58 +02:00
|
|
|
val := gjson.Get(r2.Body.String(), "Favorite")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, "false", val.String())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAddPhotosToAlbum(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": "Add photos", "Description": "", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
uid := gjson.Get(r.Body.String(), "UID").String()
|
2020-05-01 19:58:05 +02:00
|
|
|
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AddPhotosToAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums/"+uid+"/photos", `{"photos": ["pt9jtdre2lvl0y12", "pt9jtdre2lvl0y11"]}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "message")
|
|
|
|
assert.Equal(t, "photos added to album", val.String())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
2020-05-03 15:55:38 +02:00
|
|
|
t.Run("add one photo to album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AddPhotosToAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums/"+uid+"/photos", `{"photos": ["pt9jtdre2lvl0y12"]}`)
|
2020-05-03 15:55:38 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "message")
|
|
|
|
assert.Equal(t, "photos added to album", val.String())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
2020-05-01 19:58:05 +02:00
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AddPhotosToAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums/"+uid+"/photos", `{"photos": [123, "pt9jtdre2lvl0yxx"]}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
|
|
})
|
|
|
|
t.Run("not found", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AddPhotosToAlbum(router, conf)
|
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums/xxx/photos", `{"photos": ["pt9jtdre2lvl0yxx"]}`)
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemovePhotosFromAlbum(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
CreateAlbum(router, conf)
|
2020-05-26 09:02:19 +02:00
|
|
|
r := PerformRequestWithBody(app, "POST", "/api/v1/albums", `{"Title": "Remove photos", "Description": "", "Notes": "", "Favorite": true}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-23 20:58:58 +02:00
|
|
|
uid := gjson.Get(r.Body.String(), "UID").String()
|
2020-05-01 19:58:05 +02:00
|
|
|
AddPhotosToAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r2 := PerformRequestWithBody(app, "POST", "/api/v1/albums/"+uid+"/photos", `{"photos": ["pt9jtdre2lvl0y12", "pt9jtdre2lvl0y11"]}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r2.Code)
|
|
|
|
|
|
|
|
t.Run("successful request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
RemovePhotosFromAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "DELETE", "/api/v1/albums/"+uid+"/photos", `{"photos": ["pt9jtdre2lvl0y12", "pt9jtdre2lvl0y11"]}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
val := gjson.Get(r.Body.String(), "message")
|
2020-05-30 01:41:47 +02:00
|
|
|
assert.Equal(t, "entries removed from album", val.String())
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
|
|
|
t.Run("no photos selected", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
RemovePhotosFromAlbum(router, conf)
|
|
|
|
r := PerformRequestWithBody(app, "DELETE", "/api/v1/albums/at9lxuqxpogaaba7/photos", `{"photos": []}`)
|
|
|
|
val := gjson.Get(r.Body.String(), "error")
|
|
|
|
assert.Equal(t, "No photos selected", val.String())
|
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
|
|
})
|
|
|
|
t.Run("invalid request", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
RemovePhotosFromAlbum(router, conf)
|
2020-05-23 20:58:58 +02:00
|
|
|
r := PerformRequestWithBody(app, "DELETE", "/api/v1/albums/"+uid+"/photos", `{"photos": [123, "pt9jtdre2lvl0yxx"]}`)
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
|
|
})
|
|
|
|
t.Run("album not found", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
RemovePhotosFromAlbum(router, conf)
|
|
|
|
r := PerformRequestWithBody(app, "DELETE", "/api/v1/albums/xxx/photos", `{"photos": ["pt9jtdre2lvl0yxx"]}`)
|
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2020-02-02 18:41:03 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDownloadAlbum(t *testing.T) {
|
|
|
|
t.Run("download not existing album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
|
|
|
|
DownloadAlbum(router, conf)
|
|
|
|
|
2020-05-27 19:38:40 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/5678/dl?t="+conf.DownloadToken())
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusNotFound, r.Code)
|
2019-07-17 16:46:54 +02:00
|
|
|
})
|
2020-02-02 18:41:03 +01:00
|
|
|
t.Run("download existing album", func(t *testing.T) {
|
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
|
|
|
|
DownloadAlbum(router, conf)
|
|
|
|
|
2020-05-27 19:38:40 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba8/dl?t="+conf.DownloadToken())
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-02-02 18:41:03 +01:00
|
|
|
})
|
2019-07-17 16:46:54 +02:00
|
|
|
}
|
2019-12-16 11:04:49 +01:00
|
|
|
|
|
|
|
func TestAlbumThumbnail(t *testing.T) {
|
|
|
|
t.Run("invalid type", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AlbumThumbnail(router, conf)
|
2020-05-27 19:56:56 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba7/t/"+conf.PreviewToken()+"/xxx")
|
2019-12-16 11:04:49 +01:00
|
|
|
|
2020-05-05 15:42:54 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2019-12-16 11:04:49 +01:00
|
|
|
})
|
|
|
|
t.Run("album has no photo (because is not existing)", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AlbumThumbnail(router, conf)
|
2020-05-27 19:56:56 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/987-986435/t/"+conf.PreviewToken()+"/tile_500")
|
2020-05-01 19:58:05 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2019-12-16 11:04:49 +01:00
|
|
|
})
|
2020-05-03 15:55:38 +02:00
|
|
|
t.Run("album: could not find original", func(t *testing.T) {
|
2020-05-27 19:38:40 +02:00
|
|
|
app, router, conf := NewApiTest()
|
|
|
|
AlbumThumbnail(router, conf)
|
2020-05-27 19:56:56 +02:00
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums/at9lxuqxpogaaba8/t/"+conf.PreviewToken()+"/tile_500")
|
2020-05-05 15:42:54 +02:00
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
2020-05-03 15:55:38 +02:00
|
|
|
})
|
2019-12-16 11:04:49 +01:00
|
|
|
}
|