added wkssvc.idl and test code
[ira/wip.git] / source4 / torture / rpc / wkssvc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for wkssvc rpc operations
4
5    Copyright (C) Andrew Tridgell 2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24
25 static BOOL test_QueryInfo(struct dcerpc_pipe *p, 
26                            TALLOC_CTX *mem_ctx)
27 {
28         NTSTATUS status;
29         struct wks_QueryInfo r;
30
31         printf("testing QueryInfo\n");
32
33         r.in.server_name = dcerpc_server_name(p);
34         r.in.level = 100;
35
36         status = dcerpc_wks_QueryInfo(p, mem_ctx, &r);
37         if (!NT_STATUS_IS_OK(status)) {
38                 printf("QueryInfo failed - %s\n", nt_errstr(status));
39                 return False;
40         }
41
42         NDR_PRINT_BOTH_DEBUG(wks_QueryInfo, &r);
43
44         return True;
45 }
46
47 BOOL torture_rpc_wkssvc(int dummy)
48 {
49         NTSTATUS status;
50         struct dcerpc_pipe *p;
51         TALLOC_CTX *mem_ctx;
52         BOOL ret = True;
53         struct policy_handle handle;
54
55         mem_ctx = talloc_init("torture_rpc_wkssvc");
56
57         status = torture_rpc_connection(&p, "wkssvc");
58         if (!NT_STATUS_IS_OK(status)) {
59                 return False;
60         }
61         
62         if (!test_QueryInfo(p, mem_ctx)) {
63                 ret = False;
64         }
65
66         torture_rpc_close(p);
67
68         return ret;
69 }