- add 'print' to the DCERPC binding strings
[jelmer/samba4-debian.git] / source / 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_NetWkstaGetInfo(struct dcerpc_pipe *p, 
26                            TALLOC_CTX *mem_ctx)
27 {
28         NTSTATUS status;
29         struct wkssvc_NetWkstaGetInfo 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 NetWkstaGetInfo level %u\n", r.in.level);
39                 status = dcerpc_wkssvc_NetWkstaGetInfo(p, mem_ctx, &r);
40                 if (!NT_STATUS_IS_OK(status)) {
41                         printf("NetWkstaGetInfo level %u failed - %s\n", r.in.level, nt_errstr(status));
42                         ret = False;
43                 }
44                 if (!W_ERROR_IS_OK(r.out.result)) {
45                         printf("NetWkstaGetInfo level %u failed - %s\n", r.in.level, win_errstr(r.out.result));
46                 }
47         }
48
49         return ret;
50 }
51
52
53 static BOOL test_NetWkstaTransportEnum(struct dcerpc_pipe *p, 
54                                TALLOC_CTX *mem_ctx)
55 {
56         NTSTATUS status;
57         struct wkssvc_NetWkstaTransportEnum r;
58         BOOL ret = True;
59         uint32 resume_handle = 0;
60         struct wkssvc_NetWkstaTransportCtr0 ctr0;
61
62         ZERO_STRUCT(ctr0);
63
64         r.in.server_name = dcerpc_server_name(p);
65         r.in.level = 0;
66         r.in.ctr.ctr0 = &ctr0;
67         r.in.max_buffer = (uint32)-1;
68         r.in.resume_handle = &resume_handle;
69         r.out.resume_handle = &resume_handle;
70
71         printf("testing NetWkstaTransportEnum\n");
72         status = dcerpc_wkssvc_NetWkstaTransportEnum(p, mem_ctx, &r);
73         if (!NT_STATUS_IS_OK(status)) {
74                 printf("NetWkstaTransportEnum failed - %s\n", nt_errstr(status));
75                 ret = False;
76         }
77         if (!W_ERROR_IS_OK(r.out.result)) {
78                 printf("NetWkstaTransportEnum level %u failed - %s\n", r.in.level, win_errstr(r.out.result));
79         }
80
81         return ret;
82 }
83
84
85
86 BOOL torture_rpc_wkssvc(int dummy)
87 {
88         NTSTATUS status;
89         struct dcerpc_pipe *p;
90         TALLOC_CTX *mem_ctx;
91         BOOL ret = True;
92
93         mem_ctx = talloc_init("torture_rpc_wkssvc");
94
95         status = torture_rpc_connection(&p, 
96                                         DCERPC_WKSSVC_NAME,
97                                         DCERPC_WKSSVC_UUID,
98                                         DCERPC_WKSSVC_VERSION);
99         if (!NT_STATUS_IS_OK(status)) {
100                 return False;
101         }
102
103         if (!test_NetWkstaGetInfo(p, mem_ctx)) {
104                 ret = False;
105         }
106
107         if (!test_NetWkstaTransportEnum(p, mem_ctx)) {
108                 ret = False;
109         }
110
111         talloc_destroy(mem_ctx);
112
113         torture_rpc_close(p);
114
115         return ret;
116 }