summaryrefslogtreecommitdiff
path: root/testsuite/nsswitch/getent_pwent.c
blob: 9491d4594bf41d62dd2240dca858c4774b057c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* Test out of order operations with {set,get,end}pwent */

/* 
   Unix SMB/Netbios implementation.
   Version 1.9.
   Security context tests
   Copyright (C) Tim Potter 2000
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdio.h>
#include <pwd.h>

int main (int argc, char **argv)
{
	struct passwd *pw;
	int found = 0;
	int num_users, i;

	/* Test getpwent() without setpwent() */

	for (i = 0; i < 100; i++) {
		pw = getpwent();

		/* This is supposed to work */

#if 0
		if (pw != NULL) {
			printf("FAIL: getpwent() with no setpwent()\n");
			return 1;
		}
#endif
	}

	/* Work out how many user till first domain user */

	num_users = 0;
	setpwent();

	while (1) {
		pw = getpwent();
		num_users++;

		if (pw == NULL) break;

		if (strchr(pw->pw_name, '/')) {
			found = 1;
			break;
		}

	}

	if (!found) {
		printf("FAIL: could not find any domain users\n");
		return 1;
	}

	/* Test stopping getpwent in the middle of a set of users */

	endpwent();

	/* Test setpwent() without any getpwent() calls */

	setpwent();

	for (i = 0; i < (num_users - 1); i++) {
		getpwent();
	}

	endpwent();

	/* Test lots of setpwent() calls */
	
	setpwent();

	for (i = 0; i < (num_users - 1); i++) {
		getpwent();
	}

	for (i = 0; i < 100; i++) {
		setpwent();
	}

	/* Test lots of endpwent() calls */

	setpwent();

	for (i = 0; i < (num_users - 1); i++) {
		getpwent();
	}

	for (i = 0; i < 100; i++) {
		endpwent();
	}

	/* Everything's cool */

	printf("PASS\n");
	return 0;
}