1 /* Basic test for two passwd databases.
2 Copyright (C) 2017-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
25 #include <support/support.h>
29 /* The data in these tables is arbitrary, but the merged data based on
30 the first two tables will be compared against the expected data in
31 the pwd_expected table, and the tests[] array. */
33 static struct passwd pwd_table_1
[] = {
42 static struct passwd pwd_table_2
[] = {
50 _nss_test1_init_hook(test_tables
*t
)
52 t
->pwd_table
= pwd_table_1
;
56 _nss_test2_init_hook(test_tables
*t
)
58 t
->pwd_table
= pwd_table_2
;
61 static struct passwd pwd_expected
[] = {
77 { 100, "name100" }, /* control, first db */
78 { 16, "name16" }, /* second db */
79 { 30, "name30" }, /* test overlaps in name */
80 { 200, "name200" }, /* test overlaps uid */
90 __nss_configure_lookup ("passwd", "test1 test2");
95 for (struct passwd
*p
= getpwent (); p
!= NULL
; ++i
, p
= getpwent ())
97 retval
+= compare_passwds (i
, & pwd_expected
[i
], p
);
99 if (p
->pw_uid
!= pwd_expected
[i
].pw_uid
|| strcmp (p
->pw_name
, pwd_expected
[i
].pw_name
) != 0)
101 printf ("FAIL: getpwent for %u.%s returned %u.%s\n",
102 pwd_expected
[i
].pw_uid
, pwd_expected
[i
].pw_name
,
103 p
->pw_uid
, p
->pw_name
);
111 for (i
=0; tests
[i
].name
; i
++)
113 struct passwd
*p
= getpwnam (tests
[i
].name
);
114 if (strcmp (p
->pw_name
, tests
[i
].name
) != 0
115 || p
->pw_uid
!= tests
[i
].uid
)
117 printf("FAIL: getpwnam for %u.%s returned %u.%s\n",
118 tests
[i
].uid
, tests
[i
].name
,
119 p
->pw_uid
, p
->pw_name
);
123 p
= getpwuid (tests
[i
].uid
);
124 if (strcmp (p
->pw_name
, tests
[i
].name
) != 0
125 || p
->pw_uid
!= tests
[i
].uid
)
127 printf("FAIL: getpwuid for %u.%s returned %u.%s\n",
128 tests
[i
].uid
, tests
[i
].name
,
129 p
->pw_uid
, p
->pw_name
);
137 #include <support/test-driver.c>