a70721a79d9485d2f64186e9a8989eb0f21bafec
[gnulib.git] / tests / test-fstatat.c
1 /* Tests of fstatat.
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 <sys/stat.h>
22
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <stdbool.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29
30 #include "openat.h"
31 #include "pathmax.h"
32 #include "same-inode.h"
33
34 #if !HAVE_SYMLINK
35 # define symlink(a,b) (-1)
36 #endif
37
38 #define ASSERT(expr) \
39   do                                                                         \
40     {                                                                        \
41       if (!(expr))                                                           \
42         {                                                                    \
43           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__);  \
44           fflush (stderr);                                                   \
45           abort ();                                                          \
46         }                                                                    \
47     }                                                                        \
48   while (0)
49
50 #define BASE "test-fstatat.t"
51
52 #include "test-lstat.h"
53 #include "test-stat.h"
54
55 static int dfd = AT_FDCWD;
56
57 /* Wrapper around fstatat to test stat behavior.  */
58 static int
59 do_stat (char const *name, struct stat *st)
60 {
61   return statat (dfd, name, st);
62 }
63
64 /* Wrapper around fstatat to test lstat behavior.  */
65 static int
66 do_lstat (char const *name, struct stat *st)
67 {
68   return lstatat (dfd, name, st);
69 }
70
71 int
72 main ()
73 {
74   int result;
75   ASSERT (test_stat_func (do_stat) == 0);
76   result = test_lstat_func (do_lstat, false);
77   dfd = open (".", O_RDONLY);
78   ASSERT (0 <= dfd);
79   ASSERT (test_stat_func (do_stat) == 0);
80   ASSERT (test_lstat_func (do_lstat, false) == result);
81   ASSERT (close (dfd) == 0);
82
83   /* FIXME - add additional tests of dfd not at current directory.  */
84
85   if (result == 77)
86     fputs ("skipping test: symlinks not supported on this filesystem\n",
87            stderr);
88   return result;
89 }