sapling/eden/hg-server/tests/test-infinitepush-treemanifest-rebundle.t
Durham Goode 98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00

111 lines
3.0 KiB
Perl

#chg-compatible
$ disable treemanifest
$ . "$TESTDIR/library.sh"
$ setconfig treemanifest.treeonly=False
Start with a server that has flat manifests
$ newrepo master
$ enable infinitepush
$ setconfig remotefilelog.server=true infinitepush.server=true
$ setconfig infinitepush.branchpattern=re:scratch/.+
$ setconfig infinitepush.indextype=disk infinitepush.storetype=disk
$ mkdir dir1
$ echo base > dir1/base
$ hg commit -Aqm base
Make a remotefilelog client
$ cd $TESTTMP
$ hgcloneshallow ssh://user@dummy/master client1
streaming all changes
3 files to transfer, * of data (glob)
transferred * (glob)
searching for changes
no changes found
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1 files fetched over 1 fetches - * (glob) (?)
$ cd client1
$ enable infinitepush
$ setconfig infinitepush.server=false infinitepush.branchpattern=re:scratch/.+
Push a bundle with four commits
$ mkdir dir2
$ echo 1 > dir2/bundled
$ hg commit -Aqm bundled1
$ echo 2 > dir2/bundled
$ hg commit -Aqm bundled2
$ echo 3 > dir2/bundled
$ hg commit -Aqm bundled3
$ echo 4 > dir2/bundled
$ hg commit -Aqm bundled4
$ tglog
@ d1944cedf06c 'bundled4'
o 916baec915e2 'bundled3'
o 9494660bae92 'bundled2'
o f570e0648bfb 'bundled1'
o f7e449aab27f 'base'
$ hg push -r . --to scratch/bundled --create
pushing to ssh://user@dummy/master
searching for changes
remote: pushing 4 commits:
remote: f570e0648bfb bundled1
remote: 9494660bae92 bundled2
remote: 916baec915e2 bundled3
remote: d1944cedf06c bundled4
Upgrade the server to treemanifest
$ cd $TESTTMP/master
$ enable treemanifest
$ setconfig treemanifest.server=true
$ setconfig fastmanifest.usetree=true fastmanifest.usecache=false
$ hg backfilltree
$ setconfig treemanifest.treeonly=true
Clone another client, this time treeonly
$ cd $TESTTMP
$ hgcloneshallow ssh://user@dummy/master client2 --config extensions.treemanifest= --config treemanifest.treeonly=true
streaming all changes
3 files to transfer, * of data (glob)
transferred * (glob)
searching for changes
no changes found
updating to branch default
fetching tree '' a8b0ba84fc9d10d4e1e5be15a0f2b83872021770, found via f7e449aab27f
2 trees fetched over * (glob)
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd client2
$ enable infinitepush
$ enable treemanifest
$ setconfig fastmanifest.usetree=true fastmanifest.usecache=false
$ setconfig treemanifest.treeonly=true
Pull three of the commits, triggering a rebundle. The server must include all of the
trees for the infinitepush commits.
$ hg pull -r 916baec915e2
pulling from ssh://user@dummy/master
searching for changes
adding changesets
adding manifests
adding file changes
added 3 changesets with 3 changes to 1 files
Make sure we can check out the commit we pulled
$ hg update 916baec915e2
1 files updated, 0 files merged, 0 files removed, 0 files unresolved