diff --git a/components/engine/daemon/config/config_test.go b/components/engine/daemon/config/config_test.go index 30a93126d3..bdd046bcdc 100644 --- a/components/engine/daemon/config/config_test.go +++ b/components/engine/daemon/config/config_test.go @@ -259,6 +259,20 @@ func TestValidateConfigurationErrors(t *testing.T) { }, }, }, + { + config: &Config{ + CommonConfig: CommonConfig{ + NodeGenericResources: []string{"foo"}, + }, + }, + }, + { + config: &Config{ + CommonConfig: CommonConfig{ + NodeGenericResources: []string{"foo=bar", "foo=1"}, + }, + }, + }, } for _, tc := range testCases { err := Validate(tc.config) @@ -316,6 +330,20 @@ func TestValidateConfiguration(t *testing.T) { }, }, }, + { + config: &Config{ + CommonConfig: CommonConfig{ + NodeGenericResources: []string{"foo=bar", "foo=baz"}, + }, + }, + }, + { + config: &Config{ + CommonConfig: CommonConfig{ + NodeGenericResources: []string{"foo=1"}, + }, + }, + }, } for _, tc := range testCases { err := Validate(tc.config)