2022-11-23 17:46:21 +01:00
|
|
|
//go:build !plan9 && !solaris && !js && go1.18
|
|
|
|
// +build !plan9,!solaris,!js,go1.18
|
2018-09-11 03:55:06 +02:00
|
|
|
|
|
|
|
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
|
2018-09-18 14:25:20 +02:00
|
|
|
enabled := f.Features().SetTier
|
2018-09-11 03:55:06 +02:00
|
|
|
assert.True(t, enabled)
|
|
|
|
enabled = f.Features().GetTier
|
|
|
|
assert.True(t, enabled)
|
|
|
|
}
|
2020-05-13 22:29:21 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|