slpkg/tests/test_checks.py

26 lines
770 B
Python
Raw Normal View History

2022-06-21 18:40:06 +03:00
import unittest
from slpkg.checks import Check
2023-04-09 20:38:17 +03:00
from slpkg.binaries.queries import BinQueries
2022-06-21 18:40:06 +03:00
class TestPkgInstalled(unittest.TestCase):
def setUp(self):
2023-04-09 20:38:17 +03:00
self.bin_queries = BinQueries('alien')
self.data = self.bin_queries.repository_data()
self.check = Check(['-B', '--bin-repo='], self.data)
self.packages = ['audacity', 'vlc', 'dnspython']
2022-06-21 18:40:06 +03:00
def test_check_exists(self):
2023-03-15 20:23:40 +02:00
self.assertIsNone(self.check.exists_in_the_database(self.packages))
2022-06-21 18:40:06 +03:00
2022-12-22 23:00:42 +02:00
def test_check_unsupported(self):
2023-03-15 19:16:14 +02:00
self.assertIsNone(self.check.is_package_unsupported(self.packages))
2022-06-21 18:40:06 +03:00
2023-04-03 17:55:22 +03:00
def test_check_is_installed(self):
self.assertIsNone(self.check.is_package_unsupported(self.packages))
2022-06-21 18:40:06 +03:00
if __name__ == "__main__":
unittest.main()