improve of cmpl.
[bush.git] / tests / test.tests
blob92feb7636d3df40ee75171432d5e65846e3cfa76
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 if (( $UID == 0 )); then
15         echo "test-tests: the test suite should not be run as root" >&2
18 b()
20         [ "$@" ]
21         echo $?
24 t()
26         test "$@"
27         echo $?
30 echo 't -a noexist'
31 t -a noexist
32 echo 't -a run-all'
33 t -a run-all
35 echo 't -b run-all'
36 t -b run-all
37 echo 't -b /dev/jb1a'
38 t -b /dev/jb1a
40 echo 't -c run-all'
41 t -c run-all
42 echo 't -c /dev/tty'
43 t -c /dev/tty
45 echo 't -d run-all'
46 t -d run-all
47 echo 't -d /etc'
48 t -d /etc
49 echo 't -d ""'
50 t -d ""
51 echo 'b -d ""'
52 b -d ""
54 echo 't -e noexist'
55 t -e noexist
56 echo 't -e run-all'
57 t -e run-all
59 echo 't -f noexist'
60 t -f noexist
61 echo 't -f /dev/tty'
62 t -f /dev/tty
63 echo 't -f run-all'
64 t -f run-all
66 echo 't -g run-all'
67 t -g run-all
69 touch /tmp/test.setgid
70 chgrp ${GROUPS[0]} /tmp/test.setgid
71 chmod ug+x /tmp/test.setgid
72 chmod g+s /tmp/test.setgid
73 echo 't -g /tmp/test.setgid'
74 t -g /tmp/test.setgid
75 rm -f /tmp/test.setgid
77 echo 't -k run-all'
78 t -k run-all
80 echo 't -n ""'
81 t -n ""
82 echo 't -n "hello"'
83 t -n "hello"
85 echo 't -p run-all'
86 t -p run-all
88 echo 't -r noexist'
89 t -r noexist
91 if (( $UID != 0 )); then
92         touch /tmp/test.noread
93         chmod a-r /tmp/test.noread
94         echo 't -r /tmp/test.noread'
95         t -r /tmp/test.noread
96         rm -f /tmp/test.noread
97 else
98         echo 't -r /tmp/test.noread'
99         echo 1
102 echo 't -r run-all'
103 t -r run-all
105 echo 't -s noexist'
106 t -s noexist
107 echo 't -s /dev/null'
108 t -s /dev/null
109 echo 't -s run-all'
110 t -s run-all
112 echo 't -t 20'
113 t -t 20
114 echo 't -t 0'
115 t -t 0 < /dev/tty
117 echo 't -u noexist'
118 t -u noexist
120 echo 't -u run-all'
121 t -u run-all
123 touch /tmp/test.setuid
124 chmod u+x /tmp/test.setuid      # some systems require this to turn on setuid bit
125 chmod u+s /tmp/test.setuid
126 echo 't -u /tmp/test.setuid'
127 t -u /tmp/test.setuid
128 rm -f /tmp/test.setuid
130 echo 't -w noexist'
131 t -w noexist
133 if (( $UID != 0 )); then
134         touch /tmp/test.nowrite
135         chmod a-w /tmp/test.nowrite
136         echo 't -w /tmp/test.nowrite'
137         t -w /tmp/test.nowrite
138         rm -f /tmp/test.nowrite
139 else
140         echo 't -w /tmp/test.nowrite'
141         echo 1
144 echo 't -w /dev/null'
145 t -w /dev/null
147 echo 't -x noexist'
148 t -x noexist
150 touch /tmp/test.exec
151 chmod u+x /tmp/test.exec
152 echo 't -x /tmp/test.exec'
153 t -x /tmp/test.exec
154 rm -f /tmp/test.exec
156 touch /tmp/test.noexec
157 chmod u-x /tmp/test.noexec
158 echo 't -x /tmp/test.noexec'
159 t -x /tmp/test.noexec
160 rm -f /tmp/test.noexec
162 echo 't -z ""'
163 t -z ""
164 echo 't -z "foo"'
165 t -z "foo"
167 echo 't "foo"'
168 t "foo"
169 echo 't ""'
170 t ""
172 touch /tmp/test.owner
173 echo 't -O /tmp/test.owner'
174 t -O /tmp/test.owner
175 rm -f /tmp/test.owner
177 touch /tmp/test.socket
178 echo 't -S /tmp/test.socket'
179 t -S /tmp/test.socket   # false
180 rm -f /tmp/test.socket
182 touch /tmp/test.newer ; sleep 1; echo "hello" > /tmp/test.newer
183 echo 't -N /tmp/test.newer'
184 t -N /tmp/test.newer
185 rm -f /tmp/test.newer
187 echo 't "hello" = "hello"'
188 t "hello" = "hello"
189 echo 't "hello" = "goodbye"'
190 t "hello" = "goodbye"
192 echo 't "hello" == "hello"'
193 t "hello" == "hello"
194 echo 't "hello" == "goodbye"'
195 t "hello" == "goodbye"
197 echo 't "hello" != "hello"'
198 t "hello" != "hello"
199 echo 't "hello" != "goodbye"'
200 t "hello" != "goodbye"
202 echo 't "hello" < "goodbye"'
203 t "hello" \< "goodbye"
204 echo 't "hello" > "goodbye"'
205 t "hello" \> "goodbye"
207 echo 't ! "hello" > "goodbye"'
208 t "! hello" \> "goodbye"
210 echo 't 200 -eq 200'
211 t 200 -eq 200
212 echo 't 34 -eq 222'
213 t 34 -eq 222
214 echo 't -32 -eq 32'
215 t -32 -eq 32
217 echo 't 200 -ne 200'
218 t 200 -ne 200
219 echo 't 34 -ne 222'
220 t 34 -ne 222
222 echo 't 200 -gt 200'
223 t 200 -gt 200
224 echo 't 340 -gt 222'
225 t 340 -gt 222
227 echo 't 200 -ge 200'
228 t 200 -ge 200
229 echo 't 34 -ge 222'
230 t 34 -ge 222
232 echo 't 200 -lt 200'
233 t 200 -lt 200
234 echo 't 34 -lt 222'
235 t 34 -lt 222
237 echo 't 200 -le 200'
238 t 200 -le 200
239 echo 't 340 -le 222'
240 t 340 -le 222
242 echo 't 700 -le 1000 -a -n "1" -a "20" = "20"'
243 t 700 -le 1000 -a -n "1" -a "20" = "20"
244 echo 't ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
245 t ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)
247 touch /tmp/abc
248 sleep 2
249 touch /tmp/def
251 echo 't /tmp/abc -nt /tmp/def'
252 t /tmp/abc -nt /tmp/def
253 echo 't /tmp/abc -ot /tmp/def'
254 t /tmp/abc -ot /tmp/def
255 echo 't /tmp/def -nt /tmp/abc'
256 t /tmp/def -nt /tmp/abc
257 echo 't /tmp/def -ot /tmp/abc'
258 t /tmp/def -ot /tmp/abc
260 echo 't /tmp/abc -ef /tmp/def'
261 t /tmp/abc -ef /tmp/def
262 ln /tmp/abc /tmp/ghi
263 echo 't /tmp/abc -ef /tmp/ghi'
264 t /tmp/abc -ef /tmp/ghi
266 rm /tmp/abc /tmp/def /tmp/ghi
268 echo 't -r /dev/fd/0'
269 t -r /dev/fd/0
270 echo 't -w /dev/fd/1'
271 t -w /dev/fd/1
272 echo 't -w /dev/fd/2'
273 t -w /dev/fd/2
275 echo 't -r /dev/stdin'
276 t -r /dev/stdin
277 echo 't -w /dev/stdout'
278 t -w /dev/stdout
279 echo 't -w /dev/stderr'
280 t -w /dev/stderr
282 echo 't'
284 echo 'b'
287 echo 't 12 -eq 34'
288 t 12 -eq 34
289 echo 't ! 12 -eq 34'
290 t ! 12 -eq 34
292 echo 't -n abcd -o aaa'
293 t -n abcd -o aaa
294 echo 't -n abcd -o -z aaa'
295 t -n abcd -o -z aaa
297 echo 't -n abcd -a aaa'
298 t -n abcd -a aaa
299 echo 't -n abcd -a -z aaa'
300 t -n abcd -a -z aaa
302 # test set or unset shell options
303 set +o allexport
304 echo 't -o allexport'
305 t -o allexport
306 echo 't ! -o allexport'
307 t ! -o allexport
309 #test set or unset shell variables
310 unset unset
311 echo 't -v unset'
312 t -v unset
313 set=
314 echo 't -v set'
315 t -v set
316 set=set
317 echo 't -v set'
318 t -v set
320 echo 't xx -a yy'
321 t xx -a yy
322 echo 't xx -o ""'
323 t xx -o ""
324 echo 't xx -a ""'
325 t xx -a ""
327 echo 't -X -a -X'
328 t -X -a -X
329 echo 't -X -o -X'
330 t -X -o -X
331 echo 't -X -o ""'
332 t -X -o ""
333 echo 't -X -a ""'
334 t -X -a ""
335 echo 't "" -a -X'
336 t "" -a -X
337 echo 't "" -o -X'
338 t "" -o -X
339 echo 't "" -a ""'
340 t "" -a ""
341 echo 't "" -o ""'
342 t "" -o ""
343 echo 't true -o -X'
344 t true -o -X
345 echo 't true -a -X'
346 t true -a -X
348 echo 't ( -E )'
349 t \( -E \)
350 echo 't ( "" )'
351 t \( "" \)
353 z=42
355 echo 't ! -z "$z"'
356 t ! -z "$z"
358 echo 't ! -n "$z"'
359 t ! -n "$z"
361 zero=
362 echo 't "$zero"'
363 t "$zero"
364 echo 't ! "$zero"'
365 t ! "$zero"
366 echo 'b "$zero"'
367 b "$zero"
368 echo 'b ! "$zero"'
369 b ! "$zero"
371 touch /tmp/test.group
372 chgrp ${GROUPS[0]} /tmp/test.group
373 echo 't -G /tmp/test.group'
374 t -G /tmp/test.group
375 rm /tmp/test.group
377 case "${THIS_SH}" in
378 /*)     SHNAME=${THIS_SH} ;;
379 *)      SHNAME=${PWD}/${THIS_SH} ;;
380 esac
382 if ln -s ${SHNAME} /tmp/test.symlink 2>/dev/null; then
383         chgrp ${GROUPS[0]} /tmp/test.symlink 2>/dev/null
384         echo 't -h /tmp/test.symlink'
385         t -h /tmp/test.symlink
386         # some systems don't let you remove this
387         rm -f /tmp/test.symlink 2>/dev/null
388 else
389         echo 't -h /tmp/test.symlink'
390         echo 0
393 # arithmetic constant errors
394 echo "t 4+3 -eq 7"
395 t 4+3 -eq 7
396 echo "b 4-5 -eq 7"
397 b 4+3 -eq 7
399 echo "t 9 -eq 4+5"
400 t 9 -eq 4+5
401 echo "b 9 -eq 4+5"
402 b 9 -eq 4+5
405 echo "t A -eq 7"
406 t A -eq 7
407 echo "b A -eq 7"
408 b A -eq 7
411 echo "t 9 -eq B"
412 t 9 -eq B
413 echo "b 9 -eq B"
414 b 9 -eq B
416 # badly formed expressions
417 echo 't ( 1 = 2'
418 t \( 1 = 2
419 echo 'b ( 1 = 2'
420 b \( 1 = 2
422 # more errors
423 t a b
424 t a b c
425 t -A v
426 # too many arguments -- argument expected is also reasonable
427 t 4 -eq 4 -a 2 -ne 5 -a 4 -ne
428 # too many arguments
429 t 4 -eq 4 -a 3 4
432 echo $?
434 t \( \)
436 # non-numeric arguments to `test -t' should return failure -- fix in 2.05
437 echo 't -t a'
438 t -t a
439 echo 't -t addsds'
440 t -t addsds
441 echo 't -t 42'
442 t -t 42
443 echo 't -t /dev/tty'
444 t -t /dev/tty
445 echo 't -t /dev/tty4'
446 t -t /dev/tty4
447 echo 't -t /dev/tty4444444...'
448 t -t /dev/tty4444444...
450 # fixed in bush-4.0-beta
451 t -t ' '
453 ${THIS_SH} ./test1.sub