summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2012-06-25 18:03:40 +0200
committerAndreas Schneider <asn@cryptomilk.org>2012-07-06 10:00:56 +0200
commit682277b44c3aa0e71f0924782cc8964810cb60e9 (patch)
treea91d62bf0f6829ba1a02ee60a032487083f5bffe /source4
parent1000884bb39af5df9bd375545a4d18022d046822 (diff)
downloadsamba-682277b44c3aa0e71f0924782cc8964810cb60e9.tar.gz
samba-682277b44c3aa0e71f0924782cc8964810cb60e9.tar.bz2
samba-682277b44c3aa0e71f0924782cc8964810cb60e9.zip
s4-torture: Use test_LookupSids3 function.
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/rpc/lsa.c33
1 files changed, 1 insertions, 32 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c
index 07bb70f17c..91614f9b5d 100644
--- a/source4/torture/rpc/lsa.c
+++ b/source4/torture/rpc/lsa.c
@@ -694,10 +694,6 @@ static bool test_LookupSids3(struct dcerpc_binding_handle *b,
torture_comment(tctx, "\n");
- if (!test_LookupNames4(b, tctx, &names, false)) {
- return false;
- }
-
return true;
}
@@ -755,36 +751,9 @@ bool test_many_LookupSids(struct dcerpc_pipe *p,
} else if (p->conn->security_state.auth_info->auth_type == DCERPC_AUTH_TYPE_SCHANNEL &&
p->conn->security_state.auth_info->auth_level >= DCERPC_AUTH_LEVEL_INTEGRITY &&
(p->binding->transport == NCACN_IP_TCP || p->binding->transport == NCALRPC)) {
- struct lsa_LookupSids3 r;
- struct lsa_RefDomainList *domains = NULL;
struct lsa_TransNameArray2 names;
- names.count = 0;
- names.names = NULL;
-
- torture_comment(tctx, "\nTesting LookupSids3\n");
-
- r.in.sids = &sids;
- r.in.names = &names;
- r.in.level = 1;
- r.in.count = &count;
- r.in.lookup_options = 0;
- r.in.client_revision = 0;
- r.out.count = &count;
- r.out.names = &names;
- r.out.domains = &domains;
-
- torture_assert_ntstatus_ok(tctx, dcerpc_lsa_LookupSids3_r(b, tctx, &r),
- "LookupSids3 failed");
- if (!NT_STATUS_IS_OK(r.out.result)) {
- if (NT_STATUS_EQUAL(r.out.result, NT_STATUS_ACCESS_DENIED) ||
- NT_STATUS_EQUAL(r.out.result, NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED)) {
- torture_comment(tctx, "not considering %s to be an error\n",
- nt_errstr(r.out.result));
- return true;
- }
- torture_comment(tctx, "LookupSids3 failed - %s\n",
- nt_errstr(r.out.result));
+ if (!test_LookupSids3(b, tctx, &sids)) {
return false;
}
if (!test_LookupNames4(b, tctx, &names, false)) {