gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
[gnulib.git] / tests / test-getgroups.c
1 /* Tests of getgroups.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Eric Blake <ebb9@byu.net>, 2009.  */
18
19 #include <config.h>
20
21 #include <unistd.h>
22
23 #include <errno.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stdint.h>
27
28 #define ASSERT(expr) \
29   do                                                                         \
30     {                                                                        \
31       if (!(expr))                                                           \
32         {                                                                    \
33           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__);  \
34           fflush (stderr);                                                   \
35           abort ();                                                          \
36         }                                                                    \
37     }                                                                        \
38   while (0)
39
40 int
41 main (int argc, char **argv _GL_UNUSED)
42 {
43   int result;
44   gid_t *groups;
45
46   errno = 0;
47   result = getgroups (0, NULL);
48   if (result == -1 && errno == ENOSYS)
49     {
50       fputs ("skipping test: no support for groups\n", stderr);
51       return 77;
52     }
53   ASSERT (0 <= result);
54   ASSERT (result + 1 < SIZE_MAX / sizeof *groups);
55   groups = malloc ((result + 1) * sizeof *groups);
56   ASSERT (groups);
57   groups[result] = -1;
58   /* Check for EINVAL handling.  Not all processes have supplemental
59      groups, and getgroups does not have to return the effective gid,
60      so a result of 0 is reasonable.  Also, we can't test for EINVAL
61      if result is 1, because of how getgroups treats 0.  */
62   if (1 < result)
63     {
64       errno = 0;
65       ASSERT (getgroups (result - 1, groups) == -1);
66       ASSERT (errno == EINVAL);
67     }
68   ASSERT (getgroups (result, groups) == result);
69   ASSERT (getgroups (result + 1, groups) == result);
70   ASSERT (groups[result] == -1);
71   errno = 0;
72   ASSERT (getgroups (-1, NULL) == -1);
73   ASSERT (errno == EINVAL);
74
75   /* The automated unit test, with no arguments, ends here.  However,
76      for debugging purposes, you can pass a command-line argument to
77      list the returned groups.  */
78   if (1 < argc)
79     {
80       int i;
81       for (i = 0; i < result; i++)
82         printf ("%d\n", (int) groups[i]);
83     }
84   return 0;
85 }