mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
eb41253764
FreeBSD support was added in Azure/azure-storage-blob-go@0562badec5 OpenBSD and NetBSD support was added in Azure/azure-storage-blob-go@1d6dd77d74
38 lines
817 B
Go
38 lines
817 B
Go
// Test AzureBlob filesystem interface
|
|
|
|
// +build !plan9,!solaris,go1.8
|
|
|
|
package azureblob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestAzureBlob:",
|
|
NilObject: (*Object)(nil),
|
|
TiersToTest: []string{"Hot", "Cool"},
|
|
ChunkedUpload: fstests.ChunkedUploadConfig{
|
|
MaxChunkSize: maxChunkSize,
|
|
},
|
|
})
|
|
}
|
|
|
|
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)
|
|
_ fstests.SetUploadCutoffer = (*Fs)(nil)
|
|
)
|