changed wks to wkssvc (suggestion from metze). Started adding samr_CreateUser().
[kai/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};
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         struct wkssvc_TransportInfo info;
57         uint32 resume_handle = 0;
58         struct wkssvc_TransportInfoArray info_array;
59
60         ZERO_STRUCT(info);
61         ZERO_STRUCT(info_array);
62
63         info.u.array = &info_array;
64
65         r.in.server_name = dcerpc_server_name(p);
66         r.in.info = &info;
67         r.out.info = &info;
68         r.in.max_buffer = (uint32)-1;
69         r.in.resume_handle = &resume_handle;
70         r.out.resume_handle = &resume_handle;
71
72         printf("testing TransportEnum\n");
73         status = dcerpc_wkssvc_TransportEnum(p, mem_ctx, &r);
74         if (!NT_STATUS_IS_OK(status)) {
75                 printf("TransportEnum failed - %s\n", nt_errstr(status));
76                 ret = False;
77         }
78
79         return ret;
80 }
81
82
83
84 BOOL torture_rpc_wkssvc(int dummy)
85 {
86         NTSTATUS status;
87         struct dcerpc_pipe *p;
88         TALLOC_CTX *mem_ctx;
89         BOOL ret = True;
90
91         mem_ctx = talloc_init("torture_rpc_wkssvc");
92
93         status = torture_rpc_connection(&p, 
94                                         DCERPC_WKSSVC_NAME,
95                                         DCERPC_WKSSVC_UUID,
96                                         DCERPC_WKSSVC_VERSION);
97         if (!NT_STATUS_IS_OK(status)) {
98                 return False;
99         }
100
101         p->flags |= DCERPC_DEBUG_PRINT_BOTH;
102         
103         if (!test_QueryInfo(p, mem_ctx)) {
104                 ret = False;
105         }
106
107         if (!test_TransportEnum(p, mem_ctx)) {
108                 ret = False;
109         }
110
111         torture_rpc_close(p);
112
113         return ret;
114 }