summaryrefslogtreecommitdiff
path: root/tests/unittests/test_vmware/test_guestcust_util.py
diff options
context:
space:
mode:
authorBrett Holman <bholman.devel@gmail.com>2021-12-03 13:11:46 -0700
committerGitHub <noreply@github.com>2021-12-03 13:11:46 -0700
commit039c40f9b3d88ee8158604bb18ca4bf2fb5d5e51 (patch)
tree5f1b09486ccaf98ee8159de58d9a2a1ef0af5dc1 /tests/unittests/test_vmware/test_guestcust_util.py
parentffa6fc88249aa080aa31811a45569a45e567418a (diff)
downloadvyos-cloud-init-039c40f9b3d88ee8158604bb18ca4bf2fb5d5e51.tar.gz
vyos-cloud-init-039c40f9b3d88ee8158604bb18ca4bf2fb5d5e51.zip
Reorganize unit test locations under tests/unittests (#1126)
This attempts to standardize unit test file location under test/unittests/ such that any source file located at cloudinit/path/to/file.py may have a corresponding unit test file at test/unittests/path/to/test_file.py. Noteworthy Comments: ==================== Four different duplicate test files existed: test_{gpg,util,cc_mounts,cc_resolv_conf}.py Each of these duplicate file pairs has been merged together. This is a break in git history for these files. The test suite appears to have a dependency on test order. Changing test order causes some tests to fail. This should be rectified, but for now some tests have been modified in tests/unittests/config/test_set_passwords.py. A helper class name starts with "Test" which causes pytest to try executing it as a test case, which then throws warnings "due to Class having __init__()". Silence by changing the name of the class. # helpers.py is imported in many test files, import paths change cloudinit/tests/helpers.py -> tests/unittests/helpers.py # Move directories: cloudinit/distros/tests -> tests/unittests/distros cloudinit/cmd/devel/tests -> tests/unittests/cmd/devel cloudinit/cmd/tests -> tests/unittests/cmd/ cloudinit/sources/helpers/tests -> tests/unittests/sources/helpers cloudinit/sources/tests -> tests/unittests/sources cloudinit/net/tests -> tests/unittests/net cloudinit/config/tests -> tests/unittests/config cloudinit/analyze/tests/ -> tests/unittests/analyze/ # Standardize tests already in tests/unittests/ test_datasource -> sources test_distros -> distros test_vmware -> sources/vmware test_handler -> config # this contains cloudconfig module tests test_runs -> runs
Diffstat (limited to 'tests/unittests/test_vmware/test_guestcust_util.py')
-rw-r--r--tests/unittests/test_vmware/test_guestcust_util.py98
1 files changed, 0 insertions, 98 deletions
diff --git a/tests/unittests/test_vmware/test_guestcust_util.py b/tests/unittests/test_vmware/test_guestcust_util.py
deleted file mode 100644
index c8b59d83..00000000
--- a/tests/unittests/test_vmware/test_guestcust_util.py
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright (C) 2019 Canonical Ltd.
-# Copyright (C) 2019 VMware INC.
-#
-# Author: Xiaofeng Wang <xiaofengw@vmware.com>
-#
-# This file is part of cloud-init. See LICENSE file for license information.
-
-from cloudinit import subp
-from cloudinit.sources.helpers.vmware.imc.config import Config
-from cloudinit.sources.helpers.vmware.imc.config_file import ConfigFile
-from cloudinit.sources.helpers.vmware.imc.guestcust_util import (
- get_tools_config,
- set_gc_status,
-)
-from cloudinit.tests.helpers import CiTestCase, mock
-
-
-class TestGuestCustUtil(CiTestCase):
- def test_get_tools_config_not_installed(self):
- """
- This test is designed to verify the behavior if vmware-toolbox-cmd
- is not installed.
- """
- with mock.patch.object(subp, 'which', return_value=None):
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'), 'defaultVal')
-
- def test_get_tools_config_internal_exception(self):
- """
- This test is designed to verify the behavior if internal exception
- is raised.
- """
- with mock.patch.object(subp, 'which', return_value='/dummy/path'):
- with mock.patch.object(subp, 'subp',
- return_value=('key=value', b''),
- side_effect=subp.ProcessExecutionError(
- "subp failed", exit_code=99)):
- # verify return value is 'defaultVal', not 'value'.
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'),
- 'defaultVal')
-
- def test_get_tools_config_normal(self):
- """
- This test is designed to verify the value could be parsed from
- key = value of the given [section]
- """
- with mock.patch.object(subp, 'which', return_value='/dummy/path'):
- # value is not blank
- with mock.patch.object(subp, 'subp',
- return_value=('key = value ', b'')):
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'),
- 'value')
- # value is blank
- with mock.patch.object(subp, 'subp',
- return_value=('key = ', b'')):
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'),
- '')
- # value contains =
- with mock.patch.object(subp, 'subp',
- return_value=('key=Bar=Wark', b'')):
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'),
- 'Bar=Wark')
-
- # value contains specific characters
- with mock.patch.object(subp, 'subp',
- return_value=('[a] b.c_d=e-f', b'')):
- self.assertEqual(
- get_tools_config('section', 'key', 'defaultVal'),
- 'e-f')
-
- def test_set_gc_status(self):
- """
- This test is designed to verify the behavior of set_gc_status
- """
- # config is None, return None
- self.assertEqual(set_gc_status(None, 'Successful'), None)
-
- # post gc status is NO, return None
- cf = ConfigFile("tests/data/vmware/cust-dhcp-2nic.cfg")
- conf = Config(cf)
- self.assertEqual(set_gc_status(conf, 'Successful'), None)
-
- # post gc status is YES, subp is called to execute command
- cf._insertKey("MISC|POST-GC-STATUS", "YES")
- conf = Config(cf)
- with mock.patch.object(subp, 'subp',
- return_value=('ok', b'')) as mockobj:
- self.assertEqual(
- set_gc_status(conf, 'Successful'), ('ok', b''))
- mockobj.assert_called_once_with(
- ['vmware-rpctool', 'info-set guestinfo.gc.status Successful'],
- rcs=[0])
-
-# vi: ts=4 expandtab