s3-pam_winbind: Fix Bug 6253: Use correct value for password expiry calculation.
[Samba.git] / source4 / torture / libnet / userinfo.c
blob11e57f852d12b4220d6592278c8d506fe86b60b8
1 /*
2 Unix SMB/CIFS implementation.
3 Test suite for libnet calls.
5 Copyright (C) Rafal Szczesniak 2005
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "torture/rpc/rpc.h"
23 #include "libnet/libnet.h"
24 #include "libcli/security/security.h"
25 #include "librpc/gen_ndr/ndr_samr_c.h"
26 #include "param/param.h"
27 #include "torture/libnet/utils.h"
30 #define TEST_USERNAME "libnetuserinfotest"
32 static bool test_userinfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
33 struct policy_handle *domain_handle,
34 struct dom_sid2 *domain_sid, const char* user_name,
35 uint32_t *rid)
37 const uint16_t level = 5;
38 NTSTATUS status;
39 struct libnet_rpc_userinfo user;
40 struct dom_sid *user_sid;
42 user_sid = dom_sid_add_rid(mem_ctx, domain_sid, *rid);
44 user.in.domain_handle = *domain_handle;
45 user.in.sid = dom_sid_string(mem_ctx, user_sid);
46 user.in.level = level; /* this should be extended */
48 printf("Testing sync libnet_rpc_userinfo (SID argument)\n");
49 status = libnet_rpc_userinfo(p, mem_ctx, &user);
50 if (!NT_STATUS_IS_OK(status)) {
51 printf("Failed to call sync libnet_rpc_userinfo - %s\n", nt_errstr(status));
52 return false;
55 ZERO_STRUCT(user);
57 user.in.domain_handle = *domain_handle;
58 user.in.sid = NULL;
59 user.in.username = TEST_USERNAME;
60 user.in.level = level;
62 printf("Testing sync libnet_rpc_userinfo (username argument)\n");
63 status = libnet_rpc_userinfo(p, mem_ctx, &user);
64 if (!NT_STATUS_IS_OK(status)) {
65 printf("Failed to call sync libnet_rpc_userinfo - %s\n", nt_errstr(status));
66 return false;
69 return true;
73 static bool test_userinfo_async(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
74 struct policy_handle *domain_handle,
75 struct dom_sid2 *domain_sid, const char* user_name,
76 uint32_t *rid)
78 const uint16_t level = 10;
79 NTSTATUS status;
80 struct composite_context *c;
81 struct libnet_rpc_userinfo user;
82 struct dom_sid *user_sid;
84 user_sid = dom_sid_add_rid(mem_ctx, domain_sid, *rid);
86 user.in.domain_handle = *domain_handle;
87 user.in.sid = dom_sid_string(mem_ctx, user_sid);
88 user.in.level = level; /* this should be extended */
90 printf("Testing async libnet_rpc_userinfo (SID argument)\n");
92 c = libnet_rpc_userinfo_send(p, &user, msg_handler);
93 if (!c) {
94 printf("Failed to call sync libnet_rpc_userinfo_send\n");
95 return false;
98 status = libnet_rpc_userinfo_recv(c, mem_ctx, &user);
99 if (!NT_STATUS_IS_OK(status)) {
100 printf("Calling async libnet_rpc_userinfo failed - %s\n", nt_errstr(status));
101 return false;
104 ZERO_STRUCT(user);
106 user.in.domain_handle = *domain_handle;
107 user.in.sid = NULL;
108 user.in.username = TEST_USERNAME;
109 user.in.level = level;
111 printf("Testing async libnet_rpc_userinfo (username argument)\n");
113 c = libnet_rpc_userinfo_send(p, &user, msg_handler);
114 if (!c) {
115 printf("Failed to call sync libnet_rpc_userinfo_send\n");
116 return false;
119 status = libnet_rpc_userinfo_recv(c, mem_ctx, &user);
120 if (!NT_STATUS_IS_OK(status)) {
121 printf("Calling async libnet_rpc_userinfo failed - %s\n", nt_errstr(status));
122 return false;
125 return true;
129 bool torture_userinfo(struct torture_context *torture)
131 NTSTATUS status;
132 struct dcerpc_pipe *p;
133 TALLOC_CTX *mem_ctx;
134 bool ret = true;
135 struct policy_handle h;
136 struct lsa_String name;
137 struct dom_sid2 sid;
138 uint32_t rid;
140 mem_ctx = talloc_init("test_userinfo");
142 status = torture_rpc_connection(torture,
144 &ndr_table_samr);
146 if (!NT_STATUS_IS_OK(status)) {
147 return false;
150 name.string = lp_workgroup(torture->lp_ctx);
153 * Testing synchronous version
155 if (!test_opendomain(torture, p, mem_ctx, &h, &name, &sid)) {
156 ret = false;
157 goto done;
160 if (!test_user_create(torture, p, mem_ctx, &h, TEST_USERNAME, &rid)) {
161 ret = false;
162 goto done;
165 if (!test_userinfo(p, mem_ctx, &h, &sid, TEST_USERNAME, &rid)) {
166 ret = false;
167 goto done;
170 if (!test_user_cleanup(torture, p, mem_ctx, &h, TEST_USERNAME)) {
171 ret = false;
172 goto done;
176 * Testing asynchronous version and monitor messages
178 if (!test_opendomain(torture, p, mem_ctx, &h, &name, &sid)) {
179 ret = false;
180 goto done;
183 if (!test_user_create(torture, p, mem_ctx, &h, TEST_USERNAME, &rid)) {
184 ret = false;
185 goto done;
188 if (!test_userinfo_async(p, mem_ctx, &h, &sid, TEST_USERNAME, &rid)) {
189 ret = false;
190 goto done;
193 if (!test_user_cleanup(torture, p, mem_ctx, &h, TEST_USERNAME)) {
194 ret = false;
195 goto done;
198 done:
199 talloc_free(mem_ctx);
201 return ret;