r9792: Rename StrCaseCmp -> strcasecmp_m. All these years I was thinking
[samba.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 "lib/events/events.h"
24 #include "librpc/gen_ndr/ndr_unixinfo.h"
25
26
27 /*
28   test the UidToSid interface
29 */
30 static BOOL test_uidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
31 {
32         NTSTATUS status;
33         struct unixinfo_UidToSid r;
34
35         r.in.uid = 1000;
36
37         status = dcerpc_unixinfo_UidToSid(p, mem_ctx, &r);
38         if (!NT_STATUS_IS_OK(status)) {
39                 printf("UidToSid failed == %s\n", nt_errstr(status));
40                 return False;
41         }
42
43         return True;
44 }
45
46 static BOOL test_getpwuid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
47 {
48         uint64_t uids[512];
49         const int num_uids = sizeof(uids)/sizeof(uids[0]);
50         int i;
51         struct unixinfo_GetPWUid r;
52         NTSTATUS result;
53
54         for (i=0; i<num_uids; i++) {
55                 uids[i] = i;
56         }
57         
58         r.in.count = num_uids;
59         r.in.uids = uids;
60
61         result = dcerpc_unixinfo_GetPWUid(p, mem_ctx, &r);
62
63         return NT_STATUS_IS_OK(result);
64 }
65
66 BOOL torture_rpc_unixinfo(void)
67 {
68         NTSTATUS status;
69         struct dcerpc_pipe *p;
70         TALLOC_CTX *mem_ctx;
71         BOOL ret = True;
72
73         mem_ctx = talloc_init("torture_rpc_unixinfo");
74
75         status = torture_rpc_connection(mem_ctx, &p, 
76                                         DCERPC_UNIXINFO_NAME,
77                                         DCERPC_UNIXINFO_UUID,
78                                         DCERPC_UNIXINFO_VERSION);
79         if (!NT_STATUS_IS_OK(status)) {
80                 return False;
81         }
82
83         ret &= test_uidtosid(p, mem_ctx);
84         ret &= test_getpwuid(p, mem_ctx);
85
86         printf("\n");
87         
88         talloc_free(mem_ctx);
89
90         return ret;
91 }