Mercurial > evolve
diff tests/test-wireproto.t @ 3176:1b58e0121689 mercurial-4.3
test-compat: merge stable into mercurial-4.3
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 07 Nov 2017 13:05:37 +0100 |
parents | f5d472b7e800 3afe20410b55 |
children | a7050ab9d8c1 68aeeb4d4b8f |
line wrap: on
line diff
--- a/tests/test-wireproto.t Wed Nov 01 23:57:56 2017 +0100 +++ b/tests/test-wireproto.t Tue Nov 07 13:05:37 2017 +0100 @@ -184,3 +184,28 @@ obsmarker-exchange: 376 bytes received $ cd .. + +And disable it server side too: + + $ hg serve -R server -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log --config experimental.evolution.obsdiscovery=no + $ cat hg.pid >> $DAEMON_PIDS + + $ curl -s http://localhost:$HGPORT/?cmd=capabilities + _evoext_getbundle_obscommon batch branchmap bundle2=HG20%0Achangegroup%3D01%2C02%0Adigests%3Dmd5%2Csha1%2Csha512%0Aerror%3Dabort%2Cunsupportedcontent%2Cpushraced%2Cpushkey%0Ahgtagsfnodes%0Alistkeys%0Aobsmarkers%3DV0%2CV1%0Apushkey%0Aremote-changegroup%3Dhttp%2Chttps changegroupsubset compression=zstd,zlib getbundle httpheader=1024 httpmediatype=0.1rx,0.1tx,0.2tx known lookup pushkey streamreqs=generaldelta,revlogv1 unbundle=HG10GZ,HG10BZ,HG10UN unbundlehash (no-eol) + +Check we cannot use pushkey for marker exchange anymore + + $ hg debugpushkey http://localhost:$HGPORT/ obsolete + abort: HTTP Error 410: won't exchange obsmarkers through pushkey + [255] + $ hg debugpushkey ssh://user@dummy/server obsolete + remote: abort: won't exchange obsmarkers through pushkey + remote: (upgrade your client or server to use the bundle2 protocol) + abort: unexpected response: empty string + [255] + +But we do let it goes fine on repository with exchange disabled: + + $ $RUNTESTDIR/killdaemons.py $DAEMON_PIDS + $ hg serve -R server -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log --config experimental.evolution='!' + $ hg debugpushkey http://localhost:$HGPORT/ obsolete