1
0
mirror of synced 2024-11-22 21:16:07 +03:00

check correct decoding from json

This commit is contained in:
Pavel 2020-04-08 14:17:21 +03:00
parent f144d5c1c1
commit bb46781244

View File

@ -247,7 +247,21 @@ func TestMgClient_TransportTemplates(t *testing.T) {
assert.NoError(t, err, fmt.Sprintf("%d %s", status, err)) assert.NoError(t, err, fmt.Sprintf("%d %s", status, err))
t.Logf("Templates found: %#v", len(data)) t.Logf("Templates found: %#v", len(data))
t.Logf("%#v", data)
for _, item := range data {
for _, tpl := range item.Template {
if tpl.Type == TemplateItemTypeText {
assert.Empty(t, tpl.VarType)
} else {
assert.Empty(t, tpl.Text)
assert.NotEmpty(t, tpl.VarType)
if _, ok := templateVarAssoc[tpl.VarType]; !ok {
t.Errorf("unknown TemplateVar type %s", tpl.VarType)
}
}
}
}
} }
func TestMgClient_ActivateTemplate(t *testing.T) { func TestMgClient_ActivateTemplate(t *testing.T) {