Bump to 1.14.1
[platform/upstream/augeas.git] / tests / test-getlogin.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, char *, (void));
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   char *buf;
42
43   /* Test value.  */
44   buf = getlogin ();
45   if (buf == NULL)
46     {
47       if (errno == ENOENT)
48         {
49           /* This can happen on GNU/Linux.  */
50           fprintf (stderr, "Skipping test: no entry in utmp file.\n");
51           return 77;
52         }
53
54       /* getlogin() fails when stdin is not connected to a tty.  */
55       ASSERT (errno == ENOTTY
56               || errno == EINVAL /* seen on Linux/SPARC */
57               || errno == ENXIO
58              );
59 #if !defined __hpux /* On HP-UX 11.11 it fails anyway.  */
60       ASSERT (! isatty (0));
61 #endif
62       fprintf (stderr, "Skipping test: stdin is not a tty.\n");
63       return 77;
64     }
65
66   /* Compare against the value from the environment.  */
67 #if !((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__)
68   /* Unix platform */
69   {
70 # if HAVE_TTYNAME
71     const char *tty;
72     struct stat stat_buf;
73     struct passwd *pwd;
74
75     tty = ttyname (STDIN_FILENO);
76     if (tty == NULL)
77       {
78          fprintf (stderr, "Skipping test: stdin is not a tty.\n");
79          return 77;
80       }
81
82     ASSERT (stat (tty, &stat_buf) == 0);
83
84     pwd = getpwuid (stat_buf.st_uid);
85     if (! pwd)
86       {
87         long int uid = stat_buf.st_uid;
88         fprintf (stderr, "Skipping test: no name found for uid %ld\n", uid);
89         return 77;
90       }
91
92     ASSERT (strcmp (pwd->pw_name, buf) == 0);
93 # endif
94   }
95 #endif
96 #if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__
97   /* Native Windows platform.
98      Note: This test would fail on Cygwin in an ssh session, because sshd
99      sets USERNAME=SYSTEM.  */
100   {
101     const char *name = getenv ("USERNAME");
102     if (name != NULL && name[0] != '\0')
103       ASSERT (strcmp (buf, name) == 0);
104   }
105 #endif
106
107   return 0;
108 }