Mercurial > hg
diff tests/test-ssh-clone-r @ 3449:c8686e3f0291
Testing the new changegroupsubset remote function in the ssh
and http protocols.
author | Eric Hopper <hopper@omnifarious.org> |
---|---|
date | Wed, 18 Oct 2006 02:14:26 -0500 |
parents | |
children | c0b449154a90 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-ssh-clone-r Wed Oct 18 02:14:26 2006 -0500 @@ -0,0 +1,99 @@ +#!/bin/sh + +# This test tries to exercise the ssh functionality with a dummy script + +cat <<'EOF' > dummyssh +#!/bin/sh +# this attempts to deal with relative pathnames +cd `dirname $0` + +# check for proper args +if [ $1 != "user@dummy" ] ; then + exit -1 +fi + +# check that we're in the right directory +if [ ! -x dummyssh ] ; then + exit -1 +fi + +SSH_CLIENT='127.0.0.1 1 2' +export SSH_CLIENT +echo Got arguments 1:$1 2:$2 3:$3 4:$4 5:$5 >> dummylog +$2 +EOF +chmod +x dummyssh + +hg init remote +cd remote +echo "# creating 'remote'" +cat >>afile <<EOF +0 +EOF +hg add afile +hg commit -m "0.0" +cat >>afile <<EOF +1 +EOF +hg commit -m "0.1" +cat >>afile <<EOF +2 +EOF +hg commit -m "0.2" +cat >>afile <<EOF +3 +EOF +hg commit -m "0.3" +hg update -C 0 +cat >>afile <<EOF +1 +EOF +hg commit -m "1.1" +cat >>afile <<EOF +2 +EOF +hg commit -m "1.2" +cat >fred <<EOF +a line +EOF +cat >>afile <<EOF +3 +EOF +hg add fred +hg commit -m "1.3" +hg mv afile adifferentfile +hg commit -m "1.3m" +hg update -C 3 +hg mv afile anotherfile +hg commit -m "0.3m" +hg debugindex .hg/data/afile.i +hg debugindex .hg/data/adifferentfile.i +hg debugindex .hg/data/anotherfile.i +hg debugindex .hg/data/fred.i +hg debugindex .hg/00manifest.i +hg verify +cd .. + +echo "# clone remote via stream" +for i in 0 1 2 3 4 5 6 7 8; do + hg clone -e ./dummyssh --uncompressed -r "$i" ssh://user@dummy/remote test-"$i" 2>&1 + if cd test-"$i"; then + hg verify + cd .. + fi +done +cd test-8 +hg pull ../test-7 +hg verify +cd .. +cd test-1 +hg pull -e ../dummyssh -r 4 ssh://user@dummy/remote 2>&1 +hg verify +hg pull -e ../dummyssh ssh://user@dummy/remote 2>&1 +cd .. +cd test-2 +hg pull -e ../dummyssh -r 5 ssh://user@dummy/remote 2>&1 +hg verify +hg pull -e ../dummyssh ssh://user@dummy/remote 2>&1 +hg verify +cd ..