2 Unix SMB/CIFS implementation.
4 local testing of the nss wrapper
6 Copyright (C) Guenther Deschner 2009
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "torture/torture.h"
24 #include "lib/replace/system/passwd.h"
25 #include "lib/nss_wrapper/nss_wrapper.h"
27 static void print_passwd(struct passwd *pwd)
29 printf("%s:%s:%lu:%lu:%s:%s:%s\n",
32 (unsigned long)pwd->pw_uid,
33 (unsigned long)pwd->pw_gid,
40 static bool test_nwrap_getpwnam(struct torture_context *tctx,
45 torture_comment(tctx, "Testing getpwnam: %s\n", name);
52 return pwd ? true : false;
55 static bool test_nwrap_getpwuid(struct torture_context *tctx,
60 torture_comment(tctx, "Testing getpwuid: %lu\n", (unsigned long)uid);
67 return pwd ? true : false;
70 static void print_group(struct group *grp)
76 (unsigned long)grp->gr_gid);
78 if (!grp->gr_mem[0]) {
83 for (i=0; grp->gr_mem[i+1]; i++) {
84 printf("%s,", grp->gr_mem[i]);
86 printf("%s\n", grp->gr_mem[i]);
89 static bool test_nwrap_getgrnam(struct torture_context *tctx,
94 torture_comment(tctx, "Testing getgrnam: %s\n", name);
101 return grp ? true : false;
104 static bool test_nwrap_getgrgid(struct torture_context *tctx,
109 torture_comment(tctx, "Testing getgrgid: %lu\n", (unsigned long)gid);
116 return grp ? true : false;
120 static bool test_nwrap_passwd(struct torture_context *tctx)
123 const char **names = NULL;
129 torture_comment(tctx, "Testing setpwent\n");
132 while ((pwd = getpwent())) {
133 torture_comment(tctx, "Testing getpwent\n");
137 add_string_to_array(tctx, pwd->pw_name, &names, &num_names);
138 add_uid_to_array_unique(tctx, pwd->pw_uid, &uids, &num_uids);
142 torture_comment(tctx, "Testing endpwent\n");
145 torture_assert_int_equal(tctx, num_names, num_uids, "invalid results");
147 for (i=0; i < num_names; i++) {
148 torture_assert(tctx, test_nwrap_getpwnam(tctx, names[i]),
149 "failed to call getpwnam for enumerated user");
150 torture_assert(tctx, test_nwrap_getpwuid(tctx, uids[i]),
151 "failed to call getpwuid for enumerated user");
157 static bool test_nwrap_group(struct torture_context *tctx)
160 const char **names = NULL;
166 torture_comment(tctx, "Testing setgrent\n");
170 torture_comment(tctx, "Testing getgrent\n");
174 add_string_to_array(tctx, grp->gr_name, &names, &num_names);
175 add_gid_to_array_unique(tctx, grp->gr_gid, &gids, &num_gids);
179 torture_comment(tctx, "Testing endgrent\n");
182 torture_assert_int_equal(tctx, num_names, num_gids, "invalid results");
184 for (i=0; i < num_names; i++) {
185 torture_assert(tctx, test_nwrap_getgrnam(tctx, names[i]),
186 "failed to call getgrnam for enumerated user");
187 torture_assert(tctx, test_nwrap_getgrgid(tctx, gids[i]),
188 "failed to call getgrgid for enumerated user");
194 static bool test_nwrap_env(struct torture_context *tctx)
196 const char *old_pwd = getenv("NSS_WRAPPER_PASSWD");
197 const char *old_group = getenv("NSS_WRAPPER_GROUP");
199 if (!old_pwd || !old_group) {
200 torture_skip(tctx, "nothing to test\n");
204 torture_assert(tctx, test_nwrap_passwd(tctx),
205 "failed to test users");
206 torture_assert(tctx, test_nwrap_group(tctx),
207 "failed to test groups");
212 struct torture_suite *torture_local_nss_wrapper(TALLOC_CTX *mem_ctx)
214 struct torture_suite *suite = torture_suite_create(mem_ctx, "NSS-WRAPPER");
216 torture_suite_add_simple_test(suite, "env", test_nwrap_env);