Files
charm-manila-generic/unit_tests/test_lib_charm_openstack_manila_generic.py
Hervé Beraud ab1d7e94a1 Use unittest.mock instead of mock
The mock third party library was needed for mock support in py2
runtimes. Since we now only support py36 and later, we can use the
standard lib unittest.mock module instead.

Note that https://github.com/openstack/charms.openstack is used during tests
and he need `mock`, unfortunatelly it doesn't declare `mock` in its
requirements so it retrieve mock from other charm project (cross dependency).
So we depend on charms.openstack first and when
Ib1ed5b598a52375e29e247db9ab4786df5b6d142 will be merged then CI
will pass without errors.

Depends-On: Ib1ed5b598a52375e29e247db9ab4786df5b6d142
Change-Id: I609298d09de3806636b8a157f4ef81c1ab567bf7
2021-12-15 09:35:05 +00:00

275 lines
12 KiB
Python

# Copyright 2016 Canonical Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from unittest import mock
import charm.openstack.manila_generic as manila_generic
import charms_openstack.test_utils as test_utils
class Helper(test_utils.PatchHelper):
def setUp(self):
super().setUp()
self.patch_release(manila_generic.ManilaGenericCharm.release)
class TestManilaGenericCharmConfigProperties(Helper):
def test_computed_use_password(self):
config = mock.MagicMock()
# test no password or driver_auth_type configured
config.driver_service_instance_password = None
config.driver_auth_type = None
self.assertFalse(manila_generic.computed_use_password(config))
# test with the password but no auth type configured.
config.driver_service_instance_password = 'hello'
self.assertFalse(manila_generic.computed_use_password(config))
# test with a driver password, and a configured string, but not
# password or both.
config.driver_auth_type = 'goodbye'
self.assertFalse(manila_generic.computed_use_password(config))
# test with 'password'
config.driver_auth_type = 'Password'
self.assertTrue(manila_generic.computed_use_password(config))
# test with 'BOTH'
config.driver_auth_type = 'BOTH'
self.assertTrue(manila_generic.computed_use_password(config))
# now test without the password again.
config.driver_service_instance_password = None
self.assertFalse(manila_generic.computed_use_password(config))
def test_computed_use_ssh(self):
config = mock.MagicMock()
# test that not being configured returns false.
config.driver_auth_type = None
self.assertFalse(manila_generic.computed_use_ssh(config))
# check that being either ssh or 'both' in upper/lower gives true
config.driver_auth_type = 'Ssh'
self.assertTrue(manila_generic.computed_use_ssh(config))
config.driver_auth_type = 'BOTH'
self.assertTrue(manila_generic.computed_use_ssh(config))
config.driver_auth_type = 'both'
self.assertTrue(manila_generic.computed_use_ssh(config))
def test_computed_define_ssh(self):
config = mock.MagicMock()
config.driver_service_ssh_key = None
config.driver_service_ssh_key_public = None
# test that function only returns true if both config items are set
self.assertFalse(manila_generic.computed_define_ssh(config))
config.driver_service_ssh_key = "ssh key"
config.driver_service_ssh_key_public = None
self.assertFalse(manila_generic.computed_define_ssh(config))
config.driver_service_ssh_key = None
config.driver_service_ssh_key_public = "ssh public key"
self.assertFalse(manila_generic.computed_define_ssh(config))
config.driver_service_ssh_key = "ssh key"
config.driver_service_ssh_key_public = "ssh public key"
self.assertTrue(manila_generic.computed_define_ssh(config))
def test_computed_debug_level(self):
config = mock.MagicMock()
config.debug = False
config.verbose = False
self.assertEqual(manila_generic.computed_debug_level(config), "NONE")
config.verbose = True
self.assertEqual(manila_generic.computed_debug_level(config), "NONE")
config.debug = True
config.verbose = False
self.assertEqual(
manila_generic.computed_debug_level(config), "WARNING")
config.verbose = True
self.assertEqual(manila_generic.computed_debug_level(config), "DEBUG")
class TestManilaGenericCharmManilaPluginProperties(Helper):
def test_authentication_data(self):
manila_plugin = mock.MagicMock()
manila_plugin.relation.authentication_data = 'test data'
self.assertEqual(manila_generic.authentication_data(manila_plugin),
'test data')
class TestManilaGenericCharm(Helper):
def _patch_config_and_charm(self, config):
self.patch('charmhelpers.core.hookenv.config', name='config')
def cf(key=None):
if key is not None:
return config[key]
return config
self.config.side_effect = cf
def test_custom_assess_status_check(self):
config = {
'driver-handles-share-servers': False,
'driver-service-image-name': '',
'driver-service-instance-user': '',
'driver-service-instance-flavor-id': '',
'driver-service-instance-password': '',
'driver-keypair-name': '',
}
self._patch_config_and_charm(config)
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(), (None, None))
config['driver-handles-share-servers'] = True
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(),
('blocked', "Missing 'driver-service-image-name'"))
config['driver-service-image-name'] = 'image-name'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(),
('blocked', "Missing 'driver-service-instance-user'"))
config['driver-service-instance-user'] = 'manila'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(
c.custom_assess_status_check(),
('blocked', "Missing 'driver-service-instance-flavor-id'"))
config['driver-service-instance-flavor-id'] = '100'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(
c.custom_assess_status_check(),
('blocked',
"Need at least one of instance password or keypair name"))
config['driver-service-instance-password'] = 'password'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(), (None, None))
config['driver-service-instance-password'] = ''
config['driver-keypair-name'] = 'keyname'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(), (None, None))
config['driver-service-instance-password'] = 'password'
config['driver-keypair-name'] = 'keyname'
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.custom_assess_status_check(), (None, None))
def test_get_config_for_principal(self):
# note that this indirectly tests 'process_lines' as well.
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.get_config_for_principal(None), {})
# we want to handle share servers to True to check for misconfig
config = {
'driver-handles-share-servers': True,
'driver-service-image-name': '',
'driver-service-instance-user': '',
'driver-service-instance-flavor-id': '',
'driver-service-instance-password': '',
'driver-keypair-name': '',
'share-backend-name': '',
'driver-auth-type': '',
'driver-connect-share-server-to-tenant-network': False,
}
self._patch_config_and_charm(config)
c = manila_generic.ManilaGenericCharm()
state, message = c.custom_assess_status_check()
auth_data = {
'username': 'user',
'password': 'pass',
'project_domain_name': 'pd1',
'project_name': 'p1',
'user_domain_name': 'ud1',
'auth_uri': 'uri1',
'auth_url': 'url1',
'auth_type': 'type1',
}
self.maxDiff = None
self.assertEqual(c.get_config_for_principal(auth_data), {})
# now set up the config to be okay to generate the sections
config['driver-handles-share-servers'] = True
config['driver-service-image-name'] = 'manila'
config['driver-service-instance-user'] = 'manila-user'
config['driver-service-instance-flavor-id'] = '103'
config['driver-service-instance-password'] = 'password'
config['driver-keypair-name'] = 'my-keyname'
# test that we've set the backend name
c = manila_generic.ManilaGenericCharm()
self.assertEqual(c.get_config_for_principal(auth_data), {})
# can't currently test that the outputted template is accurate in tests
# as we mock out the templating logic from charmhelpers.
def test_maybe_write_ssh_keys(self):
config = {
'driver-keypair-name': '',
'driver-auth-type': '',
'driver-service-ssh-key': '',
'driver-service-ssh-key-public': ''
}
self._patch_config_and_charm(config)
c = manila_generic.ManilaGenericCharm()
# The 'maybe_write_ssh_keys' should attempt to delete two files
self.patch_object(manila_generic.os, 'remove')
c.maybe_write_ssh_keys()
self.assertEqual(self.remove.call_count, 2)
print(self.remove.call_args_list)
self.assertEqual(self.remove.call_args_list, [
mock.call(manila_generic.MANILA_SSH_KEY_PATH),
mock.call(manila_generic.MANILA_SSH_KEY_PATH_PUBLIC)])
# now configure it up and check the writes happen
config['driver-keypair-name'] = 'mykeypair'
config['driver-auth-type'] = 'both'
config['driver-service-ssh-key'] = 'this is my key'
config['driver-service-ssh-key-public'] = 'my public key'
c = manila_generic.ManilaGenericCharm()
self.patch_object(manila_generic, 'write_file')
c.maybe_write_ssh_keys()
self.assertEqual(self.write_file.call_count, 2)
self.write_file.assert_has_calls(
[mock.call('this is my key', manila_generic.MANILA_SSH_KEY_PATH),
mock.call('my public key',
manila_generic.MANILA_SSH_KEY_PATH_PUBLIC,
0o644)])
class TestAuxilaryFunctions(Helper):
def test_write_file(self):
f = mock.MagicMock()
self.patch_object(manila_generic.os, 'fdopen', return_value=f)
self.patch_object(manila_generic.os, 'open', return_value='opener')
text = """
This
One"""
# strip the first new line off when passing the test string through
# this is to test dedenting strings
manila_generic.write_file(text[1:], 'file1')
self.open.assert_called_once_with(
'file1',
manila_generic.os.O_WRONLY | manila_generic.os.O_CREAT,
0o600)
self.fdopen.assert_called_once_with('opener', 'w')
f.__enter__().write.assert_called_once_with("This\nOne")
def test_write_file_private(self):
f = mock.MagicMock()
self.patch_object(manila_generic.os, 'fdopen', return_value=f)
self.patch_object(manila_generic.os, 'open', return_value='opener')
text = """
This
Two"""
# strip the first new line off when passing the test string through
# this is to test dedenting strings
manila_generic.write_file(text[1:], 'file1', chown=0o644)
self.open.assert_called_once_with(
'file1',
manila_generic.os.O_WRONLY | manila_generic.os.O_CREAT,
0o644)
self.fdopen.assert_called_once_with('opener', 'w')
f.__enter__().write.assert_called_once_with("This\nTwo")