mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
3092f82dcc
This almost 100% backwards compatible. The only difference being that in the rc options/get output CutoffMode, LogLevel, TerminalColorMode will be output as strings instead of integers. This is a lot more convenient for the user. They still accept integer inputs though so the fallout from this should be minimal.
80 lines
1.6 KiB
Go
80 lines
1.6 KiB
Go
package fs
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// Check it satisfies the interfaces
|
|
var (
|
|
_ flagger = (*CutoffMode)(nil)
|
|
_ flaggerNP = CutoffMode(0)
|
|
)
|
|
|
|
func TestCutoffModeString(t *testing.T) {
|
|
for _, test := range []struct {
|
|
in CutoffMode
|
|
want string
|
|
}{
|
|
{CutoffModeHard, "HARD"},
|
|
{CutoffModeSoft, "SOFT"},
|
|
{99, "Unknown(99)"},
|
|
} {
|
|
cm := test.in
|
|
got := cm.String()
|
|
assert.Equal(t, test.want, got, test.in)
|
|
}
|
|
}
|
|
|
|
func TestCutoffModeSet(t *testing.T) {
|
|
for _, test := range []struct {
|
|
in string
|
|
want CutoffMode
|
|
err bool
|
|
}{
|
|
{"hard", CutoffModeHard, false},
|
|
{"SOFT", CutoffModeSoft, false},
|
|
{"Cautious", CutoffModeCautious, false},
|
|
{"Potato", 0, true},
|
|
} {
|
|
cm := CutoffMode(0)
|
|
err := cm.Set(test.in)
|
|
if test.err {
|
|
require.Error(t, err, test.in)
|
|
} else {
|
|
require.NoError(t, err, test.in)
|
|
}
|
|
assert.Equal(t, test.want, cm, test.in)
|
|
}
|
|
}
|
|
|
|
func TestCutoffModeUnmarshalJSON(t *testing.T) {
|
|
for _, test := range []struct {
|
|
in string
|
|
want CutoffMode
|
|
err bool
|
|
}{
|
|
{`"hard"`, CutoffModeHard, false},
|
|
{`"SOFT"`, CutoffModeSoft, false},
|
|
{`"Cautious"`, CutoffModeCautious, false},
|
|
{`"Potato"`, 0, true},
|
|
{strconv.Itoa(int(CutoffModeHard)), CutoffModeHard, false},
|
|
{strconv.Itoa(int(CutoffModeSoft)), CutoffModeSoft, false},
|
|
{`99`, 0, true},
|
|
{`-99`, 0, true},
|
|
} {
|
|
var cm CutoffMode
|
|
err := json.Unmarshal([]byte(test.in), &cm)
|
|
if test.err {
|
|
require.Error(t, err, test.in)
|
|
} else {
|
|
require.NoError(t, err, test.in)
|
|
}
|
|
assert.Equal(t, test.want, cm, test.in)
|
|
}
|
|
}
|