improved sdnpublisher schema

This commit is contained in:
Martino Ferrari
2026-01-28 00:07:10 +01:00
parent 6781d50ee4
commit 597fd3eddf
2 changed files with 24 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ func TestSDNSubscriberValidation(t *testing.T) {
+MySDN = {
Class = SDNSubscriber
Address = "239.0.0.1"
// Missing Port
// Missing Interface
}
`
p := parser.NewParser(content)
@@ -32,7 +32,7 @@ func TestSDNSubscriberValidation(t *testing.T) {
found := false
for _, d := range v.Diagnostics {
if strings.Contains(d.Message, "Port: incomplete value") {
if strings.Contains(d.Message, "Interface: field is required but not present") {
found = true
break
}