mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +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
37 lines
852 B
Go
37 lines
852 B
Go
//go:build !plan9 && !solaris && !js && go1.18
|
|
// +build !plan9,!solaris,!js,go1.18
|
|
|
|
package azureblob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func (f *Fs) InternalTest(t *testing.T) {
|
|
// Check first feature flags are set on this
|
|
// remote
|
|
enabled := f.Features().SetTier
|
|
assert.True(t, enabled)
|
|
enabled = f.Features().GetTier
|
|
assert.True(t, enabled)
|
|
}
|
|
|
|
func TestIncrement(t *testing.T) {
|
|
for _, test := range []struct {
|
|
in []byte
|
|
want []byte
|
|
}{
|
|
{[]byte{0, 0, 0, 0}, []byte{1, 0, 0, 0}},
|
|
{[]byte{0xFE, 0, 0, 0}, []byte{0xFF, 0, 0, 0}},
|
|
{[]byte{0xFF, 0, 0, 0}, []byte{0, 1, 0, 0}},
|
|
{[]byte{0, 1, 0, 0}, []byte{1, 1, 0, 0}},
|
|
{[]byte{0xFF, 0xFF, 0xFF, 0xFE}, []byte{0, 0, 0, 0xFF}},
|
|
{[]byte{0xFF, 0xFF, 0xFF, 0xFF}, []byte{0, 0, 0, 0}},
|
|
} {
|
|
increment(test.in)
|
|
assert.Equal(t, test.want, test.in)
|
|
}
|
|
}
|