salt/tests/unit/modules/nginx_test.py

58 lines
1.6 KiB
Python
Raw Normal View History

2014-01-29 21:17:43 +00:00
# -*- coding: utf-8 -*-
2014-11-19 23:15:03 +00:00
# Import 3rd-party libs
from salt.ext.six.moves.urllib.request import urlopen # pylint: disable=no-name-in-module,import-error
2014-01-29 21:17:43 +00:00
# Import Salt Testing libs
2014-01-29 21:23:58 +00:00
from salttesting import skipIf, TestCase
2014-01-29 21:17:43 +00:00
from salttesting.helpers import ensure_in_syspath
2014-01-29 21:23:58 +00:00
from salttesting.mock import NO_MOCK, NO_MOCK_REASON, Mock, patch
2014-01-29 21:17:43 +00:00
from salt.modules import nginx
ensure_in_syspath('../../')
2014-01-30 03:30:26 +00:00
MOCK_STATUS_OUTPUT = """Active connections: 7
2014-01-29 21:17:43 +00:00
server accepts handled requests
2014-01-30 03:30:26 +00:00
46756 46756 89318
2014-01-29 21:17:43 +00:00
Reading: 0 Writing: 7 Waiting: 0"""
2014-01-29 22:06:08 +00:00
2014-01-29 21:17:43 +00:00
class MockUrllibStatus(object):
"""Mock of urllib2 call for Nginx status"""
def read(self):
return MOCK_STATUS_OUTPUT
2014-01-29 22:06:08 +00:00
2014-01-29 21:17:43 +00:00
def close(self):
pass
2014-01-29 22:06:08 +00:00
2014-01-29 21:23:58 +00:00
@skipIf(NO_MOCK, NO_MOCK_REASON)
2014-01-29 21:17:43 +00:00
@patch('salt.utils.which', Mock(return_value='/usr/bin/nginx'))
class NginxTestCase(TestCase):
2014-11-19 23:15:03 +00:00
@patch('urlopen', Mock(return_value=MockUrllibStatus()))
2014-01-29 21:17:43 +00:00
def test_nginx_status(self):
result = nginx.status()
2014-11-19 23:15:03 +00:00
urlopen.assert_called_once_with('http://127.0.0.1/status')
2014-01-29 21:17:43 +00:00
self.assertEqual(result, {
'active connections': 7,
'accepted': 46756,
'handled': 46756,
'requests': 89318,
'reading': 0,
'writing': 7,
'waiting': 0,
})
2014-11-19 23:15:03 +00:00
@patch('urlopen', Mock(return_value=MockUrllibStatus()))
2014-01-29 21:17:43 +00:00
def test_nginx_status_with_arg(self):
other_path = 'http://localhost/path'
result = nginx.status(other_path)
2014-11-19 23:15:03 +00:00
urlopen.assert_called_once_with(other_path)
2014-01-29 22:06:08 +00:00
2014-01-29 21:17:43 +00:00
if __name__ == '__main__':
from integration import run_tests
2014-01-29 22:06:08 +00:00
run_tests(NginxTestCase, needs_daemon=False)