6e0bed5926
Change-Id: Ibf1b42c7c41aacb4f5d5cb8d2699cb069436f230
120 lines
4.4 KiB
Python
120 lines
4.4 KiB
Python
# (c) Copyright 2019 ZTE Corporation.
|
|
#
|
|
# 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 shutil
|
|
import tempfile
|
|
import unittest
|
|
from unittest import mock
|
|
from unittest.mock import patch
|
|
|
|
from freezer.scheduler import utils
|
|
|
|
job_list = [{"job_id": "test"}]
|
|
|
|
|
|
class TestUtils(unittest.TestCase):
|
|
def setUp(self):
|
|
self.client = mock.Mock()
|
|
self.client.clients.create = mock.Mock(return_value='test')
|
|
self.client.jobs.list = mock.Mock(return_value=job_list)
|
|
self.client.client_id = "test"
|
|
|
|
def test_do_register(self):
|
|
ret = utils.do_register(self.client, args=None)
|
|
self.assertEqual(0, ret)
|
|
|
|
def test_del_register_error(self):
|
|
self.client.clients.delete = mock.Mock(side_effect=Exception(
|
|
'delete client error: bad request'))
|
|
with self.assertRaises(Exception) as cm: # noqa
|
|
utils.del_register(self.client)
|
|
the_exception = cm.exception
|
|
self.assertIn('delete client error', str(the_exception))
|
|
|
|
def test_find_config_files(self):
|
|
temp = tempfile.NamedTemporaryFile('wb', delete=True,
|
|
suffix='.conf')
|
|
ret = utils.find_config_files(temp.name)
|
|
self.assertEqual([temp.name], ret)
|
|
temp.close()
|
|
self.assertFalse(os.path.exists(temp.name))
|
|
|
|
def test_find_config_files_path(self):
|
|
temp = tempfile.NamedTemporaryFile('wb', delete=True,
|
|
suffix='.conf')
|
|
temp_path = os.path.dirname(temp.name)
|
|
ret = utils.find_config_files(temp_path)
|
|
self.assertEqual([temp.name], ret)
|
|
temp.close()
|
|
self.assertFalse(os.path.exists(temp.name))
|
|
|
|
@patch('oslo_serialization.jsonutils.load')
|
|
def test_load_doc_from_json_file(self, mock_load):
|
|
os.mknod("/tmp/test_freezer.conf")
|
|
mock_load.side_effect = Exception('error')
|
|
try:
|
|
utils.load_doc_from_json_file("/tmp/test_freezer.conf")
|
|
except Exception as e:
|
|
self.assertIn("Unable to load conf file", str(e))
|
|
os.remove("/tmp/test_freezer.conf")
|
|
|
|
def test_get_jobs_from_disk(self):
|
|
temp = tempfile.mkdtemp()
|
|
file = '/'.join([temp, "test.conf"])
|
|
data = b'{"job_id": "test"}'
|
|
with open(file, 'wb') as f:
|
|
f.write(data)
|
|
ret = utils.get_jobs_from_disk(temp)
|
|
self.assertEqual(job_list, ret)
|
|
shutil.rmtree(temp)
|
|
self.assertFalse(os.path.exists(file))
|
|
|
|
def test_save_jobs_to_disk(self):
|
|
job_doc_list = job_list
|
|
tmpdir = tempfile.mkdtemp()
|
|
utils.save_jobs_to_disk(job_doc_list, tmpdir)
|
|
file = '/'.join([tmpdir, "job_test.conf"])
|
|
self.assertTrue(os.path.exists(file))
|
|
shutil.rmtree(tmpdir)
|
|
|
|
def test_get_active_jobs_from_api(self):
|
|
ret = utils.get_active_jobs_from_api(self.client)
|
|
self.assertEqual(job_list, ret)
|
|
|
|
@patch('os.kill')
|
|
@patch('psutil.Process')
|
|
def test_terminate_subprocess1(self, mock_process, mock_oskill):
|
|
mock_pro = mock.MagicMock()
|
|
mock_pro.name.startswith.return_value = False
|
|
mock_process.return_value = mock_pro
|
|
result = utils.terminate_subprocess(35, 'test')
|
|
self.assertIsNone(result)
|
|
mock_pro.name.startswith.return_value = True
|
|
mock_oskill.side_effect = Exception("error")
|
|
result = utils.terminate_subprocess(35, 'test')
|
|
self.assertIsNone(result)
|
|
|
|
@patch('psutil.Process')
|
|
def test_terminate_subprocess(self, mock_process_constructor):
|
|
mock_pro = mock_process_constructor.return_value
|
|
seffect = mock.Mock(
|
|
side_effect=Exception('Process 35 does not exists anymore'))
|
|
mock_pro.raiseError.side_effect = seffect
|
|
with self.assertRaises(Exception) as cm: # noqa
|
|
utils.terminate_subprocess(35, "test")
|
|
the_exception = cm.exception
|
|
self.assertIn('does not exists anymore',
|
|
str(the_exception))
|