photoprism/internal/api/video_test.go

38 lines
1.1 KiB
Go
Raw Normal View History

2020-05-14 16:10:01 +00:00
package api
import (
"github.com/stretchr/testify/assert"
"net/http"
"testing"
)
func TestGetVideo(t *testing.T) {
t.Run("invalid hash", func(t *testing.T) {
app, router, conf := NewApiTest()
GetVideo(router)
r := PerformRequest(app, "GET", "/api/v1/videos/xxx/"+conf.PreviewToken()+"/mp4")
2020-05-14 16:10:01 +00:00
assert.Equal(t, http.StatusOK, r.Code)
})
2020-05-14 16:10:01 +00:00
t.Run("invalid type", func(t *testing.T) {
app, router, conf := NewApiTest()
GetVideo(router)
r := PerformRequest(app, "GET", "/api/v1/videos/acad9168fa6acc5c5c2965ddf6ec465ca42fd831/"+conf.PreviewToken()+"/xxx")
2020-05-14 16:10:01 +00:00
assert.Equal(t, http.StatusOK, r.Code)
})
2020-05-14 16:10:01 +00:00
t.Run("file for video not found", func(t *testing.T) {
app, router, conf := NewApiTest()
GetVideo(router)
r := PerformRequest(app, "GET", "/api/v1/videos/acad9168fa6acc5c5c2965ddf6ec465ca42fd831/"+conf.PreviewToken()+"/mp4")
2020-05-14 16:10:01 +00:00
assert.Equal(t, http.StatusOK, r.Code)
})
2020-05-14 16:10:01 +00:00
t.Run("file with error", func(t *testing.T) {
app, router, conf := NewApiTest()
GetVideo(router)
r := PerformRequest(app, "GET", "/api/v1/videos/acad9168fa6acc5c5c2965ddf6ec465ca42fd832/"+conf.PreviewToken()+"/mp4")
2020-05-14 16:10:01 +00:00
assert.Equal(t, http.StatusOK, r.Code)
})
}