aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unittests/policy_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/policy_tests.py')
-rw-r--r--tests/unittests/policy_tests.py103
1 files changed, 103 insertions, 0 deletions
diff --git a/tests/unittests/policy_tests.py b/tests/unittests/policy_tests.py
new file mode 100644
index 00000000..6d0c42b9
--- /dev/null
+++ b/tests/unittests/policy_tests.py
@@ -0,0 +1,103 @@
+# This file is part of the sos project: https://github.com/sosreport/sos
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions of
+# version 2 of the GNU General Public License.
+#
+# See the LICENSE file in the source distribution for further information.
+import unittest
+
+from sos.policies import Policy, import_policy
+from sos.policies.distros import LinuxPolicy
+from sos.policies.package_managers import PackageManager
+from sos.report.plugins import (Plugin, IndependentPlugin,
+ RedHatPlugin, DebianPlugin)
+
+
+class FauxPolicy(Policy):
+ distro = "Faux"
+
+
+class FauxLinuxPolicy(LinuxPolicy):
+ distro = "FauxLinux"
+
+ @classmethod
+ def set_forbidden_paths(cls):
+ return ['/etc/secret']
+
+
+class FauxPlugin(Plugin, IndependentPlugin):
+ pass
+
+
+class FauxRedHatPlugin(Plugin, RedHatPlugin):
+ pass
+
+
+class FauxDebianPlugin(Plugin, DebianPlugin):
+ pass
+
+
+class PolicyTests(unittest.TestCase):
+
+
+ def test_independent_only(self):
+ p = FauxPolicy()
+ p.valid_subclasses = []
+
+ self.assertTrue(p.validate_plugin(FauxPlugin))
+
+ def test_forbidden_paths_building(self):
+ p = FauxLinuxPolicy(probe_runtime=False)
+ self.assertTrue('*.pyc' in p.forbidden_paths)
+ self.assertTrue('/etc/passwd' in p.forbidden_paths)
+ self.assertTrue('/etc/secret' in p.forbidden_paths)
+
+ def test_redhat(self):
+ p = FauxPolicy()
+ p.valid_subclasses = [RedHatPlugin]
+
+ self.assertTrue(p.validate_plugin(FauxRedHatPlugin))
+
+ def test_debian(self):
+ p = FauxPolicy()
+ p.valid_subclasses = [DebianPlugin]
+
+ self.assertTrue(p.validate_plugin(FauxDebianPlugin))
+
+ def test_fails(self):
+ p = FauxPolicy()
+ p.valid_subclasses = []
+
+ self.assertFalse(p.validate_plugin(FauxDebianPlugin))
+
+ def test_can_import(self):
+ self.assertTrue(import_policy('redhat') is not None)
+
+ def test_cant_import(self):
+ self.assertTrue(import_policy('notreal') is None)
+
+
+class PackageManagerTests(unittest.TestCase):
+
+ def setUp(self):
+ self.pm = PackageManager()
+
+ def test_default_all_pkgs(self):
+ self.assertEquals(self.pm.all_pkgs(), {})
+
+ def test_default_all_pkgs_by_name(self):
+ self.assertEquals(self.pm.all_pkgs_by_name('doesntmatter'), [])
+
+ def test_default_all_pkgs_by_name_regex(self):
+ self.assertEquals(
+ self.pm.all_pkgs_by_name_regex('.*doesntmatter$'), [])
+
+ def test_default_pkg_by_name(self):
+ self.assertEquals(self.pm.pkg_by_name('foo'), None)
+
+
+if __name__ == "__main__":
+ unittest.main()
+
+# vim: set et ts=4 sw=4 :