2009-11-29 23:39:29 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2009 by Denys Vlasenko
|
|
|
|
# Licensed under GPL v2, see file LICENSE for details.
|
|
|
|
|
|
|
|
. ./testing.sh
|
|
|
|
|
|
|
|
mkdir tempdir && cd tempdir || exit 1
|
|
|
|
|
|
|
|
# testing "test name" "script" "expected result" "file input" "stdin"
|
|
|
|
|
2009-12-17 03:16:01 +05:30
|
|
|
testing "tar hardlinks and repeated files" "\
|
|
|
|
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
|
|
|
|
tar cf test.tar input input_dir/ input_hard1 input_hard2 input_hard1 input_dir/ input
|
|
|
|
tar tvf test.tar | sed 's/.*[0-9] input/input/'
|
|
|
|
tar xf test.tar 2>&1 && echo Ok
|
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
|
|
|
|
Ok
|
|
|
|
" \
|
|
|
|
"" ""
|
|
|
|
|
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" ""
|
|
|
|
|
2009-11-29 23:39:29 +05:30
|
|
|
cd .. && rm -rf tempdir || exit 1
|
|
|
|
|
|
|
|
exit $FAILCOUNT
|