forked from TrueCloudLab/rclone
3553cc4a5f
Before this change backend types were printing incorrectly as the name of the type, not what was defined by the Type() method. This was not working due to not calling the Type() method. However this needed to be defined on a non-pointer type due to the way the options are handled.
79 lines
1.6 KiB
Go
79 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, "CutoffMode(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)
|
|
}
|
|
}
|