remote-testgit: exercise more features
Unfortunately a lot of these tests fail. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
3808b8515b
commit
ee10fbf90c
@ -6,17 +6,25 @@ url=$2
|
|||||||
|
|
||||||
dir="$GIT_DIR/testgit/$alias"
|
dir="$GIT_DIR/testgit/$alias"
|
||||||
prefix="refs/testgit/$alias"
|
prefix="refs/testgit/$alias"
|
||||||
refspec="refs/heads/*:${prefix}/heads/*"
|
|
||||||
|
|
||||||
gitmarks="$dir/git.marks"
|
default_refspec="refs/heads/*:${prefix}/heads/*"
|
||||||
testgitmarks="$dir/testgit.marks"
|
|
||||||
|
refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}"
|
||||||
|
|
||||||
|
test -z "$refspec" && prefix="refs"
|
||||||
|
|
||||||
export GIT_DIR="$url/.git"
|
export GIT_DIR="$url/.git"
|
||||||
|
|
||||||
mkdir -p "$dir"
|
mkdir -p "$dir"
|
||||||
|
|
||||||
test -e "$gitmarks" || > "$gitmarks"
|
if test -z "$GIT_REMOTE_TESTGIT_NO_MARKS"
|
||||||
test -e "$testgitmarks" || > "$testgitmarks"
|
then
|
||||||
|
gitmarks="$dir/git.marks"
|
||||||
|
testgitmarks="$dir/testgit.marks"
|
||||||
|
test -e "$gitmarks" || >"$gitmarks"
|
||||||
|
test -e "$testgitmarks" || >"$testgitmarks"
|
||||||
|
testgitmarks_args=( "--"{import,export}"-marks=$testgitmarks" )
|
||||||
|
fi
|
||||||
|
|
||||||
while read line
|
while read line
|
||||||
do
|
do
|
||||||
@ -24,9 +32,12 @@ do
|
|||||||
capabilities)
|
capabilities)
|
||||||
echo 'import'
|
echo 'import'
|
||||||
echo 'export'
|
echo 'export'
|
||||||
echo "refspec $refspec"
|
test -n "$refspec" && echo "refspec $refspec"
|
||||||
|
if test -n "$gitmarks"
|
||||||
|
then
|
||||||
echo "*import-marks $gitmarks"
|
echo "*import-marks $gitmarks"
|
||||||
echo "*export-marks $gitmarks"
|
echo "*export-marks $gitmarks"
|
||||||
|
fi
|
||||||
echo
|
echo
|
||||||
;;
|
;;
|
||||||
list)
|
list)
|
||||||
@ -45,13 +56,16 @@ do
|
|||||||
test "${line%% *}" != "import" && break
|
test "${line%% *}" != "import" && break
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if test -n "$gitmarks"
|
||||||
|
then
|
||||||
echo "feature import-marks=$gitmarks"
|
echo "feature import-marks=$gitmarks"
|
||||||
echo "feature export-marks=$gitmarks"
|
echo "feature export-marks=$gitmarks"
|
||||||
git fast-export --use-done-feature --{import,export}-marks="$testgitmarks" $refs |
|
fi
|
||||||
|
git fast-export --use-done-feature "${testgitmarks_args[@]}" $refs |
|
||||||
sed -e "s#refs/heads/#${prefix}/heads/#g"
|
sed -e "s#refs/heads/#${prefix}/heads/#g"
|
||||||
;;
|
;;
|
||||||
export)
|
export)
|
||||||
git fast-import --{import,export}-marks="$testgitmarks" --quiet
|
git fast-import "${testgitmarks_args[@]}" --quiet
|
||||||
echo
|
echo
|
||||||
;;
|
;;
|
||||||
'')
|
'')
|
||||||
|
@ -110,4 +110,56 @@ test_expect_failure 'push new branch with old:new refspec' '
|
|||||||
compare_refs local HEAD server refs/heads/new-refspec
|
compare_refs local HEAD server refs/heads/new-refspec
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 'cloning without refspec' '
|
||||||
|
GIT_REMOTE_TESTGIT_REFSPEC="" \
|
||||||
|
git clone "testgit::${PWD}/server" local2 &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'pulling without refspecs' '
|
||||||
|
(cd local2 &&
|
||||||
|
git reset --hard &&
|
||||||
|
GIT_REMOTE_TESTGIT_REFSPEC="" git pull) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_failure 'pushing without refspecs' '
|
||||||
|
test_when_finished "(cd local2 && git reset --hard origin)" &&
|
||||||
|
(cd local2 &&
|
||||||
|
echo content >>file &&
|
||||||
|
git commit -a -m ten &&
|
||||||
|
GIT_REMOTE_TESTGIT_REFSPEC="" git push) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'pulling with straight refspec' '
|
||||||
|
(cd local2 &&
|
||||||
|
GIT_REMOTE_TESTGIT_REFSPEC="*:*" git pull) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_failure 'pushing with straight refspec' '
|
||||||
|
test_when_finished "(cd local2 && git reset --hard origin)" &&
|
||||||
|
(cd local2 &&
|
||||||
|
echo content >>file &&
|
||||||
|
git commit -a -m eleven &&
|
||||||
|
GIT_REMOTE_TESTGIT_REFSPEC="*:*" git push) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'pulling without marks' '
|
||||||
|
(cd local2 &&
|
||||||
|
GIT_REMOTE_TESTGIT_NO_MARKS=1 git pull) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_failure 'pushing without marks' '
|
||||||
|
test_when_finished "(cd local2 && git reset --hard origin)" &&
|
||||||
|
(cd local2 &&
|
||||||
|
echo content >>file &&
|
||||||
|
git commit -a -m twelve &&
|
||||||
|
GIT_REMOTE_TESTGIT_NO_MARKS=1 git push) &&
|
||||||
|
compare_refs local2 HEAD server HEAD
|
||||||
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user