1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

r25350: Add an initial winbindd list-users test.

Michael
(This used to be commit 01bd81362fe7e26361e27a1e2ea3cfb2b78cfe00)
This commit is contained in:
Michael Adam 2007-09-26 16:46:20 +00:00 committed by Gerald (Jerry) Carter
parent 3bcf42774f
commit ff81112efb

View File

@ -555,6 +555,21 @@ static bool torture_winbind_struct_dsgetdcname(struct torture_context *torture)
return true;
}
static bool torture_winbind_struct_list_users(struct torture_context *torture)
{
struct winbindd_request req;
struct winbindd_response rep;
torture_comment(torture, "Running WINBINDD_LIST_USERS (struct based)\n");
ZERO_STRUCT(req);
ZERO_STRUCT(rep);
DO_STRUCT_REQ_REP(WINBINDD_LIST_USERS, &req, &rep);
return true;
}
struct torture_suite *torture_winbind_struct_init(void)
{
struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "STRUCT");
@ -570,6 +585,7 @@ struct torture_suite *torture_winbind_struct_init(void)
torture_suite_add_simple_test(suite, "DOMAIN_INFO", torture_winbind_struct_domain_info);
torture_suite_add_simple_test(suite, "GETDCNAME", torture_winbind_struct_getdcname);
torture_suite_add_simple_test(suite, "DSGETDCNAME", torture_winbind_struct_dsgetdcname);
torture_suite_add_simple_test(suite, "LIST_USERS", torture_winbind_struct_list_users);
suite->description = talloc_strdup(suite, "WINBIND - struct based protocol tests");