mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
a131da2c35
This commit switches from using the old Azure go modules github.com/Azure/azure-pipeline-go/pipeline github.com/Azure/azure-storage-blob-go/azblob github.com/Azure/go-autorest/autorest/adal To the new SDK github.com/Azure/azure-sdk-for-go/ This stops rclone using deprecated code and enables the full range of authentication with Azure. See #6132 and #5284
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
// Test AzureBlob filesystem interface
|
|
|
|
//go:build !plan9 && !solaris && !js && go1.18
|
|
// +build !plan9,!solaris,!js,go1.18
|
|
|
|
package azureblob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// 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{
|
|
MinChunkSize: defaultChunkSize,
|
|
},
|
|
})
|
|
}
|
|
|
|
func (f *Fs) SetUploadChunkSize(cs fs.SizeSuffix) (fs.SizeSuffix, error) {
|
|
return f.setUploadChunkSize(cs)
|
|
}
|
|
|
|
var (
|
|
_ fstests.SetUploadChunkSizer = (*Fs)(nil)
|
|
)
|
|
|
|
func TestValidateAccessTier(t *testing.T) {
|
|
tests := map[string]struct {
|
|
accessTier string
|
|
want bool
|
|
}{
|
|
"hot": {"hot", true},
|
|
"HOT": {"HOT", true},
|
|
"Hot": {"Hot", true},
|
|
"cool": {"cool", true},
|
|
"archive": {"archive", true},
|
|
"empty": {"", false},
|
|
"unknown": {"unknown", false},
|
|
}
|
|
|
|
for name, test := range tests {
|
|
t.Run(name, func(t *testing.T) {
|
|
got := validateAccessTier(test.accessTier)
|
|
assert.Equal(t, test.want, got)
|
|
})
|
|
}
|
|
}
|