From 762fdc8c5c2db304f3dc4536c19d69366d1399df Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 12 Feb 2009 16:00:11 +0100 Subject: Provide a SamDB TestCase-class that can be used by OpenChange. --- source4/scripting/python/samba/tests/samdb.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source4/scripting/python/samba/tests/samdb.py b/source4/scripting/python/samba/tests/samdb.py index e0bbf07ba8..d0b95cf542 100644 --- a/source4/scripting/python/samba/tests/samdb.py +++ b/source4/scripting/python/samba/tests/samdb.py @@ -27,7 +27,13 @@ from unittest import TestCase import uuid from samba import param + class SamDBTestCase(TestCaseInTempDir): + """Base-class for tests with a Sam Database. + + This is used by the Samba SamDB-tests, but e.g. also by the OpenChange + provisioning tests (which need a Sam). + """ def setup_path(self, relpath): return os.path.join(find_setup_dir(), relpath) @@ -82,6 +88,10 @@ class SamDBTestCase(TestCaseInTempDir): os.remove(os.path.join(self.tempdir, f)) super(SamDBTestCase, self).tearDown() + +class SamDBTests(SamDBTestCase): + """Tests for the SamDB implementation.""" + def test_add_foreign(self): self.samdb.add_foreign(self.domaindn, "S-1-5-7", "Somedescription") -- cgit