mirror of
https://github.com/rclone/rclone.git
synced 2026-05-12 18:38:00 -04:00
Implement multipart upload support with configurable chunk size and concurrency options Enable OpenChunkWriter with per-chunk encryption Enhance multipart upload handling with new upload cutoff and error management for small files
20 lines
404 B
Go
20 lines
404 B
Go
package internxt_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestInternxt:",
|
|
ChunkedUpload: fstests.ChunkedUploadConfig{
|
|
MinChunkSize: 100 * fs.Mebi,
|
|
NeedMultipleChunks: true,
|
|
},
|
|
})
|
|
}
|