summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-08-08 12:21:13 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-08-08 12:21:13 -0400
commitccc5539556c0518c9439cbc5ae2a9322ea866a79 (patch)
tree299ba8f8db6e4d9502992e3ad00ffd456d8153c4 /tests
parent39693b93c0140a68588f1a3857733117e54c0504 (diff)
downloadcobbler-ccc5539556c0518c9439cbc5ae2a9322ea866a79.tar.gz
cobbler-ccc5539556c0518c9439cbc5ae2a9322ea866a79.tar.xz
cobbler-ccc5539556c0518c9439cbc5ae2a9322ea866a79.zip
Add images to basic unit tests to ensure they do not break any generalized systems/profile logic. One small fix to profiles to deal with this.
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 7c4c6bf0..40f3a939 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -16,6 +16,8 @@ from cobbler import settings
from cobbler import collection_distros
from cobbler import collection_profiles
from cobbler import collection_systems
+from cobbler import collection_repos
+from cobbler import collection_images
import cobbler.modules.authz_ownership as authz_module
from cobbler import api
@@ -102,6 +104,11 @@ class BootTest(unittest.TestCase):
self.assertTrue(repo.set_mirror("/tmp/test_example_cobbler_repo"))
self.assertTrue(self.api.repos().add(repo))
+ image = self.api.new_image()
+ self.assertTrue(image.set_name("test_image"))
+ self.assertTrue(image.set_file("/etc/hosts")) # meaningless path
+ self.assertTrue(self.api.images().add(image))
+
class DuplicateNamesAndIpPrevention(BootTest):
"""