forked from nixys/nxs-go-zabbix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usermacro_test.go
108 lines (83 loc) · 2.38 KB
/
usermacro_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package zabbix
import (
"reflect"
"testing"
)
const (
testHostmacroMacro = "{$TEST_USER_MACRO}"
testHostmacroValue = "testUsermacroValue"
)
func TestHostmacroCRUD(t *testing.T) {
var z Context
// Login
loginTest(&z, t)
defer logoutTest(&z, t)
// Preparing auxiliary data
hgCreatedIDs := testHostgroupCreate(t, z)
defer testHostgroupDelete(t, z, hgCreatedIDs)
tCreatedIDs := testTemplateCreate(t, z, hgCreatedIDs)
defer testTemplateDelete(t, z, tCreatedIDs)
hCreatedIDs := testHostCreate(t, z, hgCreatedIDs, tCreatedIDs)
defer testHostDelete(t, z, hCreatedIDs)
// Create and delete
hmCreatedIDs := testHostmacroCreate(t, z, hCreatedIDs[0])
defer testHostmacroDelete(t, z, hmCreatedIDs)
// Get
testHostmacroGet(t, z, hmCreatedIDs)
}
func testHostmacroCreate(t *testing.T, z Context, hCreatedID int) []int {
hmCreatedIDs, _, err := z.HostmacroCreate([]UsermacroObject{
{
HostID: hCreatedID,
Macro: testHostmacroMacro,
Value: testHostmacroValue,
},
})
if err != nil {
t.Fatal("Hostmacro create error:", err)
}
if len(hmCreatedIDs) == 0 {
t.Fatal("Hostmacro create error: empty IDs array")
}
t.Logf("Hostmacro create: success")
return hmCreatedIDs
}
func testHostmacroDelete(t *testing.T, z Context, hmCreatedIDs []int) []int {
hmDeletedIDs, _, err := z.HostmacroDelete(hmCreatedIDs)
if err != nil {
t.Fatal("Hostmacro delete error:", err)
}
if len(hmDeletedIDs) == 0 {
t.Fatal("Hostmacro delete error: empty IDs array")
}
if reflect.DeepEqual(hmDeletedIDs, hmCreatedIDs) == false {
t.Fatal("Hostmacro delete error: IDs arrays for created and deleted hostmacro are mismatch")
}
t.Logf("Hostmacro delete: success")
return hmDeletedIDs
}
func testHostmacroGet(t *testing.T, z Context, hmCreatedIDs []int) []UsermacroObject {
hmObjects, _, err := z.UsermacroGet(UsermacroGetParams{
HostmacroIDs: hmCreatedIDs,
SelectGroups: SelectExtendedOutput,
SelectHosts: SelectExtendedOutput,
SelectTemplates: SelectExtendedOutput,
GetParameters: GetParameters{
Filter: map[string]interface{}{
"macro": testHostmacroMacro,
"value": testHostmacroValue,
},
Output: SelectExtendedOutput,
},
})
if err != nil {
t.Error("Hostmacro get error:", err)
} else {
if len(hmObjects) == 0 {
t.Error("Hostmacro get error: unable to find created hostmacro")
} else {
t.Logf("Hostmacro get: success")
}
}
return hmObjects
}