sapling/tests/test-fb-hgext-treemanifest-autoconvert.t
Durham Goode ad813edcbd treemanifest: enable treemanifest by default in tests
Summary:
Now that all our repos are treemanifest, let's enable the extension by
default in tests. Once we're certain no one needs it in production we'll also
make it the default in core Mercurial.

This diff includes a minor fix in treemanifest to be aware of always-enabled
extensions. It won't matter until we actually add treemanifest to the list of
default enabled extensions, but I caught this while testing things.

Reviewed By: ikostia

Differential Revision: D15030253

fbshipit-source-id: d8361f915928b6ad90665e6ed330c1df5c8d8d86
2019-05-28 03:17:02 -07:00

76 lines
1.9 KiB
Raku

$ setconfig extensions.treemanifest=!
$ . "$TESTDIR/library.sh"
$ setconfig devel.print-metrics=1
$ setconfig treemanifest.treeonly=False
$ hginit master
$ cd master
$ cat >> .hg/hgrc <<EOF
> [extensions]
> treemanifest=
> [treemanifest]
> server=True
> [remotefilelog]
> server=True
> EOF
$ echo x > x
$ hg commit -qAm 'add x'
$ cd ..
$ hgcloneshallow ssh://user@dummy/master client -q
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over * (glob)
{ metrics : { ssh : { connections : 2,
getfiles : { calls : 1, revs : 1},
read : { bytes : 1703},
write : { bytes : 812}}}}
$ cd client
$ cat >> .hg/hgrc <<EOF
> [extensions]
> fastmanifest=
> treemanifest=
>
> [remotefilelog]
> usefastdatapack=True
>
> [treemanifest]
> autocreatetrees=True
> demanddownload=False
>
> [fastmanifest]
> usetree=True
> usecache=False
> EOF
Test auto creating trees for merge commit
$ cd ../master
$ hg up -q null
$ echo z >> z
$ hg commit -qAm 'add z'
$ hg up -q 0
$ hg merge -q -r 1
$ hg commit -qAm 'merge'
$ cd ../client
$ hg pull
pulling from ssh://user@dummy/master
searching for changes
adding changesets
adding manifests
adding file changes
added 2 changesets with 0 changes to 0 files
new changesets d32fd17cb041:92f4ca0e667c
{ metrics : { ssh : { connections : 1,
read : { bytes : 1435},
write : { bytes : 655}}}}
$ hg manifest -r tip
x
z
$ hg debughistorypack $TESTTMP/hgcache/master/packs/manifests/*.histidx
Node P1 Node P2 Node Link Node Copy From
ddb35f099a64 000000000000 000000000000 d32fd17cb041
13532a598745 bc0c2c938b92 000000000000 92f4ca0e667c
bc0c2c938b92 000000000000 000000000000 085784c01c08