mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
0427177857
This implements the OpenChunkWriter interface for azureblob which enables multi-thread uploads. This makes the memory controls of the s3 backend inoperative; they are replaced with the global ones. --azureblob-memory-pool-flush-time --azureblob-memory-pool-use-mmap By using the buffered reader this fixes excessive memory use when uploading large files as it will share memory pages between all readers.
38 lines
944 B
Go
38 lines
944 B
Go
//go:build !plan9 && !solaris && !js
|
|
// +build !plan9,!solaris,!js
|
|
|
|
package azureblob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func (f *Fs) InternalTest(t *testing.T) {
|
|
// Check first feature flags are set on this
|
|
// remote
|
|
enabled := f.Features().SetTier
|
|
assert.True(t, enabled)
|
|
enabled = f.Features().GetTier
|
|
assert.True(t, enabled)
|
|
}
|
|
|
|
func TestIncrement(t *testing.T) {
|
|
for _, test := range []struct {
|
|
in [8]byte
|
|
want [8]byte
|
|
}{
|
|
{[8]byte{0, 0, 0, 0}, [8]byte{1, 0, 0, 0}},
|
|
{[8]byte{0xFE, 0, 0, 0}, [8]byte{0xFF, 0, 0, 0}},
|
|
{[8]byte{0xFF, 0, 0, 0}, [8]byte{0, 1, 0, 0}},
|
|
{[8]byte{0, 1, 0, 0}, [8]byte{1, 1, 0, 0}},
|
|
{[8]byte{0xFF, 0xFF, 0xFF, 0xFE}, [8]byte{0, 0, 0, 0xFF}},
|
|
{[8]byte{0xFF, 0xFF, 0xFF, 0xFF}, [8]byte{0, 0, 0, 0, 1}},
|
|
{[8]byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, [8]byte{0, 0, 0, 0, 0, 0, 0}},
|
|
} {
|
|
increment(&test.in)
|
|
assert.Equal(t, test.want, test.in)
|
|
}
|
|
}
|