1
1
import pytest
2
+ import logging
2
3
3
4
from zabbix_cachet .zabbix import Zabbix
4
5
5
6
SERVICE_WITH_DEP_NAME = 'Service with dependencies'
6
7
SERVICE_WO_DEP_NAME = 'Single Service'
8
+ SERVICE_SEPARATE_ROOT = 'Separate service under root'
7
9
8
10
TRIGGER_ID = '16199'
9
11
SERVICES = [
20
22
'goodsla' : '99.9' , 'sortorder' : '0' , 'dependencies' : []}
21
23
]
22
24
25
+ log_level = logging .getLevelName ('DEBUG' )
26
+ log_level_requests = logging .getLevelName ('DEBUG' )
27
+ logging .basicConfig (
28
+ level = log_level ,
29
+ format = '%(asctime)s %(levelname)s: (%(threadName)s) %(message)s' ,
30
+ datefmt = '%Y-%m-%d %H:%M:%S %Z'
31
+ )
32
+ logging .getLogger ("requests" ).setLevel (log_level_requests )
33
+
23
34
24
35
@pytest .fixture (name = 'zabbix' , scope = 'class' )
25
36
def zabbix_init (config ):
@@ -29,50 +40,69 @@ def zabbix_init(config):
29
40
zabbix = Zabbix (zabbix_config ['server' ], zabbix_config ['user' ], zabbix_config ['pass' ],
30
41
zabbix_config ['https-verify' ])
31
42
root_service = zabbix .zapi .service .get (filter = {'name' : setting_config ['root_service' ]})
43
+ root_separate = zabbix .zapi .service .get (filter = {'name' : SERVICE_SEPARATE_ROOT })
44
+
45
+ zabbix_service_template = {'name' : '' , 'algorithm' : 0 , 'sortorder' : 0 }
46
+ if not root_separate :
47
+ service = dict .copy (zabbix_service_template )
48
+ service .update ({'name' : SERVICE_SEPARATE_ROOT })
49
+ if zabbix .version_major < 6 :
50
+ service .update ({'showsla' : 0 })
51
+ zabbix .zapi .service .create (** service )
52
+
32
53
if not root_service :
33
- root_service = zabbix .zapi .service .create (
34
- name = setting_config ['root_service' ],
35
- algorithm = 0 ,
36
- sortorder = 0 ,
37
- showsla = 0 ,
38
- )
39
- root_service_id = root_service ['serviceids' ][0 ]
40
- zabbix .zapi .service .create (
41
- name = SERVICE_WO_DEP_NAME ,
42
- algorithm = 1 ,
43
- sortorder = 0 ,
44
- showsla = 0 ,
45
- triggerid = TRIGGER_ID ,
46
- parentid = root_service_id
47
- )
48
- second_service = zabbix .zapi .service .create (
49
- name = SERVICE_WITH_DEP_NAME ,
50
- algorithm = 1 ,
51
- sortorder = 0 ,
52
- showsla = 0 ,
53
- parentid = root_service_id ,
54
- )
55
- second_service_id = second_service ['serviceids' ][0 ]
54
+ # root_service
55
+ service = dict .copy (zabbix_service_template )
56
+ service .update ({'name' : setting_config ['root_service' ]})
57
+ if zabbix .version_major < 6 :
58
+ service .update ({'showsla' : 0 })
59
+ root_service = zabbix .zapi .service .create (** service )
60
+ root_service_id = int (root_service ['serviceids' ][0 ])
61
+
62
+ # SERVICE_WO_DEP_NAME
63
+ service = dict .copy (zabbix_service_template )
64
+ service .update ({'name' : SERVICE_WO_DEP_NAME })
65
+ if zabbix .version_major < 6 :
66
+ service .update ({'showsla' : 0 , 'triggerid' : TRIGGER_ID , 'parentid' : str (root_service_id )})
67
+ else :
68
+ service .update ({
69
+ 'parents' : [{'serviceid' : root_service_id }],
70
+ 'problem_tags' : [{'tag' : 'scope' , 'value' : 'availability' }],
71
+ })
72
+ a = zabbix .zapi .service .create (** service )
73
+ print (a )
74
+ # SERVICE_WITH_DEP_NAME
75
+ service = dict .copy (zabbix_service_template )
76
+ service .update ({'name' : SERVICE_WITH_DEP_NAME })
77
+ if zabbix .version_major < 6 :
78
+ service .update ({'showsla' : 0 , 'parentid' : str (root_service_id )})
79
+ else :
80
+ service .update ({'parents' : [{'serviceid' : root_service_id }]})
81
+
82
+ second_service = zabbix .zapi .service .create (** service )
83
+ second_service_id = int (second_service ['serviceids' ][0 ])
84
+
85
+ # Dependency services
56
86
for service_name in ('dependency1' , 'dependency2' ):
57
- zabbix .zapi .service .create (
58
- name = service_name ,
59
- algorithm = 1 ,
60
- sortorder = 0 ,
61
- showsla = 0 ,
62
- triggerid = TRIGGER_ID ,
63
- parentid = second_service_id ,
64
- )
87
+ service = dict .copy (zabbix_service_template )
88
+ service .update ({'name' : service_name })
89
+ if zabbix .version_major < 6 :
90
+ service .update ({'showsla' : 0 , 'triggerid' : TRIGGER_ID , 'parentid' : str (second_service_id )})
91
+ else :
92
+ service .update ({
93
+ 'parents' : [{'serviceid' : second_service_id }],
94
+ 'problem_tags' : [{'tag' : 'scope' , 'value' : 'availability' }],
95
+ })
96
+ zabbix .zapi .service .create (** service )
97
+
65
98
return zabbix
66
99
67
100
68
101
def test_get_version (zabbix ):
69
102
assert isinstance (zabbix .version , str )
70
103
71
104
72
- def test_get_itservices (zabbix , config ):
73
- """
74
- :return:
75
- """
105
+ def test_get_itservices_with_root (zabbix , config ):
76
106
it_services = zabbix .get_itservices (config ['settings' ]['root_service' ])
77
107
assert len (it_services ) == 2
78
108
service_with_dep = it_services [1 ]
@@ -83,5 +113,20 @@ def test_get_itservices(zabbix, config):
83
113
assert len (service_with_dep .children ) == 2
84
114
assert service_with_dep .children [0 ].name == 'dependency1'
85
115
assert service_with_dep .children [1 ].name == 'dependency2'
86
- assert service_with_dep .children [1 ].triggerid == TRIGGER_ID
116
+ if zabbix .version_major < 6 :
117
+ assert service_with_dep .children [1 ].triggerid == TRIGGER_ID
87
118
# print(it_services)
119
+
120
+
121
+ def test_get_itservices_wo_root (zabbix , config ):
122
+ # Not supported after 6.0
123
+ if zabbix .version_major >= 6 :
124
+ return True
125
+ it_services = zabbix .get_itservices ()
126
+ assert len (it_services ) == 2
127
+ service_cachet = it_services [1 ]
128
+ service_separate = it_services [0 ]
129
+ assert service_cachet .name == config ['settings' ]['root_service' ]
130
+ assert service_separate .name == SERVICE_SEPARATE_ROOT
131
+ assert len (service_cachet .children ) == 2
132
+ assert len (service_separate .children ) == 0
0 commit comments