futimens: work around Solaris 11 bug
[gnulib.git] / tests / test-futimens.h
1 /* Test of file timestamp modification functions.
2    Copyright (C) 2009, 2010 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 #include "test-utimens-common.h"
18
19 /* This file is designed to test both fdutimens(a,NULL,b) and
20    futimens(a,b).  FUNC is the function to test.  Assumes that BASE
21    and ASSERT are already defined.  If PRINT, warn before skipping
22    tests with status 77.  */
23 static int
24 test_futimens (int (*func) (int, struct timespec const *),
25                bool print)
26 {
27   int fd = creat (BASE "file", 0600);
28   int result;
29   struct stat st1;
30   struct stat st2;
31   ASSERT (0 <= fd);
32
33   /* Sanity check.  */
34   ASSERT (fstat (fd, &st1) == 0);
35   nap ();
36   errno = 0;
37   result = func (fd, NULL);
38   if (result == -1 && errno == ENOSYS)
39     {
40       ASSERT (close (fd) == 0);
41       ASSERT (unlink (BASE "file") == 0);
42       if (print)
43         fputs ("skipping test: "
44                "setting fd time not supported on this file system\n",
45                stderr);
46       return 77;
47     }
48   ASSERT (!result);
49   ASSERT (fstat (fd, &st2) == 0);
50   /* If utimens truncates to less resolution than the file system
51      supports, then time can appear to go backwards between now and a
52      follow-up utimens with UTIME_NOW or a NULL timespec.  Use
53      UTIMECMP_TRUNCATE_SOURCE to compensate, with st1 as the
54      source.  */
55   ASSERT (0 <= utimecmp (BASE "file", &st2, &st1, UTIMECMP_TRUNCATE_SOURCE));
56   if (check_ctime)
57     ASSERT (st1.st_ctime < st2.st_ctime
58             || (st1.st_ctime == st2.st_ctime
59                 && get_stat_ctime_ns (&st1) < get_stat_ctime_ns (&st2)));
60   {
61     /* On some NFS systems, the 'now' timestamp of creat or a NULL
62        timespec is determined by the server, but the 'now' timestamp
63        determined by gettime() (as is done when using UTIME_NOW) is
64        determined by the client; since the two machines are not
65        necessarily on the same clock, this is another case where time
66        can appear to go backwards.  The rest of this test cares about
67        client time, so manually use gettime() to set both times.  */
68     struct timespec ts[2];
69     gettime (&ts[0]);
70     ts[1] = ts[0];
71     ASSERT (func (fd, ts) == 0);
72     ASSERT (fstat (fd, &st1) == 0);
73     nap ();
74   }
75
76   /* Invalid arguments.  */
77   errno = 0;
78   ASSERT (func (AT_FDCWD, NULL) == -1);
79   ASSERT (errno == EBADF);
80   errno = 0;
81   ASSERT (func (-1, NULL) == -1);
82   ASSERT (errno == EBADF);
83   {
84     struct timespec ts[2] = { { Y2K, UTIME_BOGUS_POS }, { Y2K, 0 } };
85     errno = 0;
86     ASSERT (func (fd, ts) == -1);
87     ASSERT (errno == EINVAL);
88   }
89   {
90     struct timespec ts[2] = { { Y2K, 0 }, { Y2K, UTIME_BOGUS_NEG } };
91     errno = 0;
92     ASSERT (func (fd, ts) == -1);
93     ASSERT (errno == EINVAL);
94   }
95   ASSERT (fstat (fd, &st2) == 0);
96   ASSERT (st1.st_atime == st2.st_atime);
97   ASSERT (get_stat_atime_ns (&st1) == get_stat_atime_ns (&st2));
98   ASSERT (utimecmp (BASE "file", &st1, &st2, 0) == 0);
99
100   /* Set both times.  */
101   {
102     struct timespec ts[2] = { { Y2K, BILLION / 2 - 1 }, { Y2K, BILLION - 1 } };
103     ASSERT (func (fd, ts) == 0);
104     ASSERT (fstat (fd, &st2) == 0);
105     ASSERT (st2.st_atime == Y2K);
106     ASSERT (0 <= get_stat_atime_ns (&st2));
107     ASSERT (get_stat_atime_ns (&st2) < BILLION / 2);
108     ASSERT (st2.st_mtime == Y2K);
109     ASSERT (0 <= get_stat_mtime_ns (&st2));
110     ASSERT (get_stat_mtime_ns (&st2) < BILLION);
111     if (check_ctime)
112       ASSERT (st1.st_ctime < st2.st_ctime
113               || (st1.st_ctime == st2.st_ctime
114                   && get_stat_ctime_ns (&st1) < get_stat_ctime_ns (&st2)));
115   }
116
117   /* Play with UTIME_OMIT, UTIME_NOW.  */
118   {
119     struct stat st3;
120     struct timespec ts[2] = { { BILLION, UTIME_OMIT }, { 0, UTIME_NOW } };
121     nap ();
122     ASSERT (func (fd, ts) == 0);
123     ASSERT (fstat (fd, &st3) == 0);
124     ASSERT (st3.st_atime == Y2K);
125     ASSERT (0 <= get_stat_atime_ns (&st3));
126     ASSERT (get_stat_atime_ns (&st3) <= BILLION / 2);
127     ASSERT (utimecmp (BASE "file", &st1, &st3, 0) <= 0);
128     if (check_ctime)
129       ASSERT (st2.st_ctime < st3.st_ctime
130               || (st2.st_ctime == st3.st_ctime
131                   && get_stat_ctime_ns (&st2) < get_stat_ctime_ns (&st3)));
132     nap ();
133     ts[0].tv_nsec = 0;
134     ts[1].tv_nsec = UTIME_OMIT;
135     ASSERT (func (fd, ts) == 0);
136     ASSERT (fstat (fd, &st2) == 0);
137     ASSERT (st2.st_atime == BILLION);
138     ASSERT (get_stat_atime_ns (&st2) == 0);
139     ASSERT (st3.st_mtime == st2.st_mtime);
140     ASSERT (get_stat_mtime_ns (&st3) == get_stat_mtime_ns (&st2));
141     if (check_ctime)
142       ASSERT (st3.st_ctime < st2.st_ctime
143               || (st3.st_ctime == st2.st_ctime
144                   && get_stat_ctime_ns (&st3) < get_stat_ctime_ns (&st2)));
145   }
146
147   /* Cleanup.  */
148   ASSERT (close (fd) == 0);
149   ASSERT (unlink (BASE "file") == 0);
150   return 0;
151 }