cloudbase-init/cloudbaseinit/tests/utils/test_classloader.py
Claudiu Belu c01a7a74f0 tests cleanup: Removes mock import checks
In Python 3, the mock module is now part of the unittest module.
We no longer support Python 2, so there's no reason for the import checks.

Change-Id: I7b4d68cba4b587ad9f0121058ba615a9bb0aec93
2024-06-03 16:11:09 +00:00

43 lines
1.4 KiB
Python

# Copyright 2016 Cloudbase Solutions Srl
#
# 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.
import os
import tempfile
import unittest
import unittest.mock as mock
from cloudbaseinit.utils import classloader
def _create_tempfile():
fd, tmp = tempfile.mkstemp()
os.close(fd)
return tmp
class ClassLoaderTest(unittest.TestCase):
def setUp(self):
self._loader = classloader.ClassLoader()
@mock.patch('cloudbaseinit.utils.classloader.load_module_from_path')
def test_load_module_py(self, mock_source_compiled):
mock_py = os.path.join(_create_tempfile(), "mock.py")
mock_pyc = os.path.join(_create_tempfile(), "mock.pyc")
mock_source_compiled.return_value = None
result_module_py = self._loader.load_module(mock_py)
result_module_pyc = self._loader.load_module(mock_pyc)
self.assertIsNone(result_module_py)
self.assertIsNone(result_module_pyc)