mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
r8693: Test code for usermod routine.
rafal
This commit is contained in:
parent
bee1c9ec2d
commit
19f5ea9c9c
@ -271,6 +271,25 @@ static BOOL test_userdel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
|
||||
}
|
||||
|
||||
|
||||
static BOOL test_usermod(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle, const char *username)
|
||||
{
|
||||
NTSTATUS status;
|
||||
struct libnet_rpc_usermod user;
|
||||
|
||||
user.in.domain_handle = *handle;
|
||||
user.in.username = username;
|
||||
|
||||
status = libnet_rpc_usermod(p, mem_ctx, &user);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
printf("Failed to call sync libnet_rpc_usermod - %s\n", nt_errstr(status));
|
||||
return False;
|
||||
}
|
||||
|
||||
return True;
|
||||
}
|
||||
|
||||
|
||||
BOOL torture_useradd(void)
|
||||
{
|
||||
NTSTATUS status;
|
||||
@ -376,3 +395,55 @@ done:
|
||||
talloc_free(mem_ctx);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
BOOL torture_usermod(void)
|
||||
{
|
||||
NTSTATUS status;
|
||||
const char *binding;
|
||||
struct dcerpc_pipe *p;
|
||||
struct policy_handle h;
|
||||
struct lsa_String domain_name;
|
||||
const char *name = TEST_USERNAME;
|
||||
TALLOC_CTX *mem_ctx;
|
||||
BOOL ret = True;
|
||||
|
||||
mem_ctx = talloc_init("test_userdel");
|
||||
binding = lp_parm_string(-1, "torture", "binding");
|
||||
|
||||
status = torture_rpc_connection(mem_ctx,
|
||||
&p,
|
||||
DCERPC_SAMR_NAME,
|
||||
DCERPC_SAMR_UUID,
|
||||
DCERPC_SAMR_VERSION);
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
domain_name.string = lp_workgroup();
|
||||
|
||||
if (!test_opendomain(p, mem_ctx, &h, &domain_name)) {
|
||||
ret = False;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (!test_createuser(p, mem_ctx, &h, name)) {
|
||||
ret = False;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (!test_usermod(p, mem_ctx, &h, name)) {
|
||||
ret = False;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (!test_cleanup(p, mem_ctx, &h, name)) {
|
||||
ret = False;
|
||||
goto done;
|
||||
}
|
||||
|
||||
done:
|
||||
talloc_free(mem_ctx);
|
||||
return ret;
|
||||
}
|
||||
|
@ -2338,6 +2338,7 @@ static struct {
|
||||
{"NET-USERINFO", torture_userinfo, 0},
|
||||
{"NET-USERADD", torture_useradd, 0},
|
||||
{"NET-USERDEL", torture_userdel, 0},
|
||||
{"NET-USERMOD", torture_usermod, 0},
|
||||
{"NET-DOMOPEN", torture_domainopen, 0},
|
||||
{"NET-API-LOOKUP", torture_lookup, 0},
|
||||
{"NET-API-LOOKUPHOST", torture_lookup_host, 0},
|
||||
|
Loading…
Reference in New Issue
Block a user