Fixup 'make clean' to properly clean the _install directory
[oweals/busybox.git] / tests / testcases
index 1838fa0fce90cd9ce0e0ca59c073f35b2e8e7e47..37e7412605c9760bb2a33dfc26925ac630bcdd9f 100644 (file)
 #
 #  - please try to keep applets alphabetized, it will make life easier
 #  - use the file tester.sh or testcases when you need to do a non-destructive
-#    test on a file (i.e. cat, md5sum)
+#    test on a file (i.e., cat, md5sum)
 #  - try to make the applet you're testing the first thing on the line (this
 #    not always possible)
 #  - (???) if you have to create a temporary file, call it TMPFILE
+#  - pipe symbols that represent real pipes need a space in front of them
+#     (so the test script can find them and add the "../busybox" after it).
+#  - pipe symbols that are not used for pipes need to be shell-escaped,
+#     with a double \.  See the expr test cases.
 
 
 # ar
@@ -30,6 +34,7 @@ basename `pwd`
 
 # cat
 cat tester.sh
+echo hello there | cat tester.sh -
 
 # chmod
 # chown
@@ -39,11 +44,16 @@ cat tester.sh
 # clear - can't be tested here
 # cmp
 # cp
-# mv
 
 # cut
 echo "1234" | cut -c1
+echo "1234" | cut -c 1
+echo "1234567890" | cut -c2-7
+echo "1234567890" | cut -c 2-7
 echo "f1       f2" | cut -f2
+echo "f1       f2" | cut -f 2
+echo "f1       f2      f3      f4      f5" | cut -f2-4
+echo "f1       f2      f3      f4      f5" | cut -f 2-4
 
 # date
 date
@@ -52,10 +62,15 @@ date -u
 date +%d/%m/%y
 
 # dc - needs an input file
+
 # dd
+# BUG: record count line goes to stdout instead of stderr
+dd if=/dev/urandom of=O bs=1k count=1 ; ls -l O ; rm O
+
 # deallocvt
 
 # df
+# XXX: minor formatting differences
 df
 df .
 df -k
@@ -77,6 +92,7 @@ dmesg -s 512
 # dpkg_deb
 
 # du
+# BUG: rounding behavior differs from GNU du
 du
 du -s
 du -l
@@ -93,33 +109,33 @@ echo -n "no newline"
 
 
 # expr
-expr 1 \| 1
-expr 1 \| 0
-expr 0 \| 1
-expr 0 \| 0
+expr 1 \\| 1
+expr 1 \\| 0
+expr 0 \\| 1
+expr 0 \\| 0
 
-expr 1 \& 1
-expr 1 \& 0
-expr 0 \& 1
-expr 0 \& 0
+expr 1 \\& 1
+expr 1 \\& 0
+expr 0 \\& 1
+expr 0 \\& 0
 
-expr 0 \< 1
-expr 1 \< 0
+expr 0 \\< 1
+expr 1 \\< 0
 
-expr 1 \> 0
-expr 0 \> 1
+expr 1 \\> 0
+expr 0 \\> 1
 
-expr 0 \<= 1
-expr 1 \<= 0
-expr 1 \<= 1
+expr 0 \\<= 1
+expr 1 \\<= 0
+expr 1 \\<= 1
 
-expr 1 \>= 0
-expr 0 \>= 1
-expr 1 \>= 1
+expr 1 \\>= 0
+expr 0 \\>= 1
+expr 1 \\>= 1
 
 expr 1 + 2
 expr 2 - 1
-expr 2 \* 3
+expr 2 \\* 3
 expr 12 / 2
 expr 12 % 5
 
@@ -132,15 +148,30 @@ expr 12 % 5
 find .
 
 # free
+# XXX: minor formatting differences
 free
 
 # freeramdisk
 # fsck.minix - won't test
 # getopt
+
 # grep
+grep -l strdup ../*utils/*.c
+grep -c strdup ../*utils/*.c
+grep -lc strdup ../*utils/*.c
+grep -cv strdup ../*utils/*.c
+grep -i null ../findutils/grep.c
+grep -e strdup -e regcomp -e atexit ../findutils/grep.c
+
 # gunzip
+
 # gzip
-# halt
+# XXX: compressed output differs from gzip-1.2.4, but decompresses fine
+echo testing 1 2 3 >tmpfile1; gzip tmpfile1; echo tmpfile*; md5sum tmpfile1.gz; rm tmpfile1.gz
+echo testing 1 2 3 | gzip >tmpfile1.gz; md5sum tmpfile1.gz; rm tmpfile1.gz
+
+
+# halt - won't test, dangerous
 
 # head
 head tester.sh
@@ -150,6 +181,7 @@ head -n 2 tester.sh
 hostid
 
 # hostname
+# XXX: minor formatting differences
 hostname
 hostname -s
 hostname -i
@@ -158,6 +190,7 @@ hostname -d
 #hostname -F
 
 # id
+# BUG: Busybox id doesn't print supplemental groups
 id
 id -u
 id -g
@@ -166,7 +199,9 @@ id -un
 
 
 # ifconfig
-#ifconfig
+# requires CONFIG_FEATURE_IFCONFIG_STATUS
+ifconfig
+#ifconfig -a
 #ifconfig eth0
 #ifconfig lo
 
@@ -178,18 +213,20 @@ id -un
 # not going to do any more
 
 # length
-# ln
+# ln - see ln_tests.mk
 # loadacm
 # loadfont
 # loadkmap
 # logger
 # logname
+
 # ls
-ls
-ls -l
-ls -s
-ls -h
-ls -1
+# XXX: minor formatting differences
+ls ../e*
+ls -l ../e*
+ls -s ../e*
+ls -h ../e*
+ls -1 ../e*
 
 # lsmod
 lsmod
@@ -200,7 +237,16 @@ lsmod
 md5sum tester.sh
 
 # mkdir
+mkdir D ; ls -ld D ; rmdir D
+
 # mkfifo
+#
+# we will test making one. actually testing pushing data through it requires
+# more interaction than we can manage here.
+# (these lines turn up an existing ls bug)
+mkfifo F ; ls -l F ; rm F
+mkfifo -m 0600 F ; ls -l F ; rm F
+
 # mkfs.minix - won't test
 # mknod
 # mkswap - won't test
@@ -208,14 +254,17 @@ md5sum tester.sh
 # more - can't test: interactive
 
 # mount
+# BUG: proc line starts with /proc instead of proc
 mount
-# not going to test any more
+# not going to test mount with any args, can't be done safely or sanely
 
 # mt
+# mv - see mv_tests.mk
 # nc
 # nfsmount
 # nslookup
-# ping - can't test: interactive (needs ^C)
+# ping
+ping -c 3 yahoo.com
 # pivot_root
 # poweroff - won't test
 # printf
@@ -227,42 +276,94 @@ pwd
 # rdate - won't test
 
 # readlink
-ln -sf tester.sh LINKFILE
-readlink LINKFILE
-rm -f LINKFILE
+ln -sf tester.sh L ; readlink L ; rm -f L
 
 # reboot - won't test
 # renice - won't test
 # reset - can't test: no output
+
 # rm
+touch F ; rm F
+
 # rmdir
 # rmmod - won't test: dangerous
+
 # route
-# rpmunpack
-# sed - we can do some one-liners here; probably needs it's own input file
+# XXX: doesn't DNS resolve
+route
+
+# rpm2cpio
+
+# sed - we can do some one-liners here, some testing is a little
+# difficult to do in just this space (like a,i,c cmds).
+
+# test ^$ matching
+echo foo | sed -ne '/^$/p'
+echo -e "foo\\n\\nbar" | sed -ne '/^$/p'
+
+sed -e '/test$/d' testcases
+sed -e '/^echo/d' testcases
+sed -e '/test/s/dangerous/PELIGROSO/' testcases
+sed -ne '1,/getopt/p' ../shellutils/pwd.c
+sed -e '/getopt/r ../shellutils/pwd.c' ../editors/sed.c
+
+
 # setkeycodes
-# sh - this should probably have it's own testcase or input file
+
+# sh - note that we cannot test the shell interactively here
+sh -c "echo a b c"
+sh -c ">"
+sh -c "a"
+sh sh.testcases
+
+
 # sleep - can't test: produces no output
+
 # sort
+sort tester.sh
+sort -n tester.sh
+sort -r tester.sh
+
 # stty
 # swapon - won't test: dangerous
 # swapoff - won't test: dangerous
 # sync - can't test: no output
-# syslogd
+# syslogd - won't test: too involved
 
 # tail
 tail tester.sh
 tail -n 2  tester.sh
 
 # tar
+
 # tee
-# telnet
+echo "please tee me!" | tee A B C ; cat A B C
+echo "please tee me!" | tee A B C ; echo "tee me too!" | tee -a A B C ; cat A B C ; rm A B C
+
+# telnet - can't test: interactive
+
 # test
 # tftp
+
 # touch
+touch tmpfile1; ls tmpfile1; rm -f tmpfile1
+touch -c tmpfile1; ls tmpfile1; rm -f tmpfile1
+
 # tr
+# BUG: Busybox tr range handling minix style [a-z] instead of GNU # style a-z
+echo "cbaab" | tr abc zyx
+echo "TESTING A B C" | tr [A-Z] [a-z]
+# not GNU compatible
+echo fdhrnzvfu bffvsentr | tr [a-z] [n-z][a-m]
+echo abc[] | tr a[b AXB
+echo testing | tr -d aeiou
+
+# true
 true ; echo $?
+
+# false
 false ; echo $?
+
 # tty
 # umount
 # uname
@@ -270,6 +371,8 @@ false ; echo $?
 # unix2dos
 # update
 
+# uptime
+# BUG: doesn't print number of users
 uptime
 
 # usleep
@@ -293,9 +396,9 @@ which ls
 whoami
 
 # xargs
-# (for some reason, the > redirection isn't working)
-#ls -1 > TMPFILE
-#xargs md5sum < TMPFILE
-#rm -f TMPFILE
+# XXX: Busygox xargs divides filenames with '\n' instead of ' '
+ls -1 ../e* | xargs
+ls -1 ../e* | xargs md5sum
 
 # yes - can't test: interactive (needs ^C)
+