slpkg/tests/test_utilities.py

62 lines
2.2 KiB
Python
Raw Normal View History

2022-06-21 21:00:20 +02:00
import unittest
2023-03-20 20:22:56 +01:00
2022-06-21 21:00:20 +02:00
from slpkg.configs import Configs
2023-03-20 20:22:56 +01:00
from slpkg.utilities import Utilities
2022-06-21 21:00:20 +02:00
class TestUtilities(unittest.TestCase):
def setUp(self):
self.utils = Utilities()
self.build_path = Configs.build_path
2023-04-03 10:54:11 +02:00
self.package = 'aaa_base-15.0-x86_64-4_slack15.0'
2022-06-21 21:00:20 +02:00
def test_ins_installed(self):
2023-04-03 10:54:11 +02:00
self.assertEqual(self.package, self.utils.is_package_installed('aaa_base'))
def test_split_name(self):
2023-04-03 10:54:11 +02:00
self.assertEqual('aaa_base', self.utils.split_binary_pkg(self.package)[0])
def test_split_version(self):
2023-04-03 10:54:11 +02:00
self.assertEqual('15.0', self.utils.split_binary_pkg(self.package)[1])
def test_split_arch(self):
2023-03-18 20:48:10 +01:00
self.assertEqual('x86_64', self.utils.split_binary_pkg(self.package)[2])
def test_split_build(self):
2023-04-03 10:54:11 +02:00
self.assertEqual('4', self.utils.split_binary_pkg(self.package)[3])
def test_split_tag(self):
2023-04-03 10:54:11 +02:00
self.assertEqual('slack15.0', self.utils.split_binary_pkg(self.package)[4])
def test_is_installed(self):
self.assertEqual(self.package, self.utils.is_package_installed('aaa_base'))
def test_all_installed(self):
self.assertIn(self.package, self.utils.all_installed())
def test_all_installed_names(self):
self.assertIn('aaa_base', self.utils.all_installed_names())
self.assertIn('vim', self.utils.all_installed_names())
self.assertIn('nano', self.utils.all_installed_names())
self.assertIn('wget', self.utils.all_installed_names())
self.assertIn('curl', self.utils.all_installed_names())
self.assertIn('lftp', self.utils.all_installed_names())
def test_read_build_tag(self):
self.assertEqual('1', self.utils.read_sbo_build_tag('slpkg'))
def test_is_option(self):
self.assertTrue(True, self.utils.is_option(['-P', '--parallel'],
['-k', '-p', '-P', '--parallel', '--bin-repo']))
def test_get_file_size(self):
self.assertEqual('2154 KB', self.utils.get_file_size(f'/var/log/packages/{self.package}'))
def test_apply_package_pattern(self):
self.assertGreater(len(self.utils.apply_package_pattern([], ['*'], '')), 1)
2022-06-21 21:00:20 +02:00
if __name__ == '__main__':
unittest.main()