Sanitize rescan interval values (fixes #1978)

This commit is contained in:
Jakob Borg
2015-06-20 20:21:05 +02:00
parent 1d2235abe7
commit 4eb0e24c6e
3 changed files with 25 additions and 0 deletions

View File

@@ -578,3 +578,17 @@ func TestPullOrder(t *testing.T) {
}
}
}
func TestLargeRescanInterval(t *testing.T) {
wrapper, err := Load("testdata/largeinterval.xml", device1)
if err != nil {
t.Fatal(err)
}
if wrapper.Folders()["l1"].RescanIntervalS != MaxRescanIntervalS {
t.Error("too large rescan interval should be maxed out")
}
if wrapper.Folders()["l2"].RescanIntervalS != 0 {
t.Error("negative rescan interval should become zero")
}
}