Exemplo n.º 1
0
 def test_perfdata_with_thresholds(self):
     """Test what is generated when performance AND thresholds are given"""
     n = NagiosResult('hello', a_metric=1, a_metric_critical=2)
     self.assertEqual(n.a_metric_critical, 2, "Threshold for a perfdata is a normal key")
     self.assertEqual(len(n.__dict__.keys()), 3, "All keys correctly stored in the object")
     self.assertTrue(n.__str__().endswith('a_metric=1;;2;'),
                     "Critical threshold in correct position")
     n.a_metric_warning = 5
     self.assertTrue(n.__str__().endswith('a_metric=1;5;2;'),
                     "Warning threshold in correct position")
Exemplo n.º 2
0
 def test_perfdata_with_thresholds(self):
     """Test what is generated when performance AND thresholds are given"""
     n = NagiosResult('hello', a_metric=1, a_metric_critical=2)
     self.assertEqual(n.a_metric_critical, 2, "Threshold for a perfdata is a normal key")
     self.assertEqual(len(n.__dict__.keys()), 3, "All keys correctly stored in the object")
     self.assertTrue(n.__str__().endswith('a_metric=1;;2;'),
                     "Critical threshold in correct position")
     n.a_metric_warning = 5
     self.assertTrue(n.__str__().endswith('a_metric=1;5;2;'),
                     "Warning threshold in correct position")
Exemplo n.º 3
0
 def test_perfdata_no_thresholds(self):
     """Test what is generated when performance data with no thresholds is given"""
     n = NagiosResult('hello', a_metric=1)
     self.assertEqual(n.message, 'hello', 'Class message correctly filled in')
     self.assertEqual(n.a_metric, 1, "Performance data correctly filled in")
     self.assertEqual(len(n.__dict__.keys()), 2, "No extra fields added")
     self.assertEqual(n.__str__(), 'hello | a_metric=1;;;',
                      'Performance data with no thresholds correctly stringified')
Exemplo n.º 4
0
 def test_no_perfdata(self):
     """Test what is generated when no performance data is given"""
     n = NagiosResult('hello')
     self.assertEqual(n.message, 'hello', 'Class correctly filled in')
     self.assertEqual(len(n.__dict__.keys()), 1,
                      'Nothing gets added with no performance data')
     self.assertEqual(n.__str__(), n.message,
                      'Correct stringification with no performance data')
Exemplo n.º 5
0
 def test_perfdata_no_thresholds(self):
     """Test what is generated when performance data with no thresholds is given"""
     n = NagiosResult('hello', a_metric=1)
     self.assertEqual(n.message, 'hello', 'Class message correctly filled in')
     self.assertEqual(n.a_metric, 1, "Performance data correctly filled in")
     self.assertEqual(len(n.__dict__.keys()), 2, "No extra fields added")
     self.assertEqual(n.__str__(), 'hello | a_metric=1;;;',
                      'Performance data with no thresholds correctly stringified')
Exemplo n.º 6
0
 def test_no_perfdata(self):
     """Test what is generated when no performance data is given"""
     n = NagiosResult('hello')
     self.assertEqual(n.message, 'hello', 'Class correctly filled in')
     self.assertEqual(len(n.__dict__.keys()), 1, 'Nothing gets added with no performance data')
     self.assertEqual(n.__str__(), n.message, 'Correct stringification with no performance data')