a fairly major upgrade to the dcerpc system
[samba.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 wkssvc_QueryInfo r;
30         uint16 levels[] = {100, 101, 102, 502};
31         int i;
32         BOOL ret = True;
33
34         r.in.server_name = dcerpc_server_name(p);
35
36         for (i=0;i<ARRAY_SIZE(levels);i++) {
37                 r.in.level = levels[i];
38                 printf("testing QueryInfo level %u\n", r.in.level);
39                 status = dcerpc_wkssvc_QueryInfo(p, mem_ctx, &r);
40                 if (!NT_STATUS_IS_OK(status)) {
41                         printf("QueryInfo level %u failed - %s\n", r.in.level, nt_errstr(status));
42                         ret = False;
43                 }
44         }
45
46         return ret;
47 }
48
49
50 static BOOL test_TransportEnum(struct dcerpc_pipe *p, 
51                                TALLOC_CTX *mem_ctx)
52 {
53         NTSTATUS status;
54         struct wkssvc_TransportEnum r;
55         BOOL ret = True;
56         uint32 resume_handle = 0;
57         struct wkssvc_TransportInfoArray array;
58
59         ZERO_STRUCT(array);
60
61         r.in.server_name = dcerpc_server_name(p);
62         r.in.level = 0;
63         r.in.info.array = &array;
64         r.in.max_buffer = (uint32)-1;
65         r.in.resume_handle = &resume_handle;
66         r.out.resume_handle = &resume_handle;
67
68         printf("testing TransportEnum\n");
69         status = dcerpc_wkssvc_TransportEnum(p, mem_ctx, &r);
70         if (!NT_STATUS_IS_OK(status)) {
71                 printf("TransportEnum failed - %s\n", nt_errstr(status));
72                 ret = False;
73         }
74
75         return ret;
76 }
77
78
79
80 BOOL torture_rpc_wkssvc(int dummy)
81 {
82         NTSTATUS status;
83         struct dcerpc_pipe *p;
84         TALLOC_CTX *mem_ctx;
85         BOOL ret = True;
86
87         mem_ctx = talloc_init("torture_rpc_wkssvc");
88
89         status = torture_rpc_connection(&p, 
90                                         DCERPC_WKSSVC_NAME,
91                                         DCERPC_WKSSVC_UUID,
92                                         DCERPC_WKSSVC_VERSION);
93         if (!NT_STATUS_IS_OK(status)) {
94                 return False;
95         }
96
97         p->flags |= DCERPC_DEBUG_PRINT_BOTH;
98         
99         if (!test_QueryInfo(p, mem_ctx)) {
100                 ret = False;
101         }
102
103         if (!test_TransportEnum(p, mem_ctx)) {
104                 ret = False;
105         }
106
107         talloc_destroy(mem_ctx);
108
109         torture_rpc_close(p);
110
111         return ret;
112 }