summaryrefslogtreecommitdiffstats
path: root/tests/unit/network_services/helpers/test_samplevnf_helper.py
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2018-04-26 04:57:44 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-04-26 04:57:44 +0000
commit14094f7bf478224d5631494d1fa41bf9e8ba2cde (patch)
treef08b882bb36d3a39f08c14781eb205640467b241 /tests/unit/network_services/helpers/test_samplevnf_helper.py
parent2ea488b1df9eee441b41e81f1fbdb10dfb3817b0 (diff)
parentd7f8717c3beb1854976e77d56823f482497ffff3 (diff)
Merge "Fix "os.path" mock problems during tests"
Diffstat (limited to 'tests/unit/network_services/helpers/test_samplevnf_helper.py')
-rw-r--r--tests/unit/network_services/helpers/test_samplevnf_helper.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/unit/network_services/helpers/test_samplevnf_helper.py b/tests/unit/network_services/helpers/test_samplevnf_helper.py
index 3b6c89d3a..dc74b1859 100644
--- a/tests/unit/network_services/helpers/test_samplevnf_helper.py
+++ b/tests/unit/network_services/helpers/test_samplevnf_helper.py
@@ -143,8 +143,6 @@ class TestMultiPortConfig(unittest.TestCase):
def setUp(self):
self._mock_open = mock.patch.object(six.moves.builtins, 'open')
self.mock_open = self._mock_open.start()
- self._mock_os = mock.patch.object(os, 'path')
- self.mock_os = self._mock_os.start()
self._mock_config_parser = mock.patch.object(
samplevnf_helper, 'ConfigParser')
self.mock_config_parser = self._mock_config_parser.start()
@@ -153,7 +151,6 @@ class TestMultiPortConfig(unittest.TestCase):
def _cleanup(self):
self._mock_open.stop()
- self._mock_os.stop()
self._mock_config_parser.stop()
def test_validate_ip_and_prefixlen(self):
@@ -185,7 +182,8 @@ class TestMultiPortConfig(unittest.TestCase):
samplevnf_helper.MultiPortConfig.validate_ip_and_prefixlen(
'::1', '129')
- def test___init__(self):
+ @mock.patch.object(os.path, 'isfile', return_value=False)
+ def test___init__(self, *args):
topology_file = mock.Mock()
config_tpl = mock.Mock()
tmp_file = mock.Mock()
@@ -193,8 +191,6 @@ class TestMultiPortConfig(unittest.TestCase):
opnfv_vnf = samplevnf_helper.MultiPortConfig(
topology_file, config_tpl, tmp_file, vnfd_mock)
self.assertEqual(0, opnfv_vnf.swq)
- self.mock_os.path = mock.MagicMock()
- self.mock_os.path.isfile = mock.Mock(return_value=False)
opnfv_vnf = samplevnf_helper.MultiPortConfig(
topology_file, config_tpl, tmp_file, vnfd_mock)
self.assertEqual(0, opnfv_vnf.swq)