utimens: add lutimens interface
[gnulib.git] / tests / test-utimens.c
1 /* Tests of utimens.
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 "utimens.h"
22
23 #include <stdbool.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #define ASSERT(expr) \
28   do                                                                         \
29     {                                                                        \
30       if (!(expr))                                                           \
31         {                                                                    \
32           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__);  \
33           fflush (stderr);                                                   \
34           abort ();                                                          \
35         }                                                                    \
36     }                                                                        \
37   while (0)
38
39 #define BASE "test-utimens.t"
40
41 #include "test-futimens.h"
42 #include "test-lutimens.h"
43 #include "test-utimens.h"
44
45 /* Wrap gl_futimens to behave like futimens.  */
46 static int
47 do_futimens (int fd, struct timespec const times[2])
48 {
49   return gl_futimens (fd, NULL, times);
50 }
51
52 /* Test the use of file descriptors alongside a name.  */
53 static int
54 do_fdutimens (char const *name, struct timespec const times[2])
55 {
56   int result;
57   int fd = open (name, O_WRONLY);
58   if (fd < 0)
59     fd = open (name, O_RDONLY);
60   errno = 0;
61   result = gl_futimens (fd, name, times);
62   if (0 <= fd)
63     {
64       int saved_errno = errno;
65       close (fd);
66       errno = saved_errno;
67     }
68   return result;
69 }
70
71 int
72 main ()
73 {
74   int result1;
75   int result2;
76
77   /* Clean up any trash from prior testsuite runs.  */
78   ASSERT (system ("rm -rf " BASE "*") == 0);
79
80   ASSERT (test_utimens (utimens) == 0);
81   ASSERT (test_utimens (do_fdutimens) == 0);
82   result1 = test_futimens (do_futimens, true);
83   if (result1)
84     ASSERT (result1 == 77);
85   /* Print only one skip message.  */
86   result2 = test_lutimens (lutimens, result1 == 0);
87   if (result2)
88     ASSERT (result2 == 77);
89   return result1 | result2;
90 }