photoprism/internal/api/download_file_test.go

37 lines
1.1 KiB
Go
Raw Normal View History

2020-02-02 17:41:18 +00:00
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
2020-11-21 17:08:41 +00:00
"github.com/tidwall/gjson"
"github.com/photoprism/photoprism/internal/config"
2020-02-02 17:41:18 +00:00
)
func TestGetDownload(t *testing.T) {
t.Run("NotFound", func(t *testing.T) {
2020-02-02 17:41:18 +00:00
app, router, conf := NewApiTest()
GetDownload(router)
r := PerformRequest(app, "GET", "/api/v1/dl/123xxx?t="+conf.DownloadToken())
2020-05-04 12:40:58 +00:00
val := gjson.Get(r.Body.String(), "error")
assert.Equal(t, "record not found", val.String())
assert.Equal(t, http.StatusNotFound, r.Code)
2020-02-02 17:41:18 +00:00
})
t.Run("MissingOriginal", func(t *testing.T) {
2020-02-02 17:41:18 +00:00
app, router, conf := NewApiTest()
GetDownload(router)
r := PerformRequest(app, "GET", "/api/v1/dl/3cad9168fa6acc5c5c2965ddf6ec465ca42fd818?t="+conf.DownloadToken())
2020-05-04 12:40:58 +00:00
assert.Equal(t, http.StatusNotFound, r.Code)
2020-02-02 17:41:18 +00:00
})
t.Run("InvalidDownloadToken", func(t *testing.T) {
app, router, conf := NewApiTest()
conf.SetAuthMode(config.AuthModePasswd)
defer conf.SetAuthMode(config.AuthModePublic)
GetDownload(router)
r := PerformRequest(app, "GET", "/api/v1/dl/3cad9168fa6acc5c5c2965ddf6ec465ca42fd818?t=xxx")
assert.Equal(t, http.StatusForbidden, r.Code)
})
2020-02-02 17:41:18 +00:00
}