Bump to 1.14.1
[platform/upstream/augeas.git] / tests / test-getlogin_r.c
1 /* Test of getting user name.
2    Copyright (C) 2010-2016 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 Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #include <config.h>
20
21 #include <unistd.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (getlogin_r, int, (char *, size_t));
25
26 #include <errno.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <pwd.h>
32
33 #include <sys/stat.h>
34 #include <sys/types.h>
35
36 #include "macros.h"
37
38 int
39 main (void)
40 {
41   /* Test with a large enough buffer.  */
42   char buf[1024];
43   int err;
44
45   err = getlogin_r (buf, sizeof (buf));
46   if (err != 0)
47     {
48       if (err == ENOENT)
49         {
50           /* This can happen on GNU/Linux.  */
51           fprintf (stderr, "Skipping test: no entry in utmp file.\n");
52           return 77;
53         }
54
55       /* getlogin_r() fails when stdin is not connected to a tty.  */
56       ASSERT (err == ENOTTY
57               || err == EINVAL /* seen on Linux/SPARC */
58               || err == ENXIO
59              );
60 #if !defined __hpux /* On HP-UX 11.11 it fails anyway.  */
61       ASSERT (! isatty (0));
62 #endif
63       fprintf (stderr, "Skipping test: stdin is not a tty.\n");
64       return 77;
65     }
66
67   /* Compare against the value from the environment.  */
68 #if !((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__)
69   /* Unix platform */
70   {
71 # if HAVE_TTYNAME
72     const char *tty;
73     struct stat stat_buf;
74     struct passwd *pwd;
75
76     tty = ttyname (STDIN_FILENO);
77     if (tty == NULL)
78       {
79          fprintf (stderr, "Skipping test: stdin is not a tty.\n");
80          return 77;
81       }
82
83     ASSERT (stat (tty, &stat_buf) == 0);
84
85     pwd = getpwuid (stat_buf.st_uid);
86     if (! pwd)
87       {
88          fprintf (stderr, "Skipping test: no name found for uid %d\n",
89                   stat_buf.st_uid);
90          return 77;
91       }
92
93     ASSERT (strcmp (pwd->pw_name, buf) == 0);
94 # endif
95   }
96 #endif
97 #if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__
98   /* Native Windows platform.
99      Note: This test would fail on Cygwin in an ssh session, because sshd
100      sets USERNAME=SYSTEM.  */
101   {
102     const char *name = getenv ("USERNAME");
103     if (name != NULL && name[0] != '\0')
104       ASSERT (strcmp (buf, name) == 0);
105   }
106 #endif
107
108   /* Test with a small buffer.  */
109   {
110     char smallbuf[1024];
111     size_t n = strlen (buf);
112     size_t i;
113
114     for (i = 0; i <= n; i++)
115       {
116         err = getlogin_r (smallbuf, i);
117         if (i == 0)
118           ASSERT (err == ERANGE || err == EINVAL);
119         else
120           ASSERT (err == ERANGE);
121       }
122   }
123
124   /* Test with a huge buffer.  */
125   {
126     static char hugebuf[70000];
127
128     ASSERT (getlogin_r (hugebuf, sizeof (hugebuf)) == 0);
129     ASSERT (strcmp (hugebuf, buf) == 0);
130   }
131
132   return 0;
133 }