[PATCH 11/18] s4-python: add unit test for ntacls manipulation in python

Matthieu Patou mat at matws.net
Fri Jan 8 03:12:11 MST 2010


---
 source4/scripting/python/samba/tests/ntacls.py |   99 ++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)
 create mode 100644 source4/scripting/python/samba/tests/ntacls.py

diff --git a/source4/scripting/python/samba/tests/ntacls.py b/source4/scripting/python/samba/tests/ntacls.py
new file mode 100644
index 0000000..2582d34
--- /dev/null
+++ b/source4/scripting/python/samba/tests/ntacls.py
@@ -0,0 +1,99 @@
+#!/usr/bin/python
+
+# Unix SMB/CIFS implementation. Tests for ntacls manipulation
+# Copyright (C) Matthieu Patou <mat at matws.net> 2009-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/>.
+#
+
+from samba.ntacls import setntacl, getntacl, XattrBackendError
+from samba.dcerpc import xattr, security
+from samba.param import LoadParm
+from unittest import TestCase
+import random
+import os
+
+class NtaclsTests(TestCase):
+
+	def test_setntacl(self):
+		random.seed()
+		lp=LoadParm()
+		acl="O:S-1-5-21-2212615479-2695158682-2101375467-512G:S-1-5-21-2212615479-2695158682-2101375467-513D:(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375467-512)"
+		path=os.environ['SELFTEST_PREFIX']
+		tempf=os.path.join(path,"pytests"+str(int(100000*random.random())))
+		ntacl=xattr.NTACL()
+		ntacl.version = 1
+		open(tempf, 'w').write("empty")
+		lp.set("posix:eadb",os.path.join(path,"eadbtest.tdb"))
+		setntacl(lp,tempf,acl)
+		os.unlink(tempf)
+
+	def test_setntacl_getntacl(self):
+		random.seed()
+		lp=LoadParm()
+		acl="O:S-1-5-21-2212615479-2695158682-2101375467-512G:S-1-5-21-2212615479-2695158682-2101375467-513D:(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375467-512)"
+		path=os.environ['SELFTEST_PREFIX']
+		tempf=os.path.join(path,"pytests"+str(int(100000*random.random())))
+		ntacl=xattr.NTACL()
+		ntacl.version = 1
+		open(tempf, 'w').write("empty")
+		lp.set("posix:eadb",os.path.join(path,"eadbtest.tdb"))
+		setntacl(lp,tempf,acl)
+		facl=getntacl(lp,tempf)
+		anysid=security.dom_sid(security.SID_NT_SELF)
+		self.assertEquals(facl.info.as_sddl(anysid),acl)
+		os.unlink(tempf)
+
+	def test_setntacl_getntacl_param(self):
+		random.seed()
+		lp=LoadParm()
+		acl="O:S-1-5-21-2212615479-2695158682-2101375467-512G:S-1-5-21-2212615479-2695158682-2101375467-513D:(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375467-512)"
+		path=os.environ['SELFTEST_PREFIX']
+		tempf=os.path.join(path,"pytests"+str(int(100000*random.random())))
+		ntacl=xattr.NTACL()
+		ntacl.version = 1
+		open(tempf, 'w').write("empty")
+		setntacl(lp,tempf,acl,"tdb",os.path.join(path,"eadbtest.tdb"))
+		facl=getntacl(lp,tempf,"tdb",os.path.join(path,"eadbtest.tdb"))
+		anysid=security.dom_sid(security.SID_NT_SELF)
+		self.assertEquals(facl.info.as_sddl(anysid),acl)
+		os.unlink(tempf)
+
+	def test_setntacl_invalidbackend(self):
+		random.seed()
+		lp=LoadParm()
+		acl="O:S-1-5-21-2212615479-2695158682-2101375467-512G:S-1-5-21-2212615479-2695158682-2101375467-513D:(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375467-512)"
+		path=os.environ['SELFTEST_PREFIX']
+		tempf=os.path.join(path,"pytests"+str(int(100000*random.random())))
+		ntacl=xattr.NTACL()
+		ntacl.version = 1
+		open(tempf, 'w').write("empty")
+		self.assertRaises(XattrBackendError,setntacl,lp,tempf,acl,"ttdb",os.path.join(path,"eadbtest.tdb"))
+
+	def test_setntacl_forcenative(self):
+		if os.getuid() != 0:
+			random.seed()
+			lp=LoadParm()
+			acl="O:S-1-5-21-2212615479-2695158682-2101375467-512G:S-1-5-21-2212615479-2695158682-2101375467-513D:(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375467-512)"
+			path=os.environ['SELFTEST_PREFIX']
+			tempf=os.path.join(path,"pytests"+str(int(100000*random.random())))
+			ntacl=xattr.NTACL()
+			ntacl.version = 1
+			open(tempf, 'w').write("empty")
+			lp.set("posix:eadb",os.path.join(path,"eadbtest.tdb"))
+			self.assertRaises(Exception,setntacl,lp,tempf,acl,"native")
+			os.unlink(tempf)
+		else:
+			print "Running test as root, test skipped"
+
-- 
1.6.3.3


--------------080603070205020905060303
Content-Type: text/x-patch;
 name="0012-s4-tests-register-new-unit-tests.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="0012-s4-tests-register-new-unit-tests.patch"



More information about the samba-technical mailing list