photoprism/internal/api/svg_test.go
2020-05-06 12:56:13 +02:00

51 lines
1.4 KiB
Go

package api
import (
"github.com/stretchr/testify/assert"
"net/http"
"testing"
)
func TestGetSvg(t *testing.T) {
t.Run("photo", func(t *testing.T) {
app, router, conf := NewApiTest()
t.Log(conf)
GetSvg(router)
r := PerformRequest(app, "GET", "/api/v1/svg/photo")
assert.Equal(t, photoIconSvg, r.Body.Bytes())
assert.Equal(t, http.StatusOK, r.Code)
})
t.Run("label", func(t *testing.T) {
app, router, conf := NewApiTest()
t.Log(conf)
GetSvg(router)
r := PerformRequest(app, "GET", "/api/v1/svg/label")
assert.Equal(t, labelIconSvg, r.Body.Bytes())
assert.Equal(t, http.StatusOK, r.Code)
})
t.Run("album", func(t *testing.T) {
app, router, conf := NewApiTest()
t.Log(conf)
GetSvg(router)
r := PerformRequest(app, "GET", "/api/v1/svg/album")
assert.Equal(t, albumIconSvg, r.Body.Bytes())
assert.Equal(t, http.StatusOK, r.Code)
})
t.Run("broken", func(t *testing.T) {
app, router, conf := NewApiTest()
t.Log(conf)
GetSvg(router)
r := PerformRequest(app, "GET", "/api/v1/svg/broken")
assert.Equal(t, brokenIconSvg, r.Body.Bytes())
assert.Equal(t, http.StatusOK, r.Code)
})
t.Run("uncached", func(t *testing.T) {
app, router, conf := NewApiTest()
t.Log(conf)
GetSvg(router)
r := PerformRequest(app, "GET", "/api/v1/svg/uncached")
assert.Equal(t, uncachedIconSvg, r.Body.Bytes())
assert.Equal(t, http.StatusOK, r.Code)
})
}