Fixes https://github.com/redhat-performance/tuned/issues/241 Fedora is removing the unittest2 package: https://bugzilla.redhat.com/show_bug.cgi?id=1794222 tuned is not targeting Python 2.6: https://github.com/redhat-performance/tuned/issues/241#issuecomment-588320175 One thing not present in Python 2.7 is assertItemsEqual() -- renamed to assertCountEqual(). Related, mock was also listed as a requirement in the spec file, but all the imports are from unittest.mock, hence removed.
37 lines
1 KiB
Python
37 lines
1 KiB
Python
import unittest
|
|
import tempfile
|
|
import shutil
|
|
import os
|
|
|
|
import tuned.consts as consts
|
|
import tuned.utils.global_config as global_config
|
|
|
|
class GlobalConfigTestCase(unittest.TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.test_dir = tempfile.mkdtemp()
|
|
with open(cls.test_dir + '/test_config','w') as f:
|
|
f.write('test_option = hello\ntest_bool = 1\ntest_size = 12MB\n'\
|
|
+ 'false_bool=0\n')
|
|
|
|
cls._global_config = global_config.GlobalConfig(\
|
|
cls.test_dir + '/test_config')
|
|
|
|
def test_get(self):
|
|
self.assertEqual(self._global_config.get('test_option'), 'hello')
|
|
|
|
def test_get_bool(self):
|
|
self.assertTrue(self._global_config.get_bool('test_bool'))
|
|
self.assertFalse(self._global_config.get_bool('false_bool'))
|
|
|
|
def test_get_size(self):
|
|
self.assertEqual(self._global_config.get_size('test_size'),\
|
|
12*1024*1024)
|
|
|
|
self._global_config.set('test_size','bad_value')
|
|
|
|
self.assertIsNone(self._global_config.get_size('test_size'))
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
shutil.rmtree(cls.test_dir)
|