sapling/eden/scm/tests/test-fb-hgext-treemanifest-blame.t
Jun Wu 6fd6454502 tests: enable narrow-heads for test-fb-hgext-treemanifest-*
Reviewed By: DurhamG

Differential Revision: D22130166

fbshipit-source-id: dcff8bd6263c5cb6dd1f19320969f1d202b5da67
2020-07-02 13:22:28 -07:00

70 lines
1.6 KiB
Perl

#require py2
#chg-compatible
$ . "$TESTDIR/library.sh"
$ cat >> $HGRCPATH <<EOF
> [treemanifest]
> sendtrees=True
> [fastannotate]
> mainbranch=default
> modes=fctx
> EOF
Setup the server
$ hginit master
$ cd master
$ cat >> .hg/hgrc <<EOF
> [extensions]
> fastannotate=
> [treemanifest]
> server=True
> [remotefilelog]
> server=True
> shallowtrees=True
> [fastannotate]
> server=True
> EOF
Make local commits on the server
$ mkdir subdir
$ echo x >> subdir/x
$ hg commit -qAm 'add subdir/x'
$ echo x >> subdir/x
$ hg commit -qAm 'modify subdir/x'
$ echo x >> subdir/x
$ hg commit -qAm 'modify subdir/x 2'
$ echo x >> subdir/x
$ hg commit -qAm 'modify subdir/x 3'
Run blame on client
$ cd ..
$ hgcloneshallow ssh://user@dummy/master client -q
fetching tree '' 11a84bc431b8c59b792f10ed427e7a01fc1a6b75, found via 70b8370240f6
2 trees fetched over * (glob)
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over * (glob) (?)
$ cd client
$ cat >> .hg/hgrc <<EOF
> [extensions]
> fastannotate=
> [treemanifest]
> demanddownload=True
> [fastannotate]
> clientfetchthreshold=2
> EOF
$ clearcache
$ hg prefetch -r 'tip^::tip'
2 files fetched over 1 fetches - (2 misses, 0.00% hit ratio) over * (glob) (?)
fetching tree '' 90044db98b33ed191d9e056e2c2ec65ae7af8338, found via 70b8370240f6
2 trees fetched over 0.00s
fetching tree '' 11a84bc431b8c59b792f10ed427e7a01fc1a6b75, found via 70b8370240f6
2 trees fetched over 0.00s
- Verify no trees are downloaded
$ hg blame -r tip -u subdir/x --pager=off
test: x
test: x
test: x
test: x