2009-11-29 23:39:29 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2009 by Denys Vlasenko
|
2010-08-16 23:44:46 +05:30
|
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
2009-11-29 23:39:29 +05:30
|
|
|
|
|
|
|
. ./testing.sh
|
|
|
|
|
2010-08-11 12:03:57 +05:30
|
|
|
unset LANG
|
|
|
|
unset LANGUAGE
|
|
|
|
unset LC_COLLATE
|
|
|
|
unset LC_ALL
|
|
|
|
umask 022
|
|
|
|
|
2010-04-09 14:22:52 +05:30
|
|
|
rm -rf tar.tempdir 2>/dev/null
|
|
|
|
mkdir tar.tempdir && cd tar.tempdir || exit 1
|
2009-11-29 23:39:29 +05:30
|
|
|
|
|
|
|
# testing "test name" "script" "expected result" "file input" "stdin"
|
|
|
|
|
2010-05-11 07:23:57 +05:30
|
|
|
optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
|
2010-04-09 14:22:52 +05:30
|
|
|
testing "tar hardlinks and repeated files" '\
|
2009-12-17 03:16:01 +05:30
|
|
|
rm -rf input_* test.tar 2>/dev/null
|
|
|
|
>input_hard1
|
2009-11-29 23:39:29 +05:30
|
|
|
ln input_hard1 input_hard2
|
|
|
|
mkdir input_dir
|
|
|
|
>input_dir/file
|
2010-04-09 14:22:52 +05:30
|
|
|
chmod -R 644 *
|
|
|
|
chmod 755 input_dir
|
2009-11-29 23:39:29 +05:30
|
|
|
tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input
|
2010-04-09 14:22:52 +05:30
|
|
|
tar tvf test.tar | sed "s/.*[0-9] input/input/"
|
|
|
|
tar xf test.tar 2>&1
|
|
|
|
echo Ok: $?
|
|
|
|
ls -l . input_dir/* | grep input_ | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
|
|
|
|
' "\
|
2009-12-17 03:16:01 +05:30
|
|
|
input
|
2009-11-29 23:39:29 +05:30
|
|
|
input_dir/
|
|
|
|
input_dir/file
|
|
|
|
input_hard1
|
|
|
|
input_hard2 -> input_hard1
|
|
|
|
input_hard1 -> input_hard1
|
|
|
|
input_dir/
|
|
|
|
input_dir/file
|
|
|
|
input
|
2010-04-09 14:22:52 +05:30
|
|
|
Ok: 0
|
|
|
|
-rw-r--r-- input_dir/file
|
|
|
|
drwxr-xr-x input_dir
|
|
|
|
-rw-r--r-- input_hard1
|
|
|
|
-rw-r--r-- input_hard2
|
|
|
|
" \
|
|
|
|
"" ""
|
2010-05-10 09:23:16 +05:30
|
|
|
SKIP=
|
2010-04-09 14:22:52 +05:30
|
|
|
|
2010-05-11 07:23:57 +05:30
|
|
|
optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
|
2010-04-09 14:22:52 +05:30
|
|
|
testing "tar hardlinks mode" '\
|
|
|
|
rm -rf input_* test.tar 2>/dev/null
|
|
|
|
>input_hard1
|
|
|
|
chmod 741 input_hard1
|
|
|
|
ln input_hard1 input_hard2
|
|
|
|
mkdir input_dir
|
|
|
|
ln input_hard1 input_dir
|
|
|
|
ln input_hard2 input_dir
|
2010-09-03 07:08:00 +05:30
|
|
|
chmod 550 input_dir
|
2010-09-03 20:52:56 +05:30
|
|
|
# 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*
|
2010-04-09 14:22:52 +05:30
|
|
|
tar tvf test.tar | sed "s/.*[0-9] input/input/"
|
2010-09-03 07:08:00 +05:30
|
|
|
chmod 770 input_dir
|
|
|
|
rm -rf input_*
|
2010-04-09 14:22:52 +05:30
|
|
|
tar xf test.tar 2>&1
|
|
|
|
echo Ok: $?
|
2010-09-03 20:52:56 +05:30
|
|
|
ls -l . input_dir/* | grep "input.*hard" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
|
2010-04-09 14:22:52 +05:30
|
|
|
' "\
|
|
|
|
input_dir/input_hard1
|
|
|
|
input_dir/input_hard2 -> input_dir/input_hard1
|
|
|
|
input_hard1 -> input_dir/input_hard1
|
|
|
|
input_hard2 -> input_dir/input_hard1
|
|
|
|
Ok: 0
|
|
|
|
-rwxr----x input_dir/input_hard1
|
|
|
|
-rwxr----x input_dir/input_hard2
|
|
|
|
-rwxr----x input_hard1
|
|
|
|
-rwxr----x input_hard2
|
2009-11-29 23:39:29 +05:30
|
|
|
" \
|
|
|
|
"" ""
|
2010-05-10 09:23:16 +05:30
|
|
|
SKIP=
|
2009-11-29 23:39:29 +05:30
|
|
|
|
2010-05-11 07:23:57 +05:30
|
|
|
optional FEATURE_TAR_CREATE FEATURE_LS_SORTFILES
|
2010-04-09 17:41:45 +05:30
|
|
|
testing "tar symlinks mode" '\
|
|
|
|
rm -rf input_* test.tar 2>/dev/null
|
|
|
|
>input_file
|
|
|
|
chmod 741 input_file
|
|
|
|
ln -s input_file input_soft
|
|
|
|
mkdir input_dir
|
|
|
|
ln input_file input_dir
|
|
|
|
ln input_soft input_dir
|
2010-09-03 07:08:00 +05:30
|
|
|
chmod 550 input_dir
|
2010-09-11 12:58:50 +05:30
|
|
|
tar cf test.tar input_dir/* input_[fs]*
|
2010-05-12 19:29:32 +05:30
|
|
|
tar tvf test.tar | sed "s/.*[0-9] input/input/" | sort
|
2010-09-03 07:08:00 +05:30
|
|
|
chmod 770 input_dir
|
|
|
|
rm -rf input_*
|
2010-04-09 17:41:45 +05:30
|
|
|
tar xf test.tar 2>&1
|
|
|
|
echo Ok: $?
|
2010-09-11 12:58:50 +05:30
|
|
|
ls -l . input_dir/* | grep "input_[fs]" | sed "s/\\(^[^ ]*\\) .* input/\\1 input/"
|
2010-04-09 17:41:45 +05:30
|
|
|
' "\
|
|
|
|
input_dir/input_file
|
|
|
|
input_dir/input_soft -> input_file
|
|
|
|
input_file -> input_dir/input_file
|
|
|
|
input_soft -> input_dir/input_soft
|
|
|
|
Ok: 0
|
|
|
|
-rwxr----x input_dir/input_file
|
|
|
|
lrwxrwxrwx input_file
|
|
|
|
-rwxr----x input_file
|
|
|
|
lrwxrwxrwx input_file
|
|
|
|
" \
|
|
|
|
"" ""
|
2010-05-10 09:23:16 +05:30
|
|
|
SKIP=
|
2010-04-09 17:41:45 +05:30
|
|
|
|
2010-05-11 15:32:48 +05:30
|
|
|
optional FEATURE_TAR_CREATE FEATURE_TAR_LONG_OPTIONS
|
2009-12-17 03:48:59 +05:30
|
|
|
testing "tar --overwrite" "\
|
|
|
|
rm -rf input_* test.tar 2>/dev/null
|
|
|
|
ln input input_hard
|
|
|
|
tar cf test.tar input_hard
|
|
|
|
echo WRONG >input
|
|
|
|
# --overwrite opens 'input_hard' without unlinking,
|
|
|
|
# thus 'input_hard' still linked to 'input' and we write 'Ok' into it
|
|
|
|
tar xf test.tar --overwrite 2>&1 && cat input
|
|
|
|
" "\
|
|
|
|
Ok
|
|
|
|
" \
|
|
|
|
"Ok\n" ""
|
2010-04-02 13:27:27 +05:30
|
|
|
SKIP=
|
2009-12-17 03:48:59 +05:30
|
|
|
|
2010-09-11 12:58:50 +05:30
|
|
|
test x"$SKIP_KNOWN_BUGS" = x"" && {
|
2010-09-05 19:46:46 +05:30
|
|
|
# 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=
|
2010-09-11 12:58:50 +05:30
|
|
|
}
|
|
|
|
|
2010-09-05 19:46:46 +05:30
|
|
|
|
2010-04-09 14:22:52 +05:30
|
|
|
cd .. && rm -rf tar.tempdir || exit 1
|
2009-11-29 23:39:29 +05:30
|
|
|
|
|
|
|
exit $FAILCOUNT
|