typo fix
[oweals/busybox.git] / testsuite / tar.tests
1 #!/bin/sh
2 # Copyright 2009 by Denys Vlasenko
3 # Licensed under GPLv2, see file LICENSE in this source tree.
4
5 . ./testing.sh
6
7 unset LANG
8 unset LANGUAGE
9 unset LC_COLLATE
10 unset LC_ALL
11 umask 022
12
13 rm -rf tar.tempdir 2>/dev/null
14 mkdir tar.tempdir && cd tar.tempdir || exit 1
15
16 # testing "test name" "script" "expected result" "file input" "stdin"
17
18 optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
19 testing "tar hardlinks and repeated files" '\
20 rm -rf input_* test.tar 2>/dev/null
21 >input_hard1
22 ln input_hard1 input_hard2
23 mkdir input_dir
24 >input_dir/file
25 chmod -R 644 *
26 chmod    755 input_dir
27 tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input
28 tar tvf test.tar | sed "s/.*[0-9] input/input/"
29 tar xf test.tar 2>&1
30 echo Ok: $?
31 ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
32 ' "\
33 input
34 input_dir/
35 input_dir/file
36 input_hard1
37 input_hard2 -> input_hard1
38 input_hard1 -> input_hard1
39 input_dir/
40 input_dir/file
41 input
42 Ok: 0
43 -rw-r--r-- input_dir/file
44 drwxr-xr-x input_dir
45 -rw-r--r-- input_hard1
46 -rw-r--r-- input_hard2
47 " \
48 "" ""
49 SKIP=
50
51 optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
52 testing "tar hardlinks mode" '\
53 rm -rf input_* test.tar 2>/dev/null
54 >input_hard1
55 chmod 741 input_hard1
56 ln input_hard1 input_hard2
57 mkdir input_dir
58 ln input_hard1 input_dir
59 ln input_hard2 input_dir
60 chmod 550 input_dir
61 # On some filesystems, input_dir/input_hard2 is returned by readdir
62 # BEFORE input_dir/input_hard1! Thats why we cant just "tar cf ... input_*":
63 tar cf test.tar input_dir/input_hard* input_hard*
64 tar tvf test.tar | sed "s/.*[0-9] input/input/"
65 chmod 770 input_dir
66 rm -rf input_*
67 tar xf test.tar 2>&1
68 echo Ok: $?
69 ls -l . input_dir/* | grep "input.*hard" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
70 ' "\
71 input_dir/input_hard1
72 input_dir/input_hard2 -> input_dir/input_hard1
73 input_hard1 -> input_dir/input_hard1
74 input_hard2 -> input_dir/input_hard1
75 Ok: 0
76 -rwxr----x input_dir/input_hard1
77 -rwxr----x input_dir/input_hard2
78 -rwxr----x input_hard1
79 -rwxr----x input_hard2
80 " \
81 "" ""
82 SKIP=
83
84 optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
85 testing "tar symlinks mode" '\
86 rm -rf input_* test.tar 2>/dev/null
87 >input_file
88 chmod 741 input_file
89 ln -s input_file input_soft
90 mkdir input_dir
91 ln input_file input_dir
92 ln input_soft input_dir
93 chmod 550 input_dir
94 tar cf test.tar input_dir/* input_[fs]*
95 tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort
96 chmod 770 input_dir
97 rm -rf input_*
98 tar xf test.tar 2>&1
99 echo Ok: $?
100 ls -l . input_dir/* | grep "input_[fs]" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
101 ' "\
102 input_dir/input_file
103 input_dir/input_soft -> input_file
104 input_file -> input_dir/input_file
105 input_soft -> input_dir/input_soft
106 Ok: 0
107 -rwxr----x input_dir/input_file
108 lrwxrwxrwx input_file
109 -rwxr----x input_file
110 lrwxrwxrwx input_file
111 " \
112 "" ""
113 SKIP=
114
115 optional FEATURE_TAR_CREATE FEATURE_TAR_LONG_OPTIONS
116 testing "tar --overwrite" "\
117 rm -rf input_* test.tar 2>/dev/null
118 ln input input_hard
119 tar cf test.tar input_hard
120 echo WRONG >input
121 # --overwrite opens 'input_hard' without unlinking,
122 # thus 'input_hard' still linked to 'input' and we write 'Ok' into it
123 tar xf test.tar --overwrite 2>&1 && cat input
124 " "\
125 Ok
126 " \
127 "Ok\n" ""
128 SKIP=
129
130 test x"$SKIP_KNOWN_BUGS" = x"" && {
131 # Needs to be run under non-root for meaningful test
132 optional FEATURE_TAR_CREATE
133 testing "tar writing into read-only dir" '\
134 rm -rf input_* test.tar 2>/dev/null
135 mkdir input_dir
136 >input_dir/input_file
137 chmod 550 input_dir
138 tar cf test.tar input_dir
139 tar tvf test.tar | sed "s/.*[0-9] input/input/"
140 chmod 770 input_dir
141 rm -rf input_*
142 tar xf test.tar 2>&1
143 echo Ok: $?
144 ls -l input_dir/* . | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
145 chmod 770 input_dir
146 ' "\
147 input_dir/
148 input_dir/input_file
149 Ok: 0
150 -rw-r--r-- input_dir/input_file
151 dr-xr-x--- input_dir
152 " \
153 "" ""
154 SKIP=
155 }
156
157 # Had a bug where on extract autodetect first "switched off" -z
158 # and then failed to recognize .tgz extension
159 testing "tar extract tgz" "\
160 dd count=1 bs=1M if=/dev/zero of=F0 2>/dev/null
161 tar -czf F0.tgz F0
162 rm F0
163 tar -xzvf F0.tgz && echo Ok
164 rm F0 || echo BAD
165 " "\
166 F0
167 Ok
168 " \
169 "" ""
170
171
172 cd .. && rm -rf tar.tempdir || exit 1
173
174 exit $FAILCOUNT