photoprism/internal/api/label_test.go

98 lines
2.7 KiB
Go
Raw Normal View History

2019-07-17 15:16:33 +00:00
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
2019-07-17 15:16:33 +00:00
)
func TestGetLabels(t *testing.T) {
t.Run("successful request", func(t *testing.T) {
app, router, ctx := NewApiTest()
GetLabels(router, ctx)
result := PerformRequest(app, "GET", "/api/v1/labels?count=15")
t.Log(result.Body)
assert.Equal(t, http.StatusOK, result.Code)
})
t.Run("invalid request", func(t *testing.T) {
app, router, ctx := NewApiTest()
GetLabels(router, ctx)
result := PerformRequest(app, "GET", "/api/v1/labels?xxx=10")
t.Log(result.Body)
assert.Equal(t, http.StatusBadRequest, result.Code)
})
t.Run("invalid request", func(t *testing.T) {
app, router, ctx := NewApiTest()
t.Log(router)
t.Log(ctx)
result := PerformRequest(app, "GET", "/api/v1/labels?xxx=10")
t.Log(result.Body)
assert.Equal(t, http.StatusNotFound, result.Code)
})
}
func TestLikeLabel(t *testing.T) {
2020-02-02 18:39:49 +00:00
t.Run("like not existing label", func(t *testing.T) {
2019-07-17 15:16:33 +00:00
app, router, ctx := NewApiTest()
LikeLabel(router, ctx)
2020-02-02 18:39:49 +00:00
result := PerformRequest(app, "POST", "/api/v1/labels/8775789/like")
assert.Equal(t, http.StatusNotFound, result.Code)
})
t.Run("like existing label", func(t *testing.T) {
app, router, ctx := NewApiTest()
LikeLabel(router, ctx)
2020-05-01 12:15:15 +00:00
result := PerformRequest(app, "POST", "/api/v1/labels/lt9k3pw1wowuy3c5/like")
2020-02-02 18:39:49 +00:00
assert.Equal(t, http.StatusOK, result.Code)
2019-07-17 15:16:33 +00:00
})
}
func TestDislikeLabel(t *testing.T) {
2020-02-02 18:39:49 +00:00
t.Run("dislike not existing label", func(t *testing.T) {
2019-07-17 15:16:33 +00:00
app, router, ctx := NewApiTest()
2020-02-02 18:39:49 +00:00
DislikeLabel(router, ctx)
2019-07-17 15:16:33 +00:00
result := PerformRequest(app, "DELETE", "/api/v1/labels/5678/like")
assert.Equal(t, http.StatusNotFound, result.Code)
})
2020-02-02 18:39:49 +00:00
t.Run("dislike existing label", func(t *testing.T) {
app, router, ctx := NewApiTest()
DislikeLabel(router, ctx)
2020-05-01 12:15:15 +00:00
result := PerformRequest(app, "DELETE", "/api/v1/labels/lt9k3pw1wowuy3c5/like")
2020-02-02 18:39:49 +00:00
assert.Equal(t, http.StatusOK, result.Code)
})
2019-07-17 15:16:33 +00:00
}
func TestLabelThumbnail(t *testing.T) {
t.Run("invalid type", func(t *testing.T) {
app, router, ctx := NewApiTest()
LabelThumbnail(router, ctx)
result := PerformRequest(app, "GET", "/api/v1/labels/dog/thumbnail/xxx")
assert.Equal(t, http.StatusOK, result.Code)
})
t.Run("invalid label", func(t *testing.T) {
app, router, ctx := NewApiTest()
LabelThumbnail(router, ctx)
result := PerformRequest(app, "GET", "/api/v1/labels/xxx/thumbnail/tile_500")
assert.Equal(t, http.StatusOK, result.Code)
})
2020-02-02 18:39:49 +00:00
t.Run("could not find original", func(t *testing.T) {
app, router, ctx := NewApiTest()
LabelThumbnail(router, ctx)
2020-05-01 12:15:15 +00:00
result := PerformRequest(app, "GET", "/api/v1/labels/lt9k3pw1wowuy3c3/thumbnail/tile_500")
2020-02-02 18:39:49 +00:00
assert.Equal(t, http.StatusOK, result.Code)
})
}