r14402: Generate seperate headers for RPC client functions.
[metze/samba/wip.git] / source4 / torture / rpc / unixinfo.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for unixinfo rpc operations
4
5    Copyright (C) Volker Lendecke 2005
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 #include "torture/torture.h"
24 #include "torture/rpc/rpc.h"
25 #include "librpc/gen_ndr/ndr_unixinfo.h"
26 #include "librpc/gen_ndr/ndr_unixinfo_c.h"
27
28
29 /*
30   test the UidToSid interface
31 */
32 static BOOL test_uidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
33 {
34         NTSTATUS status;
35         struct unixinfo_UidToSid r;
36
37         r.in.uid = 1000;
38
39         status = dcerpc_unixinfo_UidToSid(p, mem_ctx, &r);
40         if (!NT_STATUS_IS_OK(status)) {
41                 printf("UidToSid failed == %s\n", nt_errstr(status));
42                 return False;
43         }
44
45         return True;
46 }
47
48 static BOOL test_getpwuid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
49 {
50         uint64_t uids[512];
51         const int num_uids = sizeof(uids)/sizeof(uids[0]);
52         int i;
53         struct unixinfo_GetPWUid r;
54         NTSTATUS result;
55
56         for (i=0; i<num_uids; i++) {
57                 uids[i] = i;
58         }
59         
60         r.in.count = num_uids;
61         r.in.uids = uids;
62
63         result = dcerpc_unixinfo_GetPWUid(p, mem_ctx, &r);
64
65         return NT_STATUS_IS_OK(result);
66 }
67
68 BOOL torture_rpc_unixinfo(void)
69 {
70         NTSTATUS status;
71         struct dcerpc_pipe *p;
72         TALLOC_CTX *mem_ctx;
73         BOOL ret = True;
74
75         mem_ctx = talloc_init("torture_rpc_unixinfo");
76
77         status = torture_rpc_connection(mem_ctx, &p, &dcerpc_table_unixinfo);
78         if (!NT_STATUS_IS_OK(status)) {
79                 return False;
80         }
81
82         ret &= test_uidtosid(p, mem_ctx);
83         ret &= test_getpwuid(p, mem_ctx);
84
85         printf("\n");
86         
87         talloc_free(mem_ctx);
88
89         return ret;
90 }