sapling/tests/test-fb-hgext-treemanifest-pullpublic.t
Jun Wu b40af5890c metrics: add metrics about fetching remote data
Summary: Log data about round-trip count, and object count for files, trees, and SSH calls.

Differential Revision: D14515776

fbshipit-source-id: cce416fd7dccdad3c73a9f1751a04ddac0d2c507
2019-03-20 22:49:18 -07:00

85 lines
2.4 KiB
Perl

$ . "$TESTDIR/library.sh"
$ setconfig devel.print-metrics=1
$ hginit master
$ cd master
$ cat >> .hg/hgrc <<EOF
> [extensions]
> pushrebase=
> treemanifest=
> [remotefilelog]
> server=True
> [treemanifest]
> server=True
> EOF
$ mkcommit a
$ mkcommit b
$ hg phase -p -r 'all()'
Clone it
$ cd ..
$ hgcloneshallow ssh://user@dummy/master client1 -q --config extensions.treemanifest= --config treemanifest.treeonly=True
fetching tree '' a539ce0c1a22b0ecf34498f9f5ce8ea56df9ecb7, found via d2ae7f538514
1 trees fetched over * (glob)
2 files fetched over 1 fetches - (2 misses, 0.00% hit ratio) over * (glob)
{ metrics : { ssh : { connections : 2,
getfiles : { calls : 1, revs : 2},
gettreepack : { basemfnodes : 0,
calls : 1,
mfnodes : 1},
read : { bytes : 2234},
write : { bytes : 1042}}}}
$ cd client1
$ cat >> .hg/hgrc <<EOF
> [extensions]
> treemanifest=
>
> [remotefilelog]
> usefastdatapack=True
>
> [treemanifest]
> treeonly=True
> sendtrees=True
> EOF
Add a few more public server comits
$ cd ../master
$ mkcommit c
$ mkcommit d
$ mkcommit e
$ hg phase -p -r 'all()'
Create an extension the prints out whenever we compare manifests on the server
$ cat > "$TESTTMP/diffdebug.py" << EOF
> from edenscm.mercurial import manifest
> class manifestdict(manifest.manifestdict):
> ui = None
> def diff(self, *args, **kwargs):
> if self.ui:
> self.ui.warn("*** manifestdict is comparing manifests\n")
> return super(manifestdict, self).diff(*args, **kwargs)
> def extsetup(ui):
> manifestdict.ui = ui
> manifest.manifestdict = manifestdict
> EOF
$ cat >> .hg/hgrc <<EOF
> [extensions]
> diffdebug=$TESTTMP/diffdebug.py
> EOF
Pull exactly up to d into the client
$ cd ../client1
$ hg pull -r 055a42cdd887
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 177f92b77385:055a42cdd887
(run 'hg update' to get a working copy)
{ metrics : { ssh : { connections : 1,
read : { bytes : 1170},
write : { bytes : 708}}}}