Tests for the 'copy-file' module.
[gnulib.git] / tests / test-copy-file.sh
1 #!/bin/sh
2
3 # Show all commands when run with environment variable VERBOSE=yes.
4 test -z "$VERBOSE" || set -x
5
6 # func_tmpdir
7 # creates a temporary directory.
8 # Sets variable
9 # - tmp             pathname of freshly created temporary directory
10 func_tmpdir ()
11 {
12   # Use the environment variable TMPDIR, falling back to /tmp. This allows
13   # users to specify a different temporary directory, for example, if their
14   # /tmp is filled up or too small.
15   : ${TMPDIR=/tmp}
16   {
17     # Use the mktemp program if available. If not available, hide the error
18     # message.
19     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
20     test -n "$tmp" && test -d "$tmp"
21   } ||
22   {
23     # Use a simple mkdir command. It is guaranteed to fail if the directory
24     # already exists.  $RANDOM is bash specific and expands to empty in shells
25     # other than bash, ksh and zsh.  Its use does not increase security;
26     # rather, it minimizes the probability of failure in a very cluttered /tmp
27     # directory.
28     tmp=$TMPDIR/gl$$-$RANDOM
29     (umask 077 && mkdir "$tmp")
30   } ||
31   {
32     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
33     exit 1
34   }
35 }
36
37 func_tmpdir
38 builddir=`pwd`
39 cd "$builddir" ||
40   {
41     echo "$0: cannot determine build directory (unreadable parent dir?)" >&2
42     exit 1
43   }
44 # Switch to a temporary directory, to increase the likelihood that ACLs are
45 # supported on the current file system. (/tmp is usually locally mounted,
46 # whereas the build dir is sometimes NFS-mounted.)
47 ( cd "$tmp"
48
49   # Prepare tmpfile0.
50   rm -f tmpfile[0-9] tmpaclout[12]
51   echo "Simple contents" > tmpfile0
52   chmod 600 tmpfile0
53
54   # Classification of the platform according to the programs available for
55   # manipulating ACLs.
56   # Possible values are:
57   #   linux, cygwin, freebsd, solaris, hpux, osf1, aix, macosx, irix, none.
58   # TODO: Support also native Win32 platforms (mingw).
59   acl_flavor=none
60   if (getfacl tmpfile0 >/dev/null) 2>/dev/null; then
61     # Platforms with the getfacl and setfacl programs.
62     # Linux, FreeBSD, Solaris, Cygwin.
63     if (setfacl --help >/dev/null) 2>/dev/null; then
64       # Linux, Cygwin.
65       if (LC_ALL=C setfacl --help | grep ' --set-file' >/dev/null) 2>/dev/null; then
66         # Linux.
67         acl_flavor=linux
68       else
69         acl_flavor=cygwin
70       fi
71     else
72       # FreeBSD, Solaris.
73       if (LC_ALL=C setfacl 2>&1 | grep '\-x entries' >/dev/null) 2>/dev/null; then
74         # FreeBSD.
75         acl_flavor=freebsd
76       else
77         # Solaris.
78         acl_flavor=solaris
79       fi
80     fi
81   else
82     if (lsacl tmpfile0 >/dev/null) 2>/dev/null; then
83       # Platforms with the lsacl and chacl programs.
84       # HP-UX, sometimes also IRIX.
85       acl_flavor=hpux
86     else
87       if (getacl tmpfile0 >/dev/null) 2>/dev/null; then
88         # Tru64.
89         acl_flavor=osf1
90       else
91         if (aclget tmpfile0 >/dev/null) 2>/dev/null; then
92           # AIX.
93           acl_flavor=aix
94         else
95           if (fsaclctl -v >/dev/null) 2>/dev/null; then
96             # MacOS X.
97             acl_flavor=macosx
98           else
99             if test -f /sbin/chacl; then
100               # IRIX.
101               acl_flavor=irix
102             fi
103           fi
104         fi
105       fi
106     fi
107   fi
108
109   # Define a function to test for the same ACLs, from the point of view of
110   # the programs.
111   # func_test_same_acls file1 file2
112   case $acl_flavor in
113     linux | cygwin | freebsd | solaris)
114       func_test_same_acls ()
115       {
116         getfacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
117         getfacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
118         cmp tmpaclout1 tmpaclout2 > /dev/null
119       }
120       ;;
121     hpux)
122       func_test_same_acls ()
123       {
124         lsacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
125         lsacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
126         cmp tmpaclout1 tmpaclout2 > /dev/null
127       }
128       ;;
129     osf1)
130       func_test_same_acls ()
131       {
132         getacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
133         getacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
134         cmp tmpaclout1 tmpaclout2 > /dev/null
135       }
136       ;;
137     aix)
138       func_test_same_acls ()
139       {
140         aclget "$1" > tmpaclout1
141         aclget "$2" > tmpaclout2
142         cmp tmpaclout1 tmpaclout2 > /dev/null
143       }
144       ;;
145     macosx)
146       func_test_same_acls ()
147       {
148         /bin/ls -le "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
149         /bin/ls -le "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
150         cmp tmpaclout1 tmpaclout2 > /dev/null
151       }
152       ;;
153     irix)
154       func_test_same_acls ()
155       {
156         /bin/ls -lD "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
157         /bin/ls -lD "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
158         cmp tmpaclout1 tmpaclout2 > /dev/null
159       }
160       ;;
161     none)
162       func_test_same_acls ()
163       {
164         :
165       }
166       ;;
167   esac
168
169   # func_test_copy file1 file2
170   # copies file1 to file2 and verifies the permissions and ACLs are the same
171   # on both.
172   func_test_copy ()
173   {
174     "$builddir"/test-copy-file${EXEEXT}          "$1" "$2" || exit 1
175     "$builddir"/test-copy-file-sameacls${EXEEXT} "$1" "$2" || exit 1
176     func_test_same_acls                          "$1" "$2" || exit 1
177   }
178
179   func_test_copy tmpfile0 tmpfile1
180
181   if test $acl_flavor != none; then
182     # Use a user and group id different from the current one, to avoid
183     # redundant/ambiguous ACLs.
184     myuid=`id -u`
185     mygid=`id -g`
186     auid=1
187     if test "$auid" = "$myuid"; then auid=2; fi
188     agid=1
189     if test "$agid" = "$mygid"; then agid=2; fi
190
191     case $acl_flavor in
192       linux | cygwin | freebsd | solaris)
193
194         # Set an ACL for a user.
195         setfacl -m user:$auid:1 tmpfile0
196
197         func_test_copy tmpfile0 tmpfile2
198
199         # Set an ACL for a group.
200         setfacl -m group:$agid:4 tmpfile0
201
202         func_test_copy tmpfile0 tmpfile3
203
204         # Set an ACL for other.
205         case $acl_flavor in
206           freebsd) setfacl -m other::4 tmpfile0 ;;
207           solaris) chmod o+r tmpfile0 ;;
208           *)       setfacl -m other:4 tmpfile0 ;;
209         esac
210
211         func_test_copy tmpfile0 tmpfile4
212
213         # Remove the ACL for the user.
214         case $acl_flavor in
215           linux)   setfacl -x user:$auid tmpfile0 ;;
216           freebsd) setfacl -x user:$auid:1 tmpfile0 ;;
217           *)       setfacl -d user:$auid:1 tmpfile0 ;;
218         esac
219
220         func_test_copy tmpfile0 tmpfile5
221
222         # Remove the ACL for other.
223         case $acl_flavor in
224           linux)   ;; # impossible
225           freebsd) setfacl -x other::4 tmpfile0 ;;
226           *)       setfacl -d other:4 tmpfile0 ;;
227         esac
228
229         func_test_copy tmpfile0 tmpfile6
230
231         # Remove the ACL for the group.
232         case $acl_flavor in
233           linux)   setfacl -x group:$agid tmpfile0 ;;
234           freebsd) setfacl -x group:$agid:4 tmpfile0 ;;
235           *)       setfacl -d group:$agid:4 tmpfile0 ;;
236         esac
237
238         func_test_copy tmpfile0 tmpfile7
239
240         # Delete all optional ACLs.
241         case $acl_flavor in
242           linux | freebsd)
243             setfacl -m user:$auid:1 tmpfile0
244             setfacl -b tmpfile0
245             ;;
246           *)
247             setfacl -s user::6,group::0,other:0 tmpfile0 ;;
248         esac
249
250         func_test_copy tmpfile0 tmpfile8
251
252         # Copy ACLs from a file that has no ACLs.
253         echo > tmpfile9
254         chmod a+x tmpfile9
255         case $acl_flavor in
256           linux)   getfacl tmpfile9 | setfacl --set-file=- tmpfile0 ;;
257           freebsd) ;;
258           *)       getfacl tmpfile9 | setfacl -f - tmpfile0 ;;
259         esac
260         rm -f tmpfile9
261
262         func_test_copy tmpfile0 tmpfile9
263
264         ;;
265
266       hpux)
267
268         # Set an ACL for a user.
269         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
270         chacl -r "${orig}($auid.%,--x)" tmpfile0
271
272         func_test_copy tmpfile0 tmpfile2
273
274         # Set an ACL for a group.
275         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
276         chacl -r "${orig}(%.$agid,r--)" tmpfile0
277
278         func_test_copy tmpfile0 tmpfile3
279
280         # Set an ACL for other.
281         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
282         chacl -r "${orig}(%.%,r--)" tmpfile0
283
284         func_test_copy tmpfile0 tmpfile4
285
286         # Remove the ACL for the user.
287         chacl -d "($auid.%,--x)" tmpfile0
288
289         func_test_copy tmpfile0 tmpfile5
290
291         # Remove the ACL for the group.
292         chacl -d "(%.$agid,r--)" tmpfile0
293
294         func_test_copy tmpfile0 tmpfile6
295
296         # Delete all optional ACLs.
297         chacl -z tmpfile0
298
299         func_test_copy tmpfile0 tmpfile8
300
301         # Copy ACLs from a file that has no ACLs.
302         echo > tmpfile9
303         chmod a+x tmpfile9
304         orig=`lsacl tmpfile9 | sed -e 's/ tmpfile9$//'`
305         rm -f tmpfile9
306         chacl -r "${orig}" tmpfile0
307
308         func_test_copy tmpfile0 tmpfile9
309
310         ;;
311
312       osf1)
313
314         # Set an ACL for a user.
315         setacl -u user:$auid:1 tmpfile0
316
317         func_test_copy tmpfile0 tmpfile2
318
319         # Set an ACL for a group.
320         setacl -u group:$agid:4 tmpfile0
321
322         func_test_copy tmpfile0 tmpfile3
323
324         # Set an ACL for other.
325         setacl -u other:4 tmpfile0
326
327         func_test_copy tmpfile0 tmpfile4
328
329         # Remove the ACL for the user.
330         setacl -x user:$auid:1 tmpfile0
331
332         func_test_copy tmpfile0 tmpfile5
333
334         # Remove the ACL for other.
335         setacl -x other:4 tmpfile0
336
337         func_test_copy tmpfile0 tmpfile6
338
339         # Remove the ACL for the group.
340         setacl -x group:$agid:4 tmpfile0
341
342         func_test_copy tmpfile0 tmpfile7
343
344         # Delete all optional ACLs.
345         setacl -u user:$auid:1 tmpfile0
346         setacl -b tmpfile0
347
348         func_test_copy tmpfile0 tmpfile8
349
350         # Copy ACLs from a file that has no ACLs.
351         echo > tmpfile9
352         chmod a+x tmpfile9
353         getacl tmpfile9 | setacl -b -U - tmpfile0
354         rm -f tmpfile9
355
356         func_test_copy tmpfile0 tmpfile9
357
358         ;;
359
360       aix)
361
362         # Set an ACL for a user.
363         { aclget tmpfile0 | sed -e 's/disabled$/enabled/'; echo "        permit --x u:$auid"; } | aclput tmpfile0
364
365         func_test_copy tmpfile0 tmpfile2
366
367         # Set an ACL for a group.
368         { aclget tmpfile0 | sed -e 's/disabled$/enabled/'; echo "        permit r-- g:$agid"; } | aclput tmpfile0
369
370         func_test_copy tmpfile0 tmpfile3
371
372         # Set an ACL for other.
373         chmod o+r tmpfile0
374
375         func_test_copy tmpfile0 tmpfile4
376
377         # Remove the ACL for the user.
378         aclget tmpfile0 | grep -v ' u:[^ ]*$' | aclput tmpfile0
379
380         func_test_copy tmpfile0 tmpfile5
381
382         # Remove the ACL for the group.
383         aclget tmpfile0 | grep -v ' g:[^ ]*$' | aclput tmpfile0
384
385         func_test_copy tmpfile0 tmpfile7
386
387         # Delete all optional ACLs.
388         aclget tmpfile0 | sed -e 's/enabled$/disabled/' | sed -e '/disabled$/q' | aclput tmpfile0
389
390         func_test_copy tmpfile0 tmpfile8
391
392         # Copy ACLs from a file that has no ACLs.
393         echo > tmpfile9
394         chmod a+x tmpfile9
395         aclget tmpfile9 | aclput tmpfile0
396         rm -f tmpfile9
397
398         func_test_copy tmpfile0 tmpfile9
399
400         ;;
401
402       macosx)
403
404         # Set an ACL for a user.
405         /bin/chmod +a "user:daemon allow execute" tmpfile0
406
407         func_test_copy tmpfile0 tmpfile2
408
409         # Set an ACL for a group.
410         /bin/chmod +a "group daemon allow read" tmpfile0
411
412         func_test_copy tmpfile0 tmpfile3
413
414         # Set an ACL for other.
415         chmod o+r tmpfile0
416
417         func_test_copy tmpfile0 tmpfile4
418
419         # Remove the ACL for the user.
420         /bin/chmod -a "user:daemon allow execute" tmpfile0
421
422         func_test_copy tmpfile0 tmpfile5
423
424         # Remove the ACL for the group.
425         /bin/chmod -a "group daemon allow read" tmpfile0
426
427         func_test_copy tmpfile0 tmpfile7
428
429         # Delete all optional ACLs.
430         /bin/chmod -N tmpfile0
431
432         func_test_copy tmpfile0 tmpfile8
433
434         # Copy ACLs from a file that has no ACLs.
435         echo > tmpfile9
436         chmod a+x tmpfile9
437         { /bin/ls -le tmpfile9 | sed -n -e 's/^ [0-9][0-9]*: //p'; echo; } | /bin/chmod -E tmpfile0
438         rm -f tmpfile9
439
440         func_test_copy tmpfile0 tmpfile9
441
442         ;;
443
444       irix)
445
446         # Set an ACL for a user.
447         /sbin/chacl user:$auid:--x tmpfile0
448
449         func_test_copy tmpfile0 tmpfile2
450
451         # Set an ACL for a group.
452         /sbin/chacl user:$auid:--x,group:$agid:r-- tmpfile0
453
454         func_test_copy tmpfile0 tmpfile3
455
456         # Set an ACL for other.
457         /sbin/chacl user:$auid:--x,group:$agid:r--,other::r-- tmpfile0
458
459         func_test_copy tmpfile0 tmpfile4
460
461         # Remove the ACL for the user.
462         /sbin/chacl group:$agid:r--,other::r-- tmpfile0
463
464         func_test_copy tmpfile0 tmpfile5
465
466         # Remove the ACL for other.
467         /sbin/chacl group:$agid:r-- tmpfile0
468
469         func_test_copy tmpfile0 tmpfile6
470
471         # Remove the ACL for the group.
472         /sbin/chacl , tmpfile0
473
474         func_test_copy tmpfile0 tmpfile7
475
476         ;;
477
478     esac
479   fi
480
481   rm -f tmpfile[0-9] tmpaclout[12]
482 ) || exit 1
483
484 rm -rf "$tmp"
485 exit 0