Add handling of empty JSON return values

- Will now throw a CRITICAL
This commit is contained in:
Markus Opolka 2020-06-26 10:39:37 +02:00
parent 47bdea7fc5
commit 25fb340bbb
3 changed files with 24 additions and 2 deletions

View File

@ -346,6 +346,8 @@ class JsonRuleProcessor:
def checkCritical(self):
failure = ''
if not self.data:
failure = " Empty JSON data."
if self.key_threshold_critical is not None:
failure += self.checkThresholds(self.key_threshold_critical)
if self.key_value_list_critical is not None:

View File

@ -256,7 +256,7 @@ class UtilTest(unittest.TestCase):
# This should not throw a KeyError
data = '{}'
self.check_data(rules.dash_q(['(0).Node,foobar', '(1).Node,missing']), data, WARNING_CODE)
self.check_data(rules.dash_q(['(0).Node,foobar', '(1).Node,missing']), data, CRITICAL_CODE)
def test_subelem(self):
@ -274,3 +274,23 @@ class UtilTest(unittest.TestCase):
self.check_data(rules.dash_E(['(*).capacity.value.too_deep']), data, CRITICAL_CODE)
# Should not throw keyerror
self.check_data(rules.dash_E(['foo']), data, CRITICAL_CODE)
def test_empty_key_value_array(self):
"""
https://github.com/drewkerrigan/nagios-http-json/issues/61
"""
rules = RulesHelper()
# This should simply work
data = '[{"update_status": "finished"},{"update_status": "finished"}]'
self.check_data(rules.dash_q(['(*).update_status,finished']), data, OK_CODE)
# This should warn us
data = '[{"update_status": "finished"},{"update_status": "failure"}]'
self.check_data(rules.dash_q(['(*).update_status,finished']), data, WARNING_CODE)
# This should throw an error
data = '[]'
self.check_data(rules.dash_q(['(*).update_status,warn_me']), data, CRITICAL_CODE)

View File

@ -12,7 +12,7 @@ from check_http_json import main
class MockResponse():
def __init__(self, status_code=200, content='{}'):
def __init__(self, status_code=200, content='{"foo": "bar"}'):
self.status_code = status_code
self.content = content