be59d5de78f26c9b6438c0933db2f11d874d12b5
[gnulib.git] / tests / test-symlinkat.c
1 /* Tests of symlinkat and readlinkat.
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 <unistd.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (symlinkat, int, (char const *, int, char const *));
25 SIGNATURE_CHECK (readlinkat, ssize_t, (int, char const *, char *, size_t));
26
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <stdbool.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <sys/stat.h>
34
35 #include "macros.h"
36
37 #ifndef HAVE_SYMLINK
38 # define HAVE_SYMLINK 0
39 #endif
40
41 #define BASE "test-symlinkat.t"
42
43 #include "test-readlink.h"
44 #include "test-symlink.h"
45
46 static int dfd = AT_FDCWD;
47
48 static int
49 do_symlink (char const *contents, char const *name)
50 {
51   return symlinkat (contents, dfd, name);
52 }
53
54 static ssize_t
55 do_readlink (char const *name, char *buf, size_t len)
56 {
57   return readlinkat (dfd, name, buf, len);
58 }
59
60 int
61 main (void)
62 {
63   char buf[80];
64   int result;
65
66   /* Remove any leftovers from a previous partial run.  */
67   system ("rm -rf " BASE "*");
68
69   /* Perform same checks as counterpart functions.  */
70   result = test_readlink (do_readlink, false);
71   ASSERT (test_symlink (do_symlink, false) == result);
72   dfd = openat (AT_FDCWD, ".", O_RDONLY);
73   ASSERT (0 <= dfd);
74   ASSERT (test_readlink (do_readlink, false) == result);
75   ASSERT (test_symlink (do_symlink, false) == result);
76
77   /* Now perform some cross-directory checks.  Skip everything else on
78      mingw.  */
79   if (HAVE_SYMLINK)
80     {
81       const char *contents = "don't matter!";
82       ssize_t exp = strlen (contents);
83
84       /* Create link while cwd is '.', then read it in '..'.  */
85       ASSERT (symlinkat (contents, AT_FDCWD, BASE "link") == 0);
86       errno = 0;
87       ASSERT (symlinkat (contents, dfd, BASE "link") == -1);
88       ASSERT (errno == EEXIST);
89       ASSERT (chdir ("..") == 0);
90       errno = 0;
91       ASSERT (readlinkat (AT_FDCWD, BASE "link", buf, sizeof buf) == -1);
92       ASSERT (errno == ENOENT);
93       ASSERT (readlinkat (dfd, BASE "link", buf, sizeof buf) == exp);
94       ASSERT (strncmp (contents, buf, exp) == 0);
95       ASSERT (unlinkat (dfd, BASE "link", 0) == 0);
96
97       /* Create link while cwd is '..', then read it in '.'.  */
98       ASSERT (symlinkat (contents, dfd, BASE "link") == 0);
99       ASSERT (fchdir (dfd) == 0);
100       errno = 0;
101       ASSERT (symlinkat (contents, AT_FDCWD, BASE "link") == -1);
102       ASSERT (errno == EEXIST);
103       buf[0] = '\0';
104       ASSERT (readlinkat (AT_FDCWD, BASE "link", buf, sizeof buf) == exp);
105       ASSERT (strncmp (contents, buf, exp) == 0);
106       buf[0] = '\0';
107       ASSERT (readlinkat (dfd, BASE "link", buf, sizeof buf) == exp);
108       ASSERT (strncmp (contents, buf, exp) == 0);
109       ASSERT (unlink (BASE "link") == 0);
110     }
111
112   ASSERT (close (dfd) == 0);
113   if (result == 77)
114     fputs ("skipping test: symlinks not supported on this file system\n",
115            stderr);
116   return result;
117 }