2005-07-27 05:04:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='See why rewinding head breaks send-pack
|
|
|
|
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2006-12-29 11:25:04 +01:00
|
|
|
cnt=64
|
2005-07-27 05:04:22 +02:00
|
|
|
test_expect_success setup '
|
2006-12-29 11:25:04 +01:00
|
|
|
test_tick &&
|
|
|
|
mkdir mozart mozart/is &&
|
|
|
|
echo "Commit #0" >mozart/is/pink &&
|
|
|
|
git-update-index --add mozart/is/pink &&
|
2005-07-27 05:04:22 +02:00
|
|
|
tree=$(git-write-tree) &&
|
|
|
|
commit=$(echo "Commit #0" | git-commit-tree $tree) &&
|
|
|
|
zero=$commit &&
|
|
|
|
parent=$zero &&
|
2006-12-29 11:25:04 +01:00
|
|
|
i=0 &&
|
|
|
|
while test $i -le $cnt
|
2005-07-27 05:04:22 +02:00
|
|
|
do
|
2006-12-29 11:25:04 +01:00
|
|
|
i=$(($i+1)) &&
|
|
|
|
test_tick &&
|
|
|
|
echo "Commit #$i" >mozart/is/pink &&
|
|
|
|
git-update-index --add mozart/is/pink &&
|
|
|
|
tree=$(git-write-tree) &&
|
2005-07-27 05:04:22 +02:00
|
|
|
commit=$(echo "Commit #$i" | git-commit-tree $tree -p $parent) &&
|
2006-12-29 11:25:04 +01:00
|
|
|
git-update-ref refs/tags/commit$i $commit &&
|
2005-08-11 05:56:21 +02:00
|
|
|
parent=$commit || return 1
|
2005-07-27 05:04:22 +02:00
|
|
|
done &&
|
2005-09-30 23:26:57 +02:00
|
|
|
git-update-ref HEAD "$commit" &&
|
2006-12-29 11:25:04 +01:00
|
|
|
git-clone ./. victim &&
|
2005-07-27 05:04:22 +02:00
|
|
|
cd victim &&
|
2005-09-09 03:50:33 +02:00
|
|
|
git-log &&
|
2005-07-27 05:04:22 +02:00
|
|
|
cd .. &&
|
2005-09-30 23:26:57 +02:00
|
|
|
git-update-ref HEAD "$zero" &&
|
2005-07-27 05:04:22 +02:00
|
|
|
parent=$zero &&
|
2006-12-29 11:25:04 +01:00
|
|
|
i=0 &&
|
|
|
|
while test $i -le $cnt
|
2005-07-27 05:04:22 +02:00
|
|
|
do
|
2006-12-29 11:25:04 +01:00
|
|
|
i=$(($i+1)) &&
|
|
|
|
test_tick &&
|
|
|
|
echo "Rebase #$i" >mozart/is/pink &&
|
|
|
|
git-update-index --add mozart/is/pink &&
|
|
|
|
tree=$(git-write-tree) &&
|
2005-07-27 05:04:22 +02:00
|
|
|
commit=$(echo "Rebase #$i" | git-commit-tree $tree -p $parent) &&
|
2006-12-29 11:25:04 +01:00
|
|
|
git-update-ref refs/tags/rebase$i $commit &&
|
2005-08-11 05:56:21 +02:00
|
|
|
parent=$commit || return 1
|
2005-07-27 05:04:22 +02:00
|
|
|
done &&
|
2005-09-30 23:26:57 +02:00
|
|
|
git-update-ref HEAD "$commit" &&
|
2005-07-27 05:04:22 +02:00
|
|
|
echo Rebase &&
|
2005-09-09 03:50:33 +02:00
|
|
|
git-log'
|
2005-07-27 05:04:22 +02:00
|
|
|
|
2006-12-29 11:25:04 +01:00
|
|
|
test_expect_success 'pack the source repository' '
|
|
|
|
git repack -a -d &&
|
|
|
|
git prune
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'pack the destination repository' '
|
|
|
|
cd victim &&
|
|
|
|
git repack -a -d &&
|
|
|
|
git prune &&
|
|
|
|
cd ..
|
|
|
|
'
|
|
|
|
|
2005-07-27 05:04:22 +02:00
|
|
|
test_expect_success \
|
|
|
|
'pushing rewound head should not barf but require --force' '
|
|
|
|
# should not fail but refuse to update.
|
2005-12-14 01:45:40 +01:00
|
|
|
if git-send-pack ./victim/.git/ master
|
|
|
|
then
|
|
|
|
# now it should fail with Pasky patch
|
|
|
|
echo >&2 Gaah, it should have failed.
|
|
|
|
false
|
|
|
|
else
|
|
|
|
echo >&2 Thanks, it correctly failed.
|
|
|
|
true
|
|
|
|
fi &&
|
2005-07-27 05:04:22 +02:00
|
|
|
if cmp victim/.git/refs/heads/master .git/refs/heads/master
|
|
|
|
then
|
|
|
|
# should have been left as it was!
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
|
|
|
# this should update
|
|
|
|
git-send-pack --force ./victim/.git/ master &&
|
|
|
|
cmp victim/.git/refs/heads/master .git/refs/heads/master
|
|
|
|
'
|
2005-08-11 04:15:02 +02:00
|
|
|
|
2006-11-24 09:26:49 +01:00
|
|
|
test_expect_success \
|
|
|
|
'push can be used to delete a ref' '
|
|
|
|
cd victim &&
|
|
|
|
git branch extra master &&
|
|
|
|
cd .. &&
|
|
|
|
test -f victim/.git/refs/heads/extra &&
|
|
|
|
git-send-pack ./victim/.git/ :extra master &&
|
|
|
|
! test -f victim/.git/refs/heads/extra
|
|
|
|
'
|
|
|
|
|
2006-09-21 02:10:30 +02:00
|
|
|
unset GIT_CONFIG GIT_CONFIG_LOCAL
|
|
|
|
HOME=`pwd`/no-such-directory
|
|
|
|
export HOME ;# this way we force the victim/.git/config to be used.
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'pushing with --force should be denied with denyNonFastforwards' '
|
|
|
|
cd victim &&
|
|
|
|
git-repo-config receive.denyNonFastforwards true &&
|
|
|
|
cd .. &&
|
|
|
|
git-update-ref refs/heads/master master^ &&
|
|
|
|
git-send-pack --force ./victim/.git/ master &&
|
|
|
|
! diff -u .git/refs/heads/master victim/.git/refs/heads/master
|
|
|
|
'
|
|
|
|
|
2005-08-11 04:15:02 +02:00
|
|
|
test_done
|