[PATCH 6/6] s4 python: add a unit test for function dsdb_get_oid_from_attid

Matthieu Patou mat at matws.net
Tue Apr 13 14:46:51 MDT 2010


---
 source4/scripting/python/samba/tests/dsdb.py |   44 ++++++++++++++++++++++++++
 source4/selftest/tests.sh                    |    1 +
 2 files changed, 45 insertions(+), 0 deletions(-)
 create mode 100644 source4/scripting/python/samba/tests/dsdb.py

diff --git a/source4/scripting/python/samba/tests/dsdb.py b/source4/scripting/python/samba/tests/dsdb.py
new file mode 100644
index 0000000..ed41d87
--- /dev/null
+++ b/source4/scripting/python/samba/tests/dsdb.py
@@ -0,0 +1,44 @@
+#!/usr/bin/python
+
+# Unix SMB/CIFS implementation. Tests for glue helper
+# Copyright (C) Matthieu Patou <mat at matws.net> 2010
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+import samba.dsdb
+import samba.param
+from samba.credentials import Credentials
+from samba import Ldb
+from samba.auth import system_session
+from testtools.testcase import TestCase, TestSkipped
+import random
+import os
+
+class GlueTests(TestCase):
+
+
+    def _baseprovpath(self):
+        return os.path.join(os.environ['SELFTEST_PREFIX'], "dc")
+
+    def test_get_oid_from_attrid(self):
+        lp = samba.param.LoadParm()
+        lp.load(os.path.join(os.path.join(self._baseprovpath(),"etc"),"smb.conf"))
+        creds = Credentials()
+        creds.guess(lp)
+        session = system_session()
+        test_ldb = Ldb(os.path.join(os.path.join(self._baseprovpath(),"private"),"sam.ldb"), session_info=session, credentials=creds,lp=lp)
+        oid = samba.dsdb.dsdb_get_oid_from_attid(test_ldb,591614)
+        self.assertEquals(oid, "1.2.840.113556.1.4.1790")
+
diff --git a/source4/selftest/tests.sh b/source4/selftest/tests.sh
index da0b4e3..f34612c 100755
--- a/source4/selftest/tests.sh
+++ b/source4/selftest/tests.sh
@@ -473,6 +473,7 @@ plantestsuite "samba.python" none $SUBUNITRUN samba.tests
 plantestsuite "provision.python" none $SUBUNITRUN samba.tests.provision
 plantestsuite "samba3.python" none $SUBUNITRUN samba.tests.samba3
 plantestsuite "samr.python" dc:local $SUBUNITRUN samba.tests.dcerpc.sam
+plantestsuite "dsdb.python" dc:local $SUBUNITRUN samba.tests.dsdb
 plantestsuite "netcmd.python" none $SUBUNITRUN samba.tests.netcmd
 plantestsuite "dcerpc.bare.python" dc:local $SUBUNITRUN samba.tests.dcerpc.bare
 plantestsuite "unixinfo.python" dc:local $SUBUNITRUN samba.tests.dcerpc.unix
-- 
1.6.3.3


--------------010804020208020700020704
Content-Type: text/x-patch;
 name="0001-s4-provision-Remove-hard-coded-ACL-for-GPO-objects.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename*0="0001-s4-provision-Remove-hard-coded-ACL-for-GPO-objects.patc";
 filename*1="h"



More information about the samba-technical mailing list