mirror of
https://github.com/drewkerrigan/nagios-http-json.git
synced 2024-11-22 10:23:50 +01:00
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
#!/usr/bin/env python3
|
|
|
|
|
|
import unittest
|
|
import unittest.mock as mock
|
|
import sys
|
|
import os
|
|
|
|
sys.path.append('..')
|
|
|
|
from check_http_json import main
|
|
|
|
|
|
class MockResponse():
|
|
def __init__(self, status_code=200, content='{}'):
|
|
self.status_code = status_code
|
|
self.content = content
|
|
|
|
def read(self):
|
|
return self.content
|
|
|
|
|
|
class MainTest(unittest.TestCase):
|
|
"""
|
|
Tests for Main
|
|
"""
|
|
|
|
@mock.patch('builtins.print')
|
|
def test_main_version(self, mock_print):
|
|
args = ['--version']
|
|
|
|
with self.assertRaises(SystemExit) as test:
|
|
main(args)
|
|
|
|
mock_print.assert_called_once()
|
|
self.assertEqual(test.exception.code, 0)
|
|
|
|
@mock.patch('builtins.print')
|
|
@mock.patch('urllib.request.urlopen')
|
|
def test_main_with_ssl(self, mock_request, mock_print):
|
|
args = '-H localhost --ssl'.split(' ')
|
|
|
|
mock_request.return_value = MockResponse()
|
|
|
|
with self.assertRaises(SystemExit) as test:
|
|
main(args)
|
|
|
|
self.assertEqual(test.exception.code, 0)
|
|
|
|
|
|
@mock.patch('builtins.print')
|
|
@mock.patch('urllib.request.urlopen')
|
|
def test_main_with_error(self, mock_request, mock_print):
|
|
args = '-H localhost'.split(' ')
|
|
|
|
mock_request.return_value = MockResponse(content='not JSON')
|
|
|
|
with self.assertRaises(SystemExit) as test:
|
|
main(args)
|
|
|
|
# Returns Parser Error
|
|
self.assertEqual(test.exception.code, 3)
|