mirror of
https://github.com/samba-team/samba.git
synced 2025-03-05 20:58:40 +03:00
Fix bugs in samr python tests.
(This used to be commit 09c6b106ac144820b8c072bda4dad3d8e2145ff0)
This commit is contained in:
parent
dff31b1dc0
commit
5eed56d0ad
@ -24,7 +24,7 @@ import sys
|
||||
|
||||
sys.path.insert(0, "bin/python")
|
||||
|
||||
from samba.dcerpc import samr, security
|
||||
from samba.dcerpc import samr, security, lsa
|
||||
|
||||
def FillUserInfo(samr, dom_handle, users, level):
|
||||
"""fill a user array with user information from samrQueryUserInfo"""
|
||||
@ -69,10 +69,10 @@ def test_EnumDomainUsers(samr, dom_handle):
|
||||
def test_EnumDomainGroups(samr, dom_handle):
|
||||
"""test the samr_EnumDomainGroups interface"""
|
||||
print "Testing samr_EnumDomainGroups"
|
||||
groups = toArray(samr.EnumDomainGroups(dom_handle, 0, 0, -1))
|
||||
groups = toArray(samr.EnumDomainGroups(dom_handle, 0, 0))
|
||||
print "Found %d groups" % len(groups)
|
||||
for idx, group in groups:
|
||||
print "\t" + group + "\t(" + idx + ")"
|
||||
print "\t%s\t(%d)" % (group, idx)
|
||||
|
||||
def test_domain_ops(samr, dom_handle):
|
||||
"""test domain specific ops"""
|
||||
|
@ -37,7 +37,7 @@ class SamrTests(RpcInterfaceTestCase):
|
||||
(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)
|
||||
handle = self.conn.Connect2(None, security.SEC_FLAG_MAXIMUM_ALLOWED)
|
||||
|
||||
def test_EnumDomains(self):
|
||||
handle = self.conn.Connect2(None, security.SEC_FLAG_MAXIMUM_ALLOWED)
|
||||
|
Loading…
x
Reference in New Issue
Block a user