mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 14:52:46 +08:00
26 lines
584 B
Go
26 lines
584 B
Go
package imguploader
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestUploadToAzureBlob(t *testing.T) {
|
|
SkipConvey("[Integration test] for external_image_store.azure_blob", t, func() {
|
|
err := setting.NewConfigContext(&setting.CommandLineArgs{
|
|
HomePath: "../../../",
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
uploader, _ := NewImageUploader()
|
|
|
|
path, err := uploader.Upload(context.Background(), "../../../public/img/logo_transparent_400x.png")
|
|
|
|
So(err, ShouldBeNil)
|
|
So(path, ShouldNotEqual, "")
|
|
})
|
|
}
|