summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-09-20 06:31:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:51 -0500
commit67cb7c9451f310ee6ae66c916b6b25a5914e46f1 (patch)
treee8c9b43c64ffd16d86e9a4af92b83e876a9a8a7c /source4/scripting
parent44838763e2423b2fd2493284d36ccc2d3448c673 (diff)
downloadsamba-67cb7c9451f310ee6ae66c916b6b25a5914e46f1.tar.gz
samba-67cb7c9451f310ee6ae66c916b6b25a5914e46f1.tar.bz2
samba-67cb7c9451f310ee6ae66c916b6b25a5914e46f1.zip
r2429: Add tests for samr_QueryUserInfo(), samr_QueryUserInfo2(),
samr_GetUserPwInfo(), samr_TestPrivateFunctionsUser(). Add stubs for the rest of the functions in test_OpenDomain() from smbtorture. (This used to be commit 1dc86e466dc546a5509fe5195444e48dc026e9a1)
Diffstat (limited to 'source4/scripting')
-rwxr-xr-xsource4/scripting/swig/torture/samr.py177
1 files changed, 174 insertions, 3 deletions
diff --git a/source4/scripting/swig/torture/samr.py b/source4/scripting/swig/torture/samr.py
index abf505e919..e726c0229a 100755
--- a/source4/scripting/swig/torture/samr.py
+++ b/source4/scripting/swig/torture/samr.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-import dcerpc
+import sys, dcerpc
from optparse import OptionParser
def test_Connect(handle):
@@ -167,6 +167,63 @@ def test_DeleteUser_byname(pipe, domain_handle, name):
dcerpc.samr_DeleteUser(pipe, r)
+def test_QueryUserInfo(pipe, user_handle):
+
+ levels = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 20, 21]
+
+ for level in levels:
+ r = {}
+ r['handle'] = user_handle
+ r['level'] = level
+
+ result = dcerpc.samr_QueryUserInfo(pipe, r)
+
+def test_QueryUserInfo2(pipe, user_handle):
+
+ levels = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 20, 21]
+
+ for level in levels:
+ r = {}
+ r['handle'] = user_handle
+ r['level'] = level
+
+ result = dcerpc.samr_QueryUserInfo2(pipe, r)
+
+def test_SetUserInfo(pipe, user_handle):
+ pass
+
+def test_GetUserPwInfo(pipe, user_handle):
+
+ r = {}
+ r['handle'] = user_handle
+
+ result = dcerpc.samr_GetUserPwInfo(pipe, r)
+
+def test_TestPrivateFunctionsUser(pipe, user_handle):
+
+ r = {}
+ r['handle'] = user_handle
+
+ try:
+ result = dcerpc.samr_TestPrivateFunctionsUser(pipe, r)
+ except dcerpc.NTSTATUS, arg:
+ if arg[0] != 0xc0000002:
+ raise dcerpc.NTSTATUS(arg)
+
+def test_user_ops(pipe, user_handle):
+
+ test_QuerySecurity(pipe, user_handle)
+
+ test_QueryUserInfo(pipe, user_handle)
+
+ test_QueryUserInfo2(pipe, user_handle)
+
+ test_SetUserInfo(pipe, user_handle)
+
+ test_GetUserPwInfo(pipe, user_handle)
+
+ test_TestPrivateFunctionsUser(pipe, user_handle)
+
def test_CreateUser(pipe, domain_handle):
r = {}
@@ -190,7 +247,81 @@ def test_CreateUser(pipe, domain_handle):
user_handle = result['acct_handle']
- # samr_QueryUserInfo(), etc
+ q = {}
+ q['handle'] = user_handle
+ q['level'] = 16
+
+ result = dcerpc.samr_QueryUserInfo(pipe, q)
+
+ test_user_ops(pipe, user_handle)
+
+ return user_handle
+
+def test_CreateAlias(pipe, domain_handle):
+ pass
+
+def test_CreateDomainGroup(pipe, domain_handle):
+ pass
+
+def test_CreateAlias(pipe, domain_handle):
+ pass
+
+def test_CreateDomainGroup(pipe, domain_handle):
+ pass
+
+def test_QueryDomainInfo(pipe, domain_handle):
+ pass
+
+def test_QueryDomainInfo2(pipe, domain_handle):
+ pass
+
+def test_EnumDomainUsers(pipe, domain_handle):
+ pass
+
+def test_EnumDomainGroups(pipe, domain_handle):
+ pass
+
+def test_EnumDomainAliases(pipe, domain_handle):
+ pass
+
+def test_QueryDisplayInfo(pipe, domain_handle):
+ pass
+
+def test_QueryDisplayInfo2(pipe, domain_handle):
+ pass
+
+def test_QueryDisplayInfo3(pipe, domain_handle):
+ pass
+
+def test_GetDisplayEnumerationIndex(pipe, domain_handle):
+ pass
+
+def test_GetDisplayEnumerationIndex2(pipe, domain_handle):
+ pass
+
+def test_GroupList(pipe, domain_handle):
+ pass
+
+def test_TestPrivateFunctionsDomain(pipe, domain_handle):
+ pass
+
+def test_RidToSid(pipe, domain_handle):
+ pass
+
+def test_GetBootKeyInformation(pipe, domain_handle):
+ pass
+
+def test_DeleteUser(pipe, user_handle):
+ pass
+
+def test_DeleteAlias(pipe, alias_handle):
+ pass
+
+def test_DeleteDomainGroup(pipe, group_handle):
+ pass
+
+def test_Close(pipe, domain_handle):
+ pass
def test_OpenDomain(pipe, handle, domain_sid):
@@ -211,7 +342,47 @@ def test_OpenDomain(pipe, handle, domain_sid):
test_CreateUser2(pipe, domain_handle)
- test_CreateUser(pipe, domain_handle)
+ user_handle = test_CreateUser(pipe, domain_handle)
+
+ alias_handle = test_CreateAlias(pipe, domain_handle)
+
+ group_handle = test_CreateDomainGroup(pipe, domain_handle)
+
+ test_QueryDomainInfo(pipe, domain_handle)
+
+ test_QueryDomainInfo2(pipe, domain_handle)
+
+ test_EnumDomainUsers(pipe, domain_handle)
+
+ test_EnumDomainGroups(pipe, domain_handle)
+
+ test_EnumDomainAliases(pipe, domain_handle)
+
+ test_QueryDisplayInfo(pipe, domain_handle)
+
+ test_QueryDisplayInfo2(pipe, domain_handle)
+
+ test_QueryDisplayInfo3(pipe, domain_handle)
+
+ test_GetDisplayEnumerationIndex(pipe, domain_handle)
+
+ test_GetDisplayEnumerationIndex2(pipe, domain_handle)
+
+ test_GroupList(pipe, domain_handle)
+
+ test_TestPrivateFunctionsDomain(pipe, domain_handle)
+
+ test_RidToSid(pipe, domain_handle)
+
+ test_GetBootKeyInformation(pipe, domain_handle)
+
+ test_DeleteUser(pipe, user_handle)
+
+ test_DeleteAlias(pipe, alias_handle)
+
+ test_DeleteDomainGroup(pipe, group_handle)
+
+ test_Close(pipe, domain_handle)
def test_LookupDomain(pipe, handle, domain):