photoprism/internal/api/share_preview_test.go

24 lines
582 B
Go
Raw Normal View History

2020-02-03 14:50:46 +00:00
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPreview(t *testing.T) {
2020-05-13 18:05:33 +00:00
t.Run("not found", func(t *testing.T) {
app, router, _ := NewApiTest()
SharePreview(router)
2021-03-10 14:52:38 +00:00
r := PerformRequest(app, "GET", "api/v1/s/1jxf3jfn2k/st9lxuqxpogaaba7/preview")
2020-05-13 18:05:33 +00:00
assert.Equal(t, http.StatusNotFound, r.Code)
2020-02-03 14:50:46 +00:00
})
t.Run("invalid token", func(t *testing.T) {
app, router, _ := NewApiTest()
SharePreview(router)
2021-03-10 14:52:38 +00:00
r := PerformRequest(app, "GET", "api/v1/s/xxx/st9lxuqxpogaaba7/preview")
assert.Equal(t, http.StatusNotFound, r.Code)
})
2020-02-03 14:50:46 +00:00
}