mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 19:54:10 -06:00
78596a6756
Fixes #30144 Co-authored-by: dsotirakis <sotirakis.dim@gmail.com> Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> Co-authored-by: Ida Furjesova <ida.furjesova@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Leon Sorokin <leeoniya@gmail.com> Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com> Co-authored-by: spinillos <selenepinillos@gmail.com> Co-authored-by: Karl Persson <kalle.persson@grafana.com> Co-authored-by: Leonard Gram <leo@xlson.com>
28 lines
682 B
Go
28 lines
682 B
Go
package imguploader
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestUploadToS3(t *testing.T) {
|
|
t.Run("[Integration test] for external_image_store.s3", func(t *testing.T) {
|
|
t.Skip("Skip test [Integration test] for external_image_store.s3")
|
|
cfg := setting.NewCfg()
|
|
err := cfg.Load(setting.CommandLineArgs{
|
|
HomePath: "../../../",
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
s3Uploader, err := NewImageUploader()
|
|
require.NoError(t, err)
|
|
|
|
path, err := s3Uploader.Upload(context.Background(), "../../../public/img/logo_transparent_400x.png")
|
|
require.NoError(t, err)
|
|
require.NotEqual(t, "", path)
|
|
})
|
|
}
|