Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / testsuite / nsswitch / getent_pwent.c
blob96c804433a4ddc2967b55e272cf3482c8e3ecd70
1 /* Test out of order operations with {set,get,end}pwent */
3 /*
4 Unix SMB/Netbios implementation.
5 Version 1.9.
6 Security context tests
7 Copyright (C) Tim Potter 2000
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <stdio.h>
25 #include <pwd.h>
27 int main (int argc, char **argv)
29 struct passwd *pw;
30 int found = 0;
31 int num_users, i;
33 /* Test getpwent() without setpwent() */
35 for (i = 0; i < 100; i++) {
36 pw = getpwent();
38 /* This is supposed to work */
40 #if 0
41 if (pw != NULL) {
42 printf("FAIL: getpwent() with no setpwent()\n");
43 return 1;
45 #endif
48 /* Work out how many user till first domain user */
50 num_users = 0;
51 setpwent();
53 while (1) {
54 pw = getpwent();
55 num_users++;
57 if (pw == NULL) break;
59 if (strchr(pw->pw_name, '/')) {
60 found = 1;
61 break;
66 if (!found) {
67 printf("FAIL: could not find any domain users\n");
68 return 1;
71 /* Test stopping getpwent in the middle of a set of users */
73 endpwent();
75 /* Test setpwent() without any getpwent() calls */
77 setpwent();
79 for (i = 0; i < (num_users - 1); i++) {
80 getpwent();
83 endpwent();
85 /* Test lots of setpwent() calls */
87 setpwent();
89 for (i = 0; i < (num_users - 1); i++) {
90 getpwent();
93 for (i = 0; i < 100; i++) {
94 setpwent();
97 /* Test lots of endpwent() calls */
99 setpwent();
101 for (i = 0; i < (num_users - 1); i++) {
102 getpwent();
105 for (i = 0; i < 100; i++) {
106 endpwent();
109 /* Everything's cool */
111 printf("PASS\n");
112 return 0;