sapling/tests/test-fb-hgext-treemanifest-blame.t
Durham Goode 0fbed23c0d treemanifest: move treemanifest tests to tests/
Summary:
Now that fastmanifest and treemanifest are moved, we can moved the
tests.

Test Plan: make local && ./run-tests.py

Reviewers: singhsrb, #mercurial

Reviewed By: singhsrb

Subscribers: singhsrb

Differential Revision: https://phabricator.intern.facebook.com/D6685334

Signature: 6685334:1515526455:57791d7f9d2a3f2a6119c0e79a81b31e63a11c60
2018-01-09 12:59:00 -08:00

70 lines
1.4 KiB
Raku

$ . "$TESTDIR/library.sh"
$ PYTHONPATH=$TESTDIR/..:$PYTHONPATH
$ export PYTHONPATH
$ 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