diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-22 12:21:26 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-23 04:21:29 +0200 |
commit | 6ccb9785e7e1b2374a0121b5c70a2969b120a926 (patch) | |
tree | a526bb4544fdf6f6f0f0c8947a01c01a8f522b0e | |
parent | 5a5605afcdf94975d9acb9435034e91162a7d23e (diff) | |
download | samba-6ccb9785e7e1b2374a0121b5c70a2969b120a926.tar.gz samba-6ccb9785e7e1b2374a0121b5c70a2969b120a926.tar.bz2 samba-6ccb9785e7e1b2374a0121b5c70a2969b120a926.zip |
Add another test toe the python samr testsuite.
(This used to be commit 480884c696c676bb978e9197271b99cc03bb66e6)
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/sam.py | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/tests/dcerpc/sam.py b/source4/scripting/python/samba/tests/dcerpc/sam.py index 81300c9e81..e685f9b4f4 100644 --- a/source4/scripting/python/samba/tests/dcerpc/sam.py +++ b/source4/scripting/python/samba/tests/dcerpc/sam.py @@ -1,7 +1,8 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # Unix SMB/CIFS implementation. -# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008 +# Copyright © Jelmer Vernooij <jelmer@samba.org> 2008 # # 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 @@ -17,9 +18,17 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -from samba.dcerpc import samr +from samba.dcerpc import samr, security from samba.tests import RpcInterfaceTestCase +# FIXME: Pidl should be doing this for us +def toArray((handle, array, num_entries)): + ret = [] + for x in range(num_entries): + ret.append((array.entries[x].idx, array.entries[x].name)) + return ret + + class SamrTests(RpcInterfaceTestCase): def setUp(self): self.conn = samr.samr("ncalrpc:", self.get_loadparm()) @@ -27,4 +36,11 @@ class SamrTests(RpcInterfaceTestCase): def test_connect5(self): (level, info, handle) = self.conn.Connect5(None, 0, 1, samr.ConnectInfo1()) + def test_connect2(self): + (level, info, handle) = self.conn.Connect2(None, security.SEC_FLAG_MAXIMUM_ALLOWED) + + def test_EnumDomains(self): + handle = self.conn.Connect2(None, security.SEC_FLAG_MAXIMUM_ALLOWED) + domains = toArray(self.conn.EnumDomains(handle, 0, -1)) + self.conn.Close(handle) |