Merge pull request #269 from crawford/valid

validate: promote invalid values to an error
This commit is contained in:
Alex Crawford 2014-11-26 10:32:27 -08:00
commit 92c57423ba
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ func checkValidity(cfg node, report *Report) {
func checkNodeValidity(n, g node, r *Report) {
if err := config.AssertValid(n.Value, g.field.Tag.Get("valid")); err != nil {
r.Warning(n.line, fmt.Sprintf("invalid value %v", n.Value))
r.Error(n.line, fmt.Sprintf("invalid value %v", n.Value))
}
switch g.Kind() {
case reflect.Struct:

View File

@ -218,7 +218,7 @@ func TestCheckValidity(t *testing.T) {
},
{
config: "coreos:\n units:\n - command: lol",
entries: []Entry{{entryWarning, "invalid value lol", 3}},
entries: []Entry{{entryError, "invalid value lol", 3}},
},
// struct
@ -227,7 +227,7 @@ func TestCheckValidity(t *testing.T) {
},
{
config: "coreos:\n update:\n reboot_strategy: always",
entries: []Entry{{entryWarning, "invalid value always", 3}},
entries: []Entry{{entryError, "invalid value always", 3}},
},
// unknown