canonicalize, canonicalize-lgpl: use <stdlib.h>
[pspp] / tests / test-canonicalize-lgpl.c
1 /* Test of execution of program termination handlers.
2    Copyright (C) 2007-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 Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 #include <stdlib.h>
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <sys/stat.h>
28 #include <unistd.h>
29
30 #if !HAVE_SYMLINK
31 # define symlink(a,b) (-1)
32 #endif /* !HAVE_SYMLINK */
33
34 #define ASSERT(expr) \
35   do                                                                         \
36     {                                                                        \
37       if (!(expr))                                                           \
38         {                                                                    \
39           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
40           fflush (stderr);                                                   \
41           abort ();                                                          \
42         }                                                                    \
43     }                                                                        \
44   while (0)
45
46 #define BASE "t-can-lgpl.tmp"
47
48 int
49 main ()
50 {
51 #ifdef GNULIB_CANONICALIZE
52   /* No need to test canonicalize-lgpl module if canonicalize is also
53      in use.  */
54   return 0;
55 #endif
56
57   /* Setup some hierarchy to be used by this test.  Start by removing
58      any leftovers from a previous partial run.  */
59   {
60     int fd;
61     ASSERT (system ("rm -rf " BASE " ise") == 0);
62     ASSERT (mkdir (BASE, 0700) == 0);
63     fd = creat (BASE "/tra", 0600);
64     ASSERT (0 <= fd);
65     ASSERT (close (fd) == 0);
66   }
67
68   /* Check for ., .., intermediate // handling, and for error cases.  */
69   {
70     char *result = canonicalize_file_name (BASE "//./..//" BASE "/tra");
71     ASSERT (result != NULL);
72     ASSERT (strstr (result, "/" BASE "/tra")
73             == result + strlen (result) - strlen ("/" BASE "/tra"));
74     free (result);
75     errno = 0;
76     result = canonicalize_file_name ("");
77     ASSERT (result == NULL);
78     ASSERT (errno == ENOENT);
79     errno = 0;
80     result = canonicalize_file_name (NULL);
81     ASSERT (result == NULL);
82     ASSERT (errno == EINVAL);
83   }
84
85   /* From here on out, tests involve symlinks.  */
86   if (symlink (BASE "/ket", "ise") != 0)
87     {
88       ASSERT (remove (BASE "/tra") == 0);
89       ASSERT (rmdir (BASE) == 0);
90       fputs ("skipping test: symlinks not supported on this filesystem\n",
91              stderr);
92       return 77;
93     }
94   ASSERT (symlink ("bef", BASE "/plo") == 0);
95   ASSERT (symlink ("tra", BASE "/huk") == 0);
96   ASSERT (symlink ("lum", BASE "/bef") == 0);
97   ASSERT (symlink ("wum", BASE "/ouk") == 0);
98   ASSERT (symlink ("../ise", BASE "/ket") == 0);
99   ASSERT (mkdir (BASE "/lum", 0700) == 0);
100
101   /* Check that the symbolic link to a file can be resolved.  */
102   {
103     char *result1 = canonicalize_file_name (BASE "/huk");
104     char *result2 = canonicalize_file_name (BASE "/tra");
105     ASSERT (result1 != NULL);
106     ASSERT (result2 != NULL);
107     ASSERT (strcmp (result1, result2) == 0);
108     ASSERT (strcmp (result1 + strlen (result1) - strlen ("/" BASE "/tra"),
109                     "/" BASE "/tra") == 0);
110     free (result1);
111     free (result2);
112   }
113
114   /* Check that the symbolic link to a directory can be resolved.  */
115   {
116     char *result1 = canonicalize_file_name (BASE "/plo");
117     char *result2 = canonicalize_file_name (BASE "/bef");
118     char *result3 = canonicalize_file_name (BASE "/lum");
119     ASSERT (result1 != NULL);
120     ASSERT (result2 != NULL);
121     ASSERT (result3 != NULL);
122     ASSERT (strcmp (result1, result2) == 0);
123     ASSERT (strcmp (result2, result3) == 0);
124     ASSERT (strcmp (result1 + strlen (result1) - strlen ("/" BASE "/lum"),
125                     "/" BASE "/lum") == 0);
126     free (result1);
127     free (result2);
128     free (result3);
129   }
130
131   /* Check that a symbolic link to a nonexistent file yields NULL.  */
132   {
133     char *result;
134     errno = 0;
135     result = canonicalize_file_name (BASE "/ouk");
136     ASSERT (result == NULL);
137     ASSERT (errno == ENOENT);
138   }
139
140   /* Check that a loop of symbolic links is detected.  */
141   {
142     char *result;
143     errno = 0;
144     result = canonicalize_file_name ("ise");
145     ASSERT (result == NULL);
146     ASSERT (errno == ELOOP);
147   }
148
149   /* Cleanup.  */
150   ASSERT (remove (BASE "/plo") == 0);
151   ASSERT (remove (BASE "/huk") == 0);
152   ASSERT (remove (BASE "/bef") == 0);
153   ASSERT (remove (BASE "/ouk") == 0);
154   ASSERT (remove (BASE "/ket") == 0);
155   ASSERT (remove (BASE "/lum") == 0);
156   ASSERT (remove (BASE "/tra") == 0);
157   ASSERT (remove (BASE) == 0);
158   ASSERT (remove ("ise") == 0);
159
160   return 0;
161 }