X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=testsuite%2Ftar.tests;h=472064f7f1a259818e4b9065501cdca22790376b;hb=b8ab4b038803df195eee9844c3597dd640c00393;hp=8599b79fcfe8174cdf9d3e5c3ab82f9709a93567;hpb=bfa1b2e8e8aaddcf849011a12cb2ac634b27f339;p=oweals%2Fbusybox.git diff --git a/testsuite/tar.tests b/testsuite/tar.tests index 8599b79fc..472064f7f 100755 --- a/testsuite/tar.tests +++ b/testsuite/tar.tests @@ -1,9 +1,15 @@ #!/bin/sh # Copyright 2009 by Denys Vlasenko -# Licensed under GPL v2, see file LICENSE for details. +# Licensed under GPLv2, see file LICENSE in this source tree. . ./testing.sh +unset LANG +unset LANGUAGE +unset LC_COLLATE +unset LC_ALL +umask 022 + rm -rf tar.tempdir 2>/dev/null mkdir tar.tempdir && cd tar.tempdir || exit 1 @@ -49,16 +55,19 @@ rm -rf input_* test.tar 2>/dev/null chmod 741 input_hard1 ln input_hard1 input_hard2 mkdir input_dir -chmod 550 input_dir ln input_hard1 input_dir ln input_hard2 input_dir -tar cf test.tar input_* +chmod 550 input_dir +# On some filesystems, input_dir/input_hard2 is returned by readdir +# BEFORE input_dir/input_hard1! Thats why we cant just "tar cf ... input_*": +tar cf test.tar input_dir/input_hard* input_hard* tar tvf test.tar | sed "s/.*[0-9] input/input/" +chmod 770 input_dir +rm -rf input_* tar xf test.tar 2>&1 echo Ok: $? -ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" +ls -l . input_dir/* | grep "input.*hard" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" ' "\ -input_dir/ input_dir/input_hard1 input_dir/input_hard2 -> input_dir/input_hard1 input_hard1 -> input_dir/input_hard1 @@ -66,7 +75,6 @@ input_hard2 -> input_dir/input_hard1 Ok: 0 -rwxr----x input_dir/input_hard1 -rwxr----x input_dir/input_hard2 -dr-xr-x--- input_dir -rwxr----x input_hard1 -rwxr----x input_hard2 " \ @@ -80,16 +88,17 @@ rm -rf input_* test.tar 2>/dev/null chmod 741 input_file ln -s input_file input_soft mkdir input_dir -chmod 550 input_dir ln input_file input_dir ln input_soft input_dir -tar cf test.tar input_* -tar tvf test.tar | sed "s/.*[0-9] input/input/" +chmod 550 input_dir +tar cf test.tar input_dir/* input_[fs]* +tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort +chmod 770 input_dir +rm -rf input_* tar xf test.tar 2>&1 echo Ok: $? -ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" +ls -l . input_dir/* | grep "input_[fs]" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" ' "\ -input_dir/ input_dir/input_file input_dir/input_soft -> input_file input_file -> input_dir/input_file @@ -97,14 +106,13 @@ input_soft -> input_dir/input_soft Ok: 0 -rwxr----x input_dir/input_file lrwxrwxrwx input_file -dr-xr-x--- input_dir -rwxr----x input_file lrwxrwxrwx input_file " \ "" "" SKIP= -optional FEATURE_TAR_LONG_OPTIONS +optional FEATURE_TAR_CREATE FEATURE_TAR_LONG_OPTIONS testing "tar --overwrite" "\ rm -rf input_* test.tar 2>/dev/null ln input input_hard @@ -119,6 +127,48 @@ Ok "Ok\n" "" SKIP= +test x"$SKIP_KNOWN_BUGS" = x"" && { +# Needs to be run under non-root for meaningful test +optional FEATURE_TAR_CREATE +testing "tar writing into read-only dir" '\ +rm -rf input_* test.tar 2>/dev/null +mkdir input_dir +>input_dir/input_file +chmod 550 input_dir +tar cf test.tar input_dir +tar tvf test.tar | sed "s/.*[0-9] input/input/" +chmod 770 input_dir +rm -rf input_* +tar xf test.tar 2>&1 +echo Ok: $? +ls -l input_dir/* . | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/" +chmod 770 input_dir +' "\ +input_dir/ +input_dir/input_file +Ok: 0 +-rw-r--r-- input_dir/input_file +dr-xr-x--- input_dir +" \ +"" "" +SKIP= +} + +# Had a bug where on extract autodetect first "switched off" -z +# and then failed to recognize .tgz extension +testing "tar extract tgz" "\ +dd count=1 bs=1M if=/dev/zero of=F0 2>/dev/null +tar -czf F0.tgz F0 +rm F0 +tar -xzvf F0.tgz && echo Ok +rm F0 || echo BAD +" "\ +F0 +Ok +" \ +"" "" + + cd .. && rm -rf tar.tempdir || exit 1 exit $FAILCOUNT