Test return code for monitoring no pool

This commit is contained in:
Aaron Whitehouse 2022-03-17 14:34:08 +00:00
parent 26777c2c68
commit 501c9921c4
1 changed files with 8 additions and 0 deletions

View File

@ -19,12 +19,20 @@ def monitor_snapshots_command():
class TestMonitoringOutput(unittest.TestCase):
def test_no_zpool(self):
"""Test what happens if there is no zpool at all"""
return_info = monitor_snapshots_command()
self.assertEqual(return_info.stdout, b"CRIT: sanoid-test-1 has no daily snapshots at all!, CRIT: sanoid-test-1 has no hourly snapshots at all!, CRIT: sanoid-test-1 has no monthly snapshots at all!, CRIT: sanoid-test-2 has no daily snapshots at all!, CRIT: sanoid-test-2 has no hourly snapshots at all!, CRIT: sanoid-test-2 has no monthly snapshots at all!\n")
self.assertEqual(return_info.returncode, 0)
# def test_with_zpool_no_snapshots(self):
# """Test what happens if there is a zpool at all"""
# return_info = monitor_snapshots_command()
# self.assertEqual(return_info.stdout, b"CRIT: sanoid-test-1 has no daily snapshots at all!, CRIT: sanoid-test-1 has no hourly snapshots at all!, CRIT: sanoid-test-1 has no monthly snapshots at all!, CRIT: sanoid-test-2 has no daily snapshots at all!, CRIT: sanoid-test-2 has no hourly snapshots at all!, CRIT: sanoid-test-2 has no monthly snapshots at all!\n")
if __name__ == '__main__':