2007-01-16 02:31:49 +01:00
|
|
|
#!/bin/sh
|
2006-11-12 16:29:42 +01:00
|
|
|
#
|
|
|
|
# Copyright (c) Robin Rosenberg
|
|
|
|
#
|
|
|
|
test_description='CVS export comit. '
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
cvs >/dev/null 2>&1
|
|
|
|
if test $? -ne 1
|
|
|
|
then
|
|
|
|
test_expect_success 'skipping git-cvsexportcommit tests, cvs not found' :
|
|
|
|
test_done
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2006-12-28 10:10:52 +01:00
|
|
|
CVSROOT=$(pwd)/cvsroot
|
|
|
|
CVSWORK=$(pwd)/cvswork
|
|
|
|
GIT_DIR=$(pwd)/.git
|
|
|
|
export CVSROOT CVSWORK GIT_DIR
|
|
|
|
|
2006-11-12 16:29:42 +01:00
|
|
|
rm -rf "$CVSROOT" "$CVSWORK"
|
|
|
|
mkdir "$CVSROOT" &&
|
|
|
|
cvs init &&
|
|
|
|
cvs -Q co -d "$CVSWORK" . &&
|
|
|
|
echo >empty &&
|
|
|
|
git add empty &&
|
2006-12-28 10:10:52 +01:00
|
|
|
git commit -q -a -m "Initial" 2>/dev/null ||
|
2006-11-12 16:29:42 +01:00
|
|
|
exit 1
|
|
|
|
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries () {
|
|
|
|
# $1 == directory, $2 == expected
|
|
|
|
grep '^/' "$1/CVS/Entries" | sort | cut -d/ -f2,3,5 >actual
|
|
|
|
if test -z "$2"
|
|
|
|
then
|
|
|
|
>expected
|
|
|
|
else
|
|
|
|
printf '%s\n' "$2" | tr '|' '\012' >expected
|
|
|
|
fi
|
|
|
|
diff -u expected actual
|
|
|
|
}
|
|
|
|
|
2006-11-12 16:29:42 +01:00
|
|
|
test_expect_success \
|
|
|
|
'New file' \
|
|
|
|
'mkdir A B C D E F &&
|
|
|
|
echo hello1 >A/newfile1.txt &&
|
|
|
|
echo hello2 >B/newfile2.txt &&
|
|
|
|
cp ../test9200a.png C/newfile3.png &&
|
|
|
|
cp ../test9200a.png D/newfile4.png &&
|
|
|
|
git add A/newfile1.txt &&
|
|
|
|
git add B/newfile2.txt &&
|
|
|
|
git add C/newfile3.png &&
|
|
|
|
git add D/newfile4.png &&
|
|
|
|
git commit -a -m "Test: New file" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git cvsexportcommit -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries A "newfile1.txt/1.1/" &&
|
|
|
|
check_entries B "newfile2.txt/1.1/" &&
|
|
|
|
check_entries C "newfile3.png/1.1/-kb" &&
|
|
|
|
check_entries D "newfile4.png/1.1/-kb" &&
|
2006-11-12 16:29:42 +01:00
|
|
|
diff A/newfile1.txt ../A/newfile1.txt &&
|
|
|
|
diff B/newfile2.txt ../B/newfile2.txt &&
|
|
|
|
diff C/newfile3.png ../C/newfile3.png &&
|
|
|
|
diff D/newfile4.png ../D/newfile4.png
|
|
|
|
)'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'Remove two files, add two and update two' \
|
|
|
|
'echo Hello1 >>A/newfile1.txt &&
|
|
|
|
rm -f B/newfile2.txt &&
|
|
|
|
rm -f C/newfile3.png &&
|
|
|
|
echo Hello5 >E/newfile5.txt &&
|
|
|
|
cp ../test9200b.png D/newfile4.png &&
|
|
|
|
cp ../test9200a.png F/newfile6.png &&
|
|
|
|
git add E/newfile5.txt &&
|
|
|
|
git add F/newfile6.png &&
|
|
|
|
git commit -a -m "Test: Remove, add and update" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git cvsexportcommit -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries A "newfile1.txt/1.2/" &&
|
|
|
|
check_entries B "" &&
|
|
|
|
check_entries C "" &&
|
|
|
|
check_entries D "newfile4.png/1.2/-kb" &&
|
|
|
|
check_entries E "newfile5.txt/1.1/" &&
|
|
|
|
check_entries F "newfile6.png/1.1/-kb" &&
|
2006-11-12 16:29:42 +01:00
|
|
|
diff A/newfile1.txt ../A/newfile1.txt &&
|
|
|
|
diff D/newfile4.png ../D/newfile4.png &&
|
|
|
|
diff E/newfile5.txt ../E/newfile5.txt &&
|
|
|
|
diff F/newfile6.png ../F/newfile6.png
|
|
|
|
)'
|
|
|
|
|
|
|
|
# Should fail (but only on the git-cvsexportcommit stage)
|
|
|
|
test_expect_success \
|
|
|
|
'Fail to change binary more than one generation old' \
|
|
|
|
'cat F/newfile6.png >>D/newfile4.png &&
|
|
|
|
git commit -a -m "generatiion 1" &&
|
|
|
|
cat F/newfile6.png >>D/newfile4.png &&
|
|
|
|
git commit -a -m "generation 2" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
! git cvsexportcommit -c $id
|
|
|
|
)'
|
|
|
|
|
2006-12-11 00:30:06 +01:00
|
|
|
#test_expect_success \
|
|
|
|
# 'Fail to remove binary file more than one generation old' \
|
|
|
|
# 'git reset --hard HEAD^ &&
|
|
|
|
# cat F/newfile6.png >>D/newfile4.png &&
|
|
|
|
# git commit -a -m "generation 2 (again)" &&
|
|
|
|
# rm -f D/newfile4.png &&
|
|
|
|
# git commit -a -m "generation 3" &&
|
|
|
|
# id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
# (cd "$CVSWORK" &&
|
|
|
|
# ! git cvsexportcommit -c $id
|
|
|
|
# )'
|
2006-11-12 16:29:42 +01:00
|
|
|
|
|
|
|
# We reuse the state from two tests back here
|
|
|
|
|
|
|
|
# This test is here because a patch for only binary files will
|
|
|
|
# fail with gnu patch, so cvsexportcommit must handle that.
|
|
|
|
test_expect_success \
|
|
|
|
'Remove only binary files' \
|
2006-12-11 00:30:06 +01:00
|
|
|
'git reset --hard HEAD^^ &&
|
2006-11-12 16:29:42 +01:00
|
|
|
rm -f D/newfile4.png &&
|
|
|
|
git commit -a -m "test: remove only a binary file" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git cvsexportcommit -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries A "newfile1.txt/1.2/" &&
|
|
|
|
check_entries B "" &&
|
|
|
|
check_entries C "" &&
|
|
|
|
check_entries D "" &&
|
|
|
|
check_entries E "newfile5.txt/1.1/" &&
|
|
|
|
check_entries F "newfile6.png/1.1/-kb" &&
|
2006-11-12 16:29:42 +01:00
|
|
|
diff A/newfile1.txt ../A/newfile1.txt &&
|
|
|
|
diff E/newfile5.txt ../E/newfile5.txt &&
|
|
|
|
diff F/newfile6.png ../F/newfile6.png
|
|
|
|
)'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'Remove only a text file' \
|
|
|
|
'rm -f A/newfile1.txt &&
|
|
|
|
git commit -a -m "test: remove only a binary file" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git cvsexportcommit -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries A "" &&
|
|
|
|
check_entries B "" &&
|
|
|
|
check_entries C "" &&
|
|
|
|
check_entries D "" &&
|
|
|
|
check_entries E "newfile5.txt/1.1/" &&
|
|
|
|
check_entries F "newfile6.png/1.1/-kb" &&
|
2006-11-12 16:29:42 +01:00
|
|
|
diff E/newfile5.txt ../E/newfile5.txt &&
|
|
|
|
diff F/newfile6.png ../F/newfile6.png
|
|
|
|
)'
|
|
|
|
|
2006-12-11 00:30:06 +01:00
|
|
|
test_expect_success \
|
|
|
|
'New file with spaces in file name' \
|
|
|
|
'mkdir "G g" &&
|
|
|
|
echo ok then >"G g/with spaces.txt" &&
|
|
|
|
git add "G g/with spaces.txt" && \
|
|
|
|
cp ../test9200a.png "G g/with spaces.png" && \
|
|
|
|
git add "G g/with spaces.png" &&
|
|
|
|
git commit -a -m "With spaces" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git-cvsexportcommit -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries "G g" "with spaces.png/1.1/-kb|with spaces.txt/1.1/"
|
2006-12-11 00:30:06 +01:00
|
|
|
)'
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'Update file with spaces in file name' \
|
|
|
|
'echo Ok then >>"G g/with spaces.txt" &&
|
|
|
|
cat ../test9200a.png >>"G g/with spaces.png" && \
|
|
|
|
git add "G g/with spaces.png" &&
|
|
|
|
git commit -a -m "Update with spaces" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git-cvsexportcommit -c $id
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries "G g" "with spaces.png/1.2/-kb|with spaces.txt/1.2/"
|
2006-12-11 00:30:06 +01:00
|
|
|
)'
|
|
|
|
|
2007-02-05 02:30:58 +01:00
|
|
|
# Some filesystems mangle pathnames with UTF-8 characters --
|
|
|
|
# check and skip
|
|
|
|
if p="Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö" &&
|
|
|
|
mkdir -p "tst/$p" &&
|
|
|
|
date >"tst/$p/day" &&
|
|
|
|
found=$(find tst -type f -print) &&
|
|
|
|
test "z$found" = "ztst/$p/day" &&
|
|
|
|
rm -fr tst
|
|
|
|
then
|
|
|
|
|
2007-01-31 23:21:48 +01:00
|
|
|
# This test contains UTF-8 characters
|
2006-12-11 00:30:06 +01:00
|
|
|
test_expect_success \
|
|
|
|
'File with non-ascii file name' \
|
2007-01-31 23:21:48 +01:00
|
|
|
'mkdir -p Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö &&
|
|
|
|
echo Foo >Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö/gårdetsågårdet.txt &&
|
|
|
|
git add Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö/gårdetsågårdet.txt &&
|
|
|
|
cp ../test9200a.png Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö/gårdetsågårdet.png &&
|
|
|
|
git add Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö/gårdetsågårdet.png &&
|
|
|
|
git commit -a -m "Går det så går det" && \
|
2006-12-11 00:30:06 +01:00
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git-cvsexportcommit -v -c $id &&
|
2007-07-25 08:25:38 +02:00
|
|
|
check_entries \
|
|
|
|
"Å/goo/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/å/ä/ö" \
|
|
|
|
"gårdetsågårdet.png/1.1/-kb|gårdetsågårdet.txt/1.1/"
|
2006-12-11 00:30:06 +01:00
|
|
|
)'
|
|
|
|
|
2007-02-05 02:30:58 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -fr tst
|
|
|
|
|
2006-12-11 00:30:06 +01:00
|
|
|
test_expect_success \
|
|
|
|
'Mismatching patch should fail' \
|
|
|
|
'date >>"E/newfile5.txt" &&
|
|
|
|
git add "E/newfile5.txt" &&
|
|
|
|
git commit -a -m "Update one" &&
|
|
|
|
date >>"E/newfile5.txt" &&
|
|
|
|
git add "E/newfile5.txt" &&
|
|
|
|
git commit -a -m "Update two" &&
|
|
|
|
id=$(git rev-list --max-count=1 HEAD) &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
! git-cvsexportcommit -c $id
|
|
|
|
)'
|
|
|
|
|
2007-01-31 23:25:52 +01:00
|
|
|
case "$(git repo-config --bool core.filemode)" in
|
|
|
|
false)
|
|
|
|
;;
|
|
|
|
*)
|
2006-12-11 00:30:06 +01:00
|
|
|
test_expect_success \
|
|
|
|
'Retain execute bit' \
|
|
|
|
'mkdir G &&
|
|
|
|
echo executeon >G/on &&
|
|
|
|
chmod +x G/on &&
|
|
|
|
echo executeoff >G/off &&
|
|
|
|
git add G/on &&
|
|
|
|
git add G/off &&
|
|
|
|
git commit -a -m "Execute test" &&
|
|
|
|
(cd "$CVSWORK" &&
|
|
|
|
git-cvsexportcommit -c HEAD
|
|
|
|
test -x G/on &&
|
|
|
|
! test -x G/off
|
|
|
|
)'
|
2007-01-31 23:25:52 +01:00
|
|
|
;;
|
|
|
|
esac
|
2006-12-04 08:44:08 +01:00
|
|
|
|
2006-11-12 16:29:42 +01:00
|
|
|
test_done
|