mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
34 lines
797 B
Go
34 lines
797 B
Go
|
//go:build !plan9 && !solaris && !js
|
||
|
// +build !plan9,!solaris,!js
|
||
|
|
||
|
package oracleobjectstorage
|
||
|
|
||
|
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: "TestOracleObjectStorage:",
|
||
|
TiersToTest: []string{"standard", "archive"},
|
||
|
NilObject: (*Object)(nil),
|
||
|
ChunkedUpload: fstests.ChunkedUploadConfig{
|
||
|
MinChunkSize: minChunkSize,
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func (f *Fs) SetUploadChunkSize(cs fs.SizeSuffix) (fs.SizeSuffix, error) {
|
||
|
return f.setUploadChunkSize(cs)
|
||
|
}
|
||
|
|
||
|
func (f *Fs) SetUploadCutoff(cs fs.SizeSuffix) (fs.SizeSuffix, error) {
|
||
|
return f.setUploadCutoff(cs)
|
||
|
}
|
||
|
|
||
|
var _ fstests.SetUploadChunkSizer = (*Fs)(nil)
|