3e17fe6358f832177379b4c7ee39c7b83345b130
[nivanova/samba-autobuild/.git] / source4 / torture / winbind / struct_based.c
1 /*
2    Unix SMB/CIFS implementation.
3    SMB torture tester - winbind struct based protocol
4    Copyright (C) Stefan Metzmacher 2007
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "torture/torture.h"
22 #include "torture/winbind/proto.h"
23 #include "nsswitch/winbind_client.h"
24
25 static bool torture_winbind_struct_ping(struct torture_context *torture)
26 {
27         NSS_STATUS result;
28
29         torture_comment(torture, "Testing WINBINDD_PING (struct based protocol)\n");
30
31         result = winbindd_request_response(WINBINDD_PING, NULL, NULL);
32         torture_assert_int_equal(torture,result,NSS_STATUS_SUCCESS,
33                                  "WINBINDD_PING (struct based protocol)");
34
35         return true;
36 }
37
38 struct torture_suite *torture_winbind_struct_init(void)
39 {
40         struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "STRUCT");
41
42         torture_suite_add_simple_test(suite, "PING", torture_winbind_struct_ping);
43
44         suite->description = talloc_strdup(suite, "WINBIND - struct based protocol tests");
45
46         return suite;
47 }