mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
27 lines
587 B
Go
27 lines
587 B
Go
package imguploader
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestUploadToGCS(t *testing.T) {
|
|
SkipConvey("[Integration test] for external_image_store.gcs", t, func() {
|
|
cfg := setting.NewCfg()
|
|
err := cfg.Load(&setting.CommandLineArgs{
|
|
HomePath: "../../../",
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
gcsUploader, _ := NewImageUploader()
|
|
|
|
path, err := gcsUploader.Upload(context.Background(), "../../../public/img/logo_transparent_400x.png")
|
|
|
|
So(err, ShouldBeNil)
|
|
So(path, ShouldNotEqual, "")
|
|
})
|
|
}
|