summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Falcon <james.falcon@canonical.com>2021-10-29 14:54:33 -0500
committerGitHub <noreply@github.com>2021-10-29 14:54:33 -0500
commit0f8428f6227106c28615384d49a3e55e5c14dc17 (patch)
tree3779ba3e85a5bfe265b73d14619bfb36f5f643e4
parent28581988da4b37e3d2423075c64dc1f3bc5da5cc (diff)
downloadcloud-init-git-0f8428f6227106c28615384d49a3e55e5c14dc17.tar.gz
Add necessary mocks to test_ovf unit tests (#1087)
-rw-r--r--tests/unittests/test_datasource/test_ovf.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/unittests/test_datasource/test_ovf.py b/tests/unittests/test_datasource/test_ovf.py
index f5818a3a..ad7446f8 100644
--- a/tests/unittests/test_datasource/test_ovf.py
+++ b/tests/unittests/test_datasource/test_ovf.py
@@ -518,10 +518,16 @@ class TestDatasourceOVF(CiTestCase):
'vmware (%s/seed/ovf-env.xml)' % self.tdir,
ds.subplatform)
- def test_get_data_vmware_guestinfo_with_network_config(self):
+ @mock.patch('cloudinit.subp.subp')
+ @mock.patch('cloudinit.sources.DataSource.persist_instance_data')
+ def test_get_data_vmware_guestinfo_with_network_config(
+ self, m_persist, m_subp
+ ):
self._test_get_data_with_network_config(guestinfo=False, iso=True)
- def test_get_data_iso9660_with_network_config(self):
+ @mock.patch('cloudinit.subp.subp')
+ @mock.patch('cloudinit.sources.DataSource.persist_instance_data')
+ def test_get_data_iso9660_with_network_config(self, m_persist, m_subp):
self._test_get_data_with_network_config(guestinfo=True, iso=False)
def _test_get_data_with_network_config(self, guestinfo, iso):