mirror of
https://github.com/rclone/rclone
synced 2024-11-17 17:30:37 +01:00
ae3963e4b4
Before this change options were read and set in native format. This means for example nanoseconds for durations or an integer for enumerated types, which isn't very convenient for humans. This change enables these types to be set with a string with the syntax as used in the command line instead, so `"10s"` rather than `10000000000` or `"DEBUG"` rather than `8` for log level.
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
package vfscommon
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/spf13/pflag"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// Check CacheMode it satisfies the pflag interface
|
|
var _ pflag.Value = (*CacheMode)(nil)
|
|
|
|
// Check CacheMode it satisfies the json.Unmarshaller interface
|
|
var _ json.Unmarshaler = (*CacheMode)(nil)
|
|
|
|
func TestCacheModeString(t *testing.T) {
|
|
assert.Equal(t, "off", CacheModeOff.String())
|
|
assert.Equal(t, "full", CacheModeFull.String())
|
|
assert.Equal(t, "CacheMode(17)", CacheMode(17).String())
|
|
}
|
|
|
|
func TestCacheModeSet(t *testing.T) {
|
|
var m CacheMode
|
|
|
|
err := m.Set("full")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, CacheModeFull, m)
|
|
|
|
err = m.Set("potato")
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
|
|
err = m.Set("")
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
}
|
|
|
|
func TestCacheModeType(t *testing.T) {
|
|
var m CacheMode
|
|
assert.Equal(t, "CacheMode", m.Type())
|
|
}
|
|
|
|
func TestCacheModeUnmarshalJSON(t *testing.T) {
|
|
var m CacheMode
|
|
|
|
err := json.Unmarshal([]byte(`"full"`), &m)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, CacheModeFull, m)
|
|
|
|
err = json.Unmarshal([]byte(`"potato"`), &m)
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
|
|
err = json.Unmarshal([]byte(`""`), &m)
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
|
|
err = json.Unmarshal([]byte(strconv.Itoa(int(CacheModeFull))), &m)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, CacheModeFull, m)
|
|
|
|
err = json.Unmarshal([]byte("-1"), &m)
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
|
|
err = json.Unmarshal([]byte("99"), &m)
|
|
assert.Error(t, err, "Unknown cache mode level")
|
|
}
|