Esempio n. 1
0
 def test_nginx_status(self):
     result = nginx.status()
     nginx._urlopen.assert_called_once_with('http://127.0.0.1/status')
     self.assertEqual(result, {
         'active connections': 7,
         'accepted': 46756,
         'handled': 46756,
         'requests': 89318,
         'reading': 0,
         'writing': 7,
         'waiting': 0,
     })
Esempio n. 2
0
 def test_nginx_status(self):
     result = nginx.status()
     nginx._urlopen.assert_called_once_with('http://127.0.0.1/status')
     self.assertEqual(result, {
         'active connections': 7,
         'accepted': 46756,
         'handled': 46756,
         'requests': 89318,
         'reading': 0,
         'writing': 7,
         'waiting': 0,
     })
Esempio n. 3
0
 def test_nginx_status(self):
     result = nginx.status()
     nginx._urlopen.assert_called_once_with("http://127.0.0.1/status")
     self.assertEqual(
         result,
         {
             "active connections": 7,
             "accepted": 46756,
             "handled": 46756,
             "requests": 89318,
             "reading": 0,
             "writing": 7,
             "waiting": 0,
         },
     )
Esempio n. 4
0
 def test_nginx_status(self):
     mock = Mock(return_value=MockUrllibStatus())
     with patch("urllib.request.urlopen", mock):
         result = nginx.status()
     mock.assert_called_once_with("http://127.0.0.1/status")
     self.assertEqual(
         result,
         {
             "active connections": 7,
             "accepted": 46756,
             "handled": 46756,
             "requests": 89318,
             "reading": 0,
             "writing": 7,
             "waiting": 0,
         },
     )
Esempio n. 5
0
 def test_nginx_status_with_arg(self):
     other_path = 'http://localhost/path'
     result = nginx.status(other_path)
     nginx._urlopen.assert_called_once_with(other_path)
Esempio n. 6
0
 def test_nginx_status_with_arg(self):
     mock = Mock(return_value=MockUrllibStatus())
     other_path = "http://localhost/path"
     with patch("urllib.request.urlopen", mock):
         result = nginx.status(other_path)
     mock.assert_called_once_with(other_path)
Esempio n. 7
0
 def test_nginx_status_with_arg(self):
     other_path = "http://localhost/path"
     result = nginx.status(other_path)
     nginx._urlopen.assert_called_once_with(other_path)
Esempio n. 8
0
 def test_nginx_status_with_arg(self):
     other_path = 'http://localhost/path'
     result = nginx.status(other_path)
     urllib2.urlopen.assert_called_once_with(other_path)