2017-06-26 07:47:54 +08:00
|
|
|
// Test QingStor filesystem interface
|
2017-08-03 21:31:55 +08:00
|
|
|
|
2020-08-01 02:57:48 +08:00
|
|
|
// +build !plan9,!js
|
2017-08-03 21:31:55 +08:00
|
|
|
|
2019-01-04 19:24:20 +08:00
|
|
|
package qingstor
|
2017-06-26 07:47:54 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fs"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2017-06-26 07:47:54 +08:00
|
|
|
)
|
|
|
|
|
2018-04-08 01:48:11 +08:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestQingStor:",
|
2019-01-04 19:24:20 +08:00
|
|
|
NilObject: (*Object)(nil),
|
|
|
|
ChunkedUpload: fstests.ChunkedUploadConfig{
|
|
|
|
MinChunkSize: minChunkSize,
|
|
|
|
},
|
2018-04-08 01:48:11 +08:00
|
|
|
})
|
2017-06-26 07:47:54 +08:00
|
|
|
}
|
2019-01-04 19:24:20 +08:00
|
|
|
|
|
|
|
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)
|