aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-12-02 07:46:16 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-02 07:46:16 +0000
commitad55c7770cb290085682af170876c03653059a81 (patch)
treed935a20294da6a4c6394680a31f5f593b0291170
parent174e2273fab05ecf480201b33fd109003573ac0b (diff)
parent81189460862be9d03c951c318df6ada2ffefb02f (diff)
Merge "Allow unit testing w/o internet connectivity"
-rw-r--r--functest/tests/unit/utils/test_utils.py27
1 files changed, 21 insertions, 6 deletions
diff --git a/functest/tests/unit/utils/test_utils.py b/functest/tests/unit/utils/test_utils.py
index 835797f7c..8b6c5e1b9 100644
--- a/functest/tests/unit/utils/test_utils.py
+++ b/functest/tests/unit/utils/test_utils.py
@@ -8,7 +8,9 @@
# http://www.apache.org/licenses/LICENSE-2.0
import logging
+import mock
import unittest
+import urllib2
from functest.utils import functest_utils
@@ -18,12 +20,25 @@ class FunctestUtilsTesting(unittest.TestCase):
logging.disable(logging.CRITICAL)
def setUp(self):
- self.test = functest_utils
-
- def test_check_internet_connectivity(self):
- self.assertTrue(self.test.check_internet_connectivity())
-# TODO
-# ...
+ self.url = 'http://www.opnfv.org/'
+ self.timeout = 5
+
+ @mock.patch('urllib2.urlopen',
+ side_effect=urllib2.URLError('no host given'))
+ def test_check_internet_connectivity_failed(self, mock_method):
+ self.assertFalse(functest_utils.check_internet_connectivity())
+ mock_method.assert_called_once_with(self.url, timeout=self.timeout)
+
+ @mock.patch('urllib2.urlopen')
+ def test_check_internet_connectivity_default(self, mock_method):
+ self.assertTrue(functest_utils.check_internet_connectivity())
+ mock_method.assert_called_once_with(self.url, timeout=self.timeout)
+
+ @mock.patch('urllib2.urlopen')
+ def test_check_internet_connectivity_debian(self, mock_method):
+ self.url = "https://www.debian.org/"
+ self.assertTrue(functest_utils.check_internet_connectivity(self.url))
+ mock_method.assert_called_once_with(self.url, timeout=self.timeout)
if __name__ == "__main__":