aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-19 08:04:14 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-19 08:04:14 +0000
commit1e5e1977fab21941e6bd2158e6cf10680ceaa2f6 (patch)
tree24c3e5279786bd0ccf9816e9d1076d067b6cee43 /tests
parentae0cdbea1100a09d0c46191dd7e5d8d5eec8d484 (diff)
parent3fa27a2a339c09516b5ab52c5b0f1ef01f0928e2 (diff)
Merge "apiserver: mock socket.gethostbyname"
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/apiserver/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/apiserver/__init__.py b/tests/unit/apiserver/__init__.py
index 1c9d5a672..5e1ed2ea1 100644
--- a/tests/unit/apiserver/__init__.py
+++ b/tests/unit/apiserver/__init__.py
@@ -1,5 +1,6 @@
from __future__ import absolute_import
+import mock
import os
import socket
import unittest
@@ -16,6 +17,10 @@ class APITestCase(unittest.TestCase):
self.db_fd, self.db_path = tempfile.mkstemp()
consts.SQLITE = 'sqlite:///{}'.format(self.db_path)
+ # server calls gethostbyname which takes 4 seconds, and we should mock it anyway
+ self.socket_mock = mock.patch.dict("sys.modules", {"socket": mock.MagicMock(
+ **{"gethostbyname.return_value": "127.0.0.1", "gethostname.return_value": "localhost"})})
+ self.socket_mock.start()
try:
from api import server
except socket.gaierror:
@@ -30,6 +35,7 @@ class APITestCase(unittest.TestCase):
def tearDown(self):
os.close(self.db_fd)
os.unlink(self.db_path)
+ self.socket_mock.stop()
def _post(self, url, data):
headers = {'Content-Type': 'application/json'}