From 727386327c8e2e40f9cc590882ac64020828480b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 19 Sep 2007 16:24:12 +0000 Subject: r25235: add simple WINBIND-STRUCT-GETDCNAME test metze (This used to be commit 2abd86f520a74662f8fe0d10b72484459c3d74a9) --- source4/torture/winbind/struct_based.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'source4') diff --git a/source4/torture/winbind/struct_based.c b/source4/torture/winbind/struct_based.c index 5ecc5c99da..f8cddf589c 100644 --- a/source4/torture/winbind/struct_based.c +++ b/source4/torture/winbind/struct_based.c @@ -18,9 +18,11 @@ */ #include "includes.h" +#include "pstring.h" #include "torture/torture.h" #include "torture/winbind/proto.h" #include "nsswitch/winbind_client.h" +#include "param/param.h" #define DO_STRUCT_REQ_REP(op,req,rep) do { \ NSS_STATUS _result; \ @@ -51,11 +53,31 @@ static bool torture_winbind_struct_ping(struct torture_context *torture) return true; } +static bool torture_winbind_struct_getdcname(struct torture_context *torture) +{ + struct winbindd_request req; + struct winbindd_response rep; + + ZERO_STRUCT(req); + ZERO_STRUCT(rep); + + fstrcpy(req.domain_name, lp_workgroup()); + + DO_STRUCT_REQ_REP(WINBINDD_GETDCNAME, &req, &rep); + + /* + * TODO: test all trusted domains + */ + + return true; +} + struct torture_suite *torture_winbind_struct_init(void) { struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "STRUCT"); torture_suite_add_simple_test(suite, "PING", torture_winbind_struct_ping); + torture_suite_add_simple_test(suite, "GETDCNAME", torture_winbind_struct_getdcname); suite->description = talloc_strdup(suite, "WINBIND - struct based protocol tests"); -- cgit