From 1a316fd8c50e501b5d69bb47ff5d1d483b02b04e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 29 Aug 2005 04:15:08 +0000 Subject: [PATCH] r9727: A simplier test I can aim at passing when I get the cracknames code done. Andrew Bartlett (This used to be commit b1b0e26e537677793a92af02464ff1e83fce9610) --- source4/torture/rpc/drsuapi.c | 37 +++++++++++++++++++++++++++++++++++ source4/torture/torture.c | 1 + 2 files changed, 38 insertions(+) diff --git a/source4/torture/rpc/drsuapi.c b/source4/torture/rpc/drsuapi.c index f4c608eb8c7..4e72a0f9b35 100644 --- a/source4/torture/rpc/drsuapi.c +++ b/source4/torture/rpc/drsuapi.c @@ -1306,3 +1306,40 @@ BOOL torture_rpc_drsuapi(void) return ret; } + +BOOL torture_rpc_drsuapi_cracknames(void) +{ + NTSTATUS status; + struct dcerpc_pipe *p; + TALLOC_CTX *mem_ctx; + BOOL ret = True; + struct DsPrivate priv; + + mem_ctx = talloc_init("torture_rpc_drsuapi"); + + status = torture_rpc_connection(mem_ctx, + &p, + DCERPC_DRSUAPI_NAME, + DCERPC_DRSUAPI_UUID, + DCERPC_DRSUAPI_VERSION); + if (!NT_STATUS_IS_OK(status)) { + talloc_free(mem_ctx); + return False; + } + + printf("Connected to DRAUAPI pipe\n"); + + ZERO_STRUCT(priv); + + ret &= test_DsBind(p, mem_ctx, &priv); + + ret &= test_DsGetDCInfo(p, mem_ctx, &priv); + + ret &= test_DsCrackNames(p, mem_ctx, &priv); + + ret &= test_DsUnbind(p, mem_ctx, &priv); + + talloc_free(mem_ctx); + + return ret; +} diff --git a/source4/torture/torture.c b/source4/torture/torture.c index dde3c7bd5be..601888a483d 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -2308,6 +2308,7 @@ static struct { {"RPC-COUNTCALLS", torture_rpc_countcalls, 0}, {"RPC-MULTIBIND", torture_multi_bind, 0}, {"RPC-DRSUAPI", torture_rpc_drsuapi, 0}, + {"RPC-CRACKNAMES", torture_rpc_drsuapi_cracknames, 0}, {"RPC-LOGIN", torture_rpc_login, 0}, {"RPC-ROT", torture_rpc_rot, 0}, {"RPC-DSSETUP", torture_rpc_dssetup, 0}, -- 2.34.1