From 000ddc495148427f3a02e00701a67e60bedc86b0 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 14 Jun 2023 17:30:36 +0100 Subject: [PATCH] s3: fix versions tests when running on minio --- backend/s3/s3.go | 1 + backend/s3/s3_internal_test.go | 11 ++++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/backend/s3/s3.go b/backend/s3/s3.go index f5a87aaed..0543d89cd 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -3051,6 +3051,7 @@ func NewFs(ctx context.Context, name, root string, m configmap.Mapper) (fs.Fs, e if err != nil { return nil, err } + fs.Debugf(nil, "name = %q, root = %q, opt = %#v", name, root, opt) err = checkUploadChunkSize(opt.ChunkSize) if err != nil { return nil, fmt.Errorf("s3: chunk size: %w", err) diff --git a/backend/s3/s3_internal_test.go b/backend/s3/s3_internal_test.go index e23c68bc3..d4b4e1e17 100644 --- a/backend/s3/s3_internal_test.go +++ b/backend/s3/s3_internal_test.go @@ -18,6 +18,7 @@ import ( "github.com/rclone/rclone/fs/hash" "github.com/rclone/rclone/fstest" "github.com/rclone/rclone/fstest/fstests" + "github.com/rclone/rclone/lib/bucket" "github.com/rclone/rclone/lib/random" "github.com/rclone/rclone/lib/version" "github.com/stretchr/testify/assert" @@ -317,10 +318,14 @@ func (f *Fs) InternalTestVersions(t *testing.T) { // Check we can make a NewFs from that object with a version suffix t.Run("NewFs", func(t *testing.T) { - newPath := path.Join(fs.ConfigString(f), fileNameVersion) + newPath := bucket.Join(fs.ConfigString(f), fileNameVersion) // Make sure --s3-versions is set in the config of the new remote - confPath := strings.Replace(newPath, ":", ",versions:", 1) - fNew, err := cache.Get(ctx, confPath) + fs.Debugf(nil, "oldPath = %q", newPath) + lastColon := strings.LastIndex(newPath, ":") + require.True(t, lastColon >= 0) + newPath = newPath[:lastColon] + ",versions" + newPath[lastColon:] + fs.Debugf(nil, "newPath = %q", newPath) + fNew, err := cache.Get(ctx, newPath) // This should return pointing to a file require.Equal(t, fs.ErrorIsFile, err) require.NotNil(t, fNew)