sapling/tests/test-fb-hgext-treemanifest-blame.t
Jun Wu 1cde63d99c codemod: drop hacks changing PYTHONPATH in tests
Summary:
Now they are unnecessary since `run-tests.py` will set up `PYTONPATH`
correctly.

Differential Revision: D6865042

fbshipit-source-id: ca95314f725968e14349a9d916434aa832c596f9
2018-04-13 21:51:00 -07:00

68 lines
1.4 KiB
Perl

$ . "$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=
> [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
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over * (glob)
$ cd client
$ cat >> .hg/hgrc <<EOF
> [extensions]
> fastannotate=
> fastmanifest=
> treemanifest=
> [fastmanifest]
> usecache=False
> usetree=True
> [treemanifest]
> demanddownload=True
> [fastannotate]
> clientfetchthreshold=2
> EOF
$ clearcache
$ hg prefetch -r 'tip^::tip'
4 trees fetched over * (glob)
2 files fetched over 1 fetches - (2 misses, 0.00% hit ratio) over * (glob)
- Verify no trees are downloaded
$ hg blame -r tip -u subdir/x --pager=off
test: x
test: x
test: x
test: x