2019-02-10 19:20:58 +01:00
|
|
|
package operations
|
|
|
|
|
|
|
|
import (
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
2021-11-04 11:12:57 +01:00
|
|
|
"errors"
|
2019-02-10 19:20:58 +01:00
|
|
|
"io"
|
|
|
|
"testing"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/fs"
|
|
|
|
"github.com/rclone/rclone/fs/hash"
|
|
|
|
"github.com/rclone/rclone/fstest/mockobject"
|
2023-10-08 12:39:26 +02:00
|
|
|
"github.com/rclone/rclone/lib/pool"
|
2020-03-27 12:12:21 +01:00
|
|
|
"github.com/rclone/rclone/lib/readers"
|
2019-02-10 19:20:58 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
2023-10-08 12:39:26 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-02-10 19:20:58 +01:00
|
|
|
)
|
|
|
|
|
2023-10-08 12:39:26 +02:00
|
|
|
// check interfaces
|
|
|
|
var (
|
|
|
|
_ io.ReadSeekCloser = (*ReOpen)(nil)
|
|
|
|
_ pool.DelayAccountinger = (*ReOpen)(nil)
|
|
|
|
)
|
2019-02-10 19:20:58 +01:00
|
|
|
|
|
|
|
var errorTestError = errors.New("test error")
|
|
|
|
|
2020-05-20 12:39:20 +02:00
|
|
|
// this is a wrapper for a mockobject with a custom Open function
|
2019-02-10 19:20:58 +01:00
|
|
|
//
|
|
|
|
// breaks indicate the number of bytes to read before returning an
|
|
|
|
// error
|
|
|
|
type reOpenTestObject struct {
|
|
|
|
fs.Object
|
2023-10-08 12:39:26 +02:00
|
|
|
t *testing.T
|
2024-04-12 11:58:06 +02:00
|
|
|
wantStart int64
|
2023-10-08 12:39:26 +02:00
|
|
|
breaks []int64
|
|
|
|
unknownSize bool
|
2019-02-10 19:20:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Open opens the file for read. Call Close() on the returned io.ReadCloser
|
|
|
|
//
|
|
|
|
// This will break after reading the number of bytes in breaks
|
2019-06-17 10:34:30 +02:00
|
|
|
func (o *reOpenTestObject) Open(ctx context.Context, options ...fs.OpenOption) (io.ReadCloser, error) {
|
operations: fix retries downloading too much data with certain backends
Before this fix if more than one retry happened on a file that rclone
had opened for read with a backend that uses fs.FixRangeOption then
rclone would read too much data and the transfer would fail.
Backends affected:
- azureblob, azurefiles, b2, box, dropbox, fichier, filefabric
- googlecloudstorage, hidrive, imagekit, jottacloud, koofr, netstorage
- onedrive, opendrive, oracleobjectstorage, pikpak, premiumizeme
- protondrive, qingstor, quatrix, s3, sharefile, sugarsync, swift
- uptobox, webdav, zoho
This was because rclone was emitting Range requests for the wrong data
range on the second and subsequent retries.
This was caused by fs.FixRangeOption modifying the options and the
reopen code relying on them not being modified.
This fix makes a copy of the fs.FixRangeOption in the reopen code to
fix the problem.
In future it might be best to change fs.FixRangeOption so it returns a
new options slice.
Fixes #7759
2024-04-12 13:35:39 +02:00
|
|
|
// Lots of backends do this - make sure it works as it modifies options
|
|
|
|
fs.FixRangeOption(options, o.Size())
|
2023-10-08 12:39:26 +02:00
|
|
|
gotHash := false
|
|
|
|
gotRange := false
|
|
|
|
startPos := int64(0)
|
|
|
|
for _, option := range options {
|
|
|
|
switch x := option.(type) {
|
|
|
|
case *fs.HashesOption:
|
|
|
|
gotHash = true
|
|
|
|
case *fs.RangeOption:
|
|
|
|
gotRange = true
|
|
|
|
startPos = x.Start
|
|
|
|
if o.unknownSize {
|
|
|
|
assert.Equal(o.t, int64(-1), x.End)
|
|
|
|
}
|
|
|
|
case *fs.SeekOption:
|
|
|
|
startPos = x.Offset
|
|
|
|
}
|
|
|
|
}
|
2024-04-12 11:58:06 +02:00
|
|
|
assert.Equal(o.t, o.wantStart, startPos)
|
2023-10-08 12:39:26 +02:00
|
|
|
// Check if ranging, mustn't have hash if offset != 0
|
|
|
|
if gotHash && gotRange {
|
|
|
|
assert.Equal(o.t, int64(0), startPos)
|
|
|
|
}
|
2019-06-17 10:34:30 +02:00
|
|
|
rc, err := o.Object.Open(ctx, options...)
|
2019-02-10 19:20:58 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(o.breaks) > 0 {
|
|
|
|
// Pop a breakpoint off
|
|
|
|
N := o.breaks[0]
|
|
|
|
o.breaks = o.breaks[1:]
|
2024-04-12 11:58:06 +02:00
|
|
|
o.wantStart += N
|
2019-02-10 19:20:58 +01:00
|
|
|
// If 0 then return an error immediately
|
|
|
|
if N == 0 {
|
|
|
|
return nil, errorTestError
|
|
|
|
}
|
|
|
|
// Read N bytes then an error
|
2020-03-27 12:12:21 +01:00
|
|
|
r := io.MultiReader(&io.LimitedReader{R: rc, N: N}, readers.ErrorReader{Err: errorTestError})
|
2019-02-10 19:20:58 +01:00
|
|
|
// Wrap with Close in a new readCloser
|
|
|
|
rc = readCloser{Reader: r, Closer: rc}
|
|
|
|
}
|
|
|
|
return rc, nil
|
|
|
|
}
|
|
|
|
|
2019-04-23 10:44:41 +02:00
|
|
|
func TestReOpen(t *testing.T) {
|
2023-10-08 12:39:26 +02:00
|
|
|
for _, testName := range []string{"Normal", "WithRangeOption", "WithSeekOption", "UnknownSize"} {
|
2019-04-23 10:44:41 +02:00
|
|
|
t.Run(testName, func(t *testing.T) {
|
|
|
|
// Contents for the mock object
|
|
|
|
var (
|
|
|
|
reOpenTestcontents = []byte("0123456789")
|
|
|
|
expectedRead = reOpenTestcontents
|
|
|
|
rangeOption *fs.RangeOption
|
2023-10-08 12:39:26 +02:00
|
|
|
seekOption *fs.SeekOption
|
|
|
|
unknownSize = false
|
2019-04-23 10:44:41 +02:00
|
|
|
)
|
2023-10-08 12:39:26 +02:00
|
|
|
switch testName {
|
|
|
|
case "Normal":
|
|
|
|
case "WithRangeOption":
|
|
|
|
rangeOption = &fs.RangeOption{Start: 1, End: 7} // range is inclusive
|
2019-04-23 10:44:41 +02:00
|
|
|
expectedRead = reOpenTestcontents[1:8]
|
2023-10-08 12:39:26 +02:00
|
|
|
case "WithSeekOption":
|
|
|
|
seekOption = &fs.SeekOption{Offset: 2}
|
|
|
|
expectedRead = reOpenTestcontents[2:]
|
|
|
|
case "UnknownSize":
|
|
|
|
rangeOption = &fs.RangeOption{Start: 1, End: -1}
|
|
|
|
expectedRead = reOpenTestcontents[1:]
|
|
|
|
unknownSize = true
|
|
|
|
default:
|
|
|
|
panic("bad test name")
|
2019-04-23 10:44:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start the test with the given breaks
|
2024-04-12 11:58:06 +02:00
|
|
|
testReOpen := func(breaks []int64, maxRetries int) (*ReOpen, *reOpenTestObject, error) {
|
2019-04-23 10:44:41 +02:00
|
|
|
srcOrig := mockobject.New("potato").WithContent(reOpenTestcontents, mockobject.SeekModeNone)
|
2023-10-08 12:39:26 +02:00
|
|
|
srcOrig.SetUnknownSize(unknownSize)
|
2019-04-23 10:44:41 +02:00
|
|
|
src := &reOpenTestObject{
|
2023-10-08 12:39:26 +02:00
|
|
|
Object: srcOrig,
|
|
|
|
t: t,
|
|
|
|
breaks: breaks,
|
|
|
|
unknownSize: unknownSize,
|
2019-04-23 10:44:41 +02:00
|
|
|
}
|
2023-10-08 12:39:26 +02:00
|
|
|
opts := []fs.OpenOption{}
|
|
|
|
if rangeOption == nil && seekOption == nil {
|
|
|
|
opts = append(opts, &fs.HashesOption{Hashes: hash.NewHashSet(hash.MD5)})
|
|
|
|
}
|
|
|
|
if rangeOption != nil {
|
|
|
|
opts = append(opts, rangeOption)
|
2024-04-12 11:58:06 +02:00
|
|
|
src.wantStart = rangeOption.Start
|
2023-10-08 12:39:26 +02:00
|
|
|
}
|
|
|
|
if seekOption != nil {
|
|
|
|
opts = append(opts, seekOption)
|
2024-04-12 11:58:06 +02:00
|
|
|
src.wantStart = seekOption.Offset
|
2023-10-08 12:39:26 +02:00
|
|
|
}
|
2024-04-12 11:58:06 +02:00
|
|
|
rc, err := NewReOpen(context.Background(), src, maxRetries, opts...)
|
|
|
|
return rc, src, err
|
2019-04-23 10:44:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Basics", func(t *testing.T) {
|
|
|
|
// open
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen(nil, 10)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// Check contents read correctly
|
2022-08-20 16:38:02 +02:00
|
|
|
got, err := io.ReadAll(h)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, expectedRead, got)
|
|
|
|
|
|
|
|
// Check read after end
|
|
|
|
var buf = make([]byte, 1)
|
|
|
|
n, err := h.Read(buf)
|
|
|
|
assert.Equal(t, 0, n)
|
|
|
|
assert.Equal(t, io.EOF, err)
|
|
|
|
|
2023-10-08 12:39:26 +02:00
|
|
|
// Rewind the stream
|
|
|
|
_, err = h.Seek(0, io.SeekStart)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Check contents read correctly
|
|
|
|
got, err = io.ReadAll(h)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, expectedRead, got)
|
|
|
|
|
2019-04-23 10:44:41 +02:00
|
|
|
// Check close
|
|
|
|
assert.NoError(t, h.Close())
|
|
|
|
|
|
|
|
// Check double close
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.Equal(t, errFileClosed, h.Close())
|
2019-04-23 10:44:41 +02:00
|
|
|
|
|
|
|
// Check read after close
|
|
|
|
n, err = h.Read(buf)
|
|
|
|
assert.Equal(t, 0, n)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.Equal(t, errFileClosed, err)
|
2019-04-23 10:44:41 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ErrorAtStart", func(t *testing.T) {
|
|
|
|
// open with immediate breaking
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen([]int64{0}, 10)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.Equal(t, errorTestError, err)
|
|
|
|
assert.Nil(t, h)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("WithErrors", func(t *testing.T) {
|
|
|
|
// open with a few break points but less than the max
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen([]int64{2, 1, 3}, 10)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// check contents
|
2022-08-20 16:38:02 +02:00
|
|
|
got, err := io.ReadAll(h)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, expectedRead, got)
|
|
|
|
|
|
|
|
// check close
|
|
|
|
assert.NoError(t, h.Close())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("TooManyErrors", func(t *testing.T) {
|
|
|
|
// open with a few break points but >= the max
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen([]int64{2, 1, 3}, 3)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// check contents
|
2022-08-20 16:38:02 +02:00
|
|
|
got, err := io.ReadAll(h)
|
2019-04-23 10:44:41 +02:00
|
|
|
assert.Equal(t, errorTestError, err)
|
|
|
|
assert.Equal(t, expectedRead[:6], got)
|
|
|
|
|
|
|
|
// check old error is returned
|
|
|
|
var buf = make([]byte, 1)
|
|
|
|
n, err := h.Read(buf)
|
|
|
|
assert.Equal(t, 0, n)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.Equal(t, errTooManyTries, err)
|
2019-04-23 10:44:41 +02:00
|
|
|
|
|
|
|
// Check close
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.Equal(t, errFileClosed, h.Close())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Seek", func(t *testing.T) {
|
|
|
|
// open
|
2024-04-12 11:58:06 +02:00
|
|
|
h, src, err := testReOpen([]int64{2, 1, 3}, 10)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// Seek to end
|
|
|
|
pos, err := h.Seek(int64(len(expectedRead)), io.SeekStart)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, int64(len(expectedRead)), pos)
|
|
|
|
|
|
|
|
// Seek to start
|
|
|
|
pos, err = h.Seek(0, io.SeekStart)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, int64(0), pos)
|
|
|
|
|
|
|
|
// Should not allow seek past end
|
|
|
|
pos, err = h.Seek(int64(len(expectedRead))+1, io.SeekCurrent)
|
|
|
|
if !unknownSize {
|
|
|
|
assert.Equal(t, errSeekPastEnd, err)
|
|
|
|
assert.Equal(t, len(expectedRead), int(pos))
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, nil, err)
|
|
|
|
assert.Equal(t, len(expectedRead)+1, int(pos))
|
|
|
|
|
|
|
|
// Seek back to start to get tests in sync
|
|
|
|
pos, err = h.Seek(0, io.SeekStart)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, int64(0), pos)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not allow seek to negative position start
|
|
|
|
pos, err = h.Seek(-1, io.SeekCurrent)
|
|
|
|
assert.Equal(t, errNegativeSeek, err)
|
|
|
|
assert.Equal(t, 0, int(pos))
|
|
|
|
|
|
|
|
// Should not allow seek with invalid whence
|
|
|
|
pos, err = h.Seek(0, 3)
|
|
|
|
assert.Equal(t, errInvalidWhence, err)
|
|
|
|
assert.Equal(t, 0, int(pos))
|
|
|
|
|
|
|
|
// check read
|
|
|
|
dst := make([]byte, 5)
|
|
|
|
n, err := h.Read(dst)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 5, n)
|
|
|
|
assert.Equal(t, expectedRead[:5], dst)
|
|
|
|
|
|
|
|
// Test io.SeekCurrent
|
|
|
|
pos, err = h.Seek(-3, io.SeekCurrent)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 2, int(pos))
|
|
|
|
|
2024-04-12 11:58:06 +02:00
|
|
|
// Reset the start after a seek, taking into account the offset
|
|
|
|
setWantStart := func(x int64) {
|
|
|
|
src.wantStart = x
|
|
|
|
if rangeOption != nil {
|
|
|
|
src.wantStart += rangeOption.Start
|
|
|
|
} else if seekOption != nil {
|
|
|
|
src.wantStart += seekOption.Offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-08 12:39:26 +02:00
|
|
|
// check read
|
2024-04-12 11:58:06 +02:00
|
|
|
setWantStart(2)
|
2023-10-08 12:39:26 +02:00
|
|
|
n, err = h.Read(dst)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 5, n)
|
|
|
|
assert.Equal(t, expectedRead[2:7], dst)
|
|
|
|
|
|
|
|
pos, err = h.Seek(-2, io.SeekCurrent)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 5, int(pos))
|
|
|
|
|
|
|
|
// Test io.SeekEnd
|
|
|
|
pos, err = h.Seek(-3, io.SeekEnd)
|
|
|
|
if !unknownSize {
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, len(expectedRead)-3, int(pos))
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, errBadEndSeek, err)
|
|
|
|
assert.Equal(t, 0, int(pos))
|
|
|
|
|
|
|
|
// sync
|
|
|
|
pos, err = h.Seek(1, io.SeekCurrent)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 6, int(pos))
|
|
|
|
}
|
|
|
|
|
|
|
|
// check read
|
|
|
|
dst = make([]byte, 3)
|
2024-04-12 11:58:06 +02:00
|
|
|
setWantStart(int64(len(expectedRead) - 3))
|
2023-10-08 12:39:26 +02:00
|
|
|
n, err = h.Read(dst)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 3, n)
|
|
|
|
assert.Equal(t, expectedRead[len(expectedRead)-3:], dst)
|
|
|
|
|
|
|
|
// check close
|
|
|
|
assert.NoError(t, h.Close())
|
|
|
|
_, err = h.Seek(0, io.SeekCurrent)
|
|
|
|
assert.Equal(t, errFileClosed, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("AccountRead", func(t *testing.T) {
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen(nil, 10)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
var total int
|
|
|
|
h.SetAccounting(func(n int) error {
|
|
|
|
total += n
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
dst := make([]byte, 3)
|
|
|
|
n, err := h.Read(dst)
|
|
|
|
assert.Equal(t, 3, n)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 3, total)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("AccountReadDelay", func(t *testing.T) {
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen(nil, 10)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
var total int
|
|
|
|
h.SetAccounting(func(n int) error {
|
|
|
|
total += n
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
rewind := func() {
|
|
|
|
_, err := h.Seek(0, io.SeekStart)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
h.DelayAccounting(3)
|
|
|
|
|
|
|
|
dst := make([]byte, 16)
|
|
|
|
|
|
|
|
n, err := h.Read(dst)
|
|
|
|
assert.Equal(t, len(expectedRead), n)
|
|
|
|
assert.Equal(t, io.EOF, err)
|
|
|
|
assert.Equal(t, 0, total)
|
|
|
|
rewind()
|
|
|
|
|
|
|
|
n, err = h.Read(dst)
|
|
|
|
assert.Equal(t, len(expectedRead), n)
|
|
|
|
assert.Equal(t, io.EOF, err)
|
|
|
|
assert.Equal(t, 0, total)
|
|
|
|
rewind()
|
|
|
|
|
|
|
|
n, err = h.Read(dst)
|
|
|
|
assert.Equal(t, len(expectedRead), n)
|
|
|
|
assert.Equal(t, io.EOF, err)
|
|
|
|
assert.Equal(t, len(expectedRead), total)
|
|
|
|
rewind()
|
|
|
|
|
|
|
|
n, err = h.Read(dst)
|
|
|
|
assert.Equal(t, len(expectedRead), n)
|
|
|
|
assert.Equal(t, io.EOF, err)
|
|
|
|
assert.Equal(t, 2*len(expectedRead), total)
|
|
|
|
rewind()
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("AccountReadError", func(t *testing.T) {
|
|
|
|
// Test accounting errors
|
2024-04-12 11:58:06 +02:00
|
|
|
h, _, err := testReOpen(nil, 10)
|
2023-10-08 12:39:26 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
h.SetAccounting(func(n int) error {
|
|
|
|
return errorTestError
|
|
|
|
})
|
|
|
|
|
|
|
|
dst := make([]byte, 3)
|
|
|
|
n, err := h.Read(dst)
|
|
|
|
assert.Equal(t, 3, n)
|
|
|
|
assert.Equal(t, errorTestError, err)
|
2019-04-23 10:44:41 +02:00
|
|
|
})
|
|
|
|
})
|
2019-02-10 19:20:58 +01:00
|
|
|
}
|
|
|
|
}
|