mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 00:37:04 -06:00
6538e86793
Fixes #7914. Fixes #7921
28 lines
974 B
Go
28 lines
974 B
Go
package imguploader
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestUploadToWebdav(t *testing.T) {
|
|
|
|
// Can be tested with this docker container: https://hub.docker.com/r/morrisjobke/webdav/
|
|
SkipConvey("[Integration test] for external_image_store.webdav", t, func() {
|
|
webdavUploader, _ := NewWebdavImageUploader("http://localhost:8888/webdav/", "test", "test", "")
|
|
path, err := webdavUploader.Upload("../../../public/img/logo_transparent_400x.png")
|
|
|
|
So(err, ShouldBeNil)
|
|
So(path, ShouldStartWith, "http://localhost:8888/webdav/")
|
|
})
|
|
|
|
SkipConvey("[Integration test] for external_image_store.webdav with public url", t, func() {
|
|
webdavUploader, _ := NewWebdavImageUploader("http://localhost:8888/webdav/", "test", "test", "http://publicurl:8888/webdav")
|
|
path, err := webdavUploader.Upload("../../../public/img/logo_transparent_400x.png")
|
|
|
|
So(err, ShouldBeNil)
|
|
So(path, ShouldStartWith, "http://publicurl:8888/webdav/")
|
|
})
|
|
}
|