comparison tests/test-remotefilelog-wireproto.t @ 40495:3a333a582d7b

remotefilelog: import pruned-down remotefilelog extension from hg-experimental This is remotefilelog as of my recent patches for compatibility with current tip of hg, minus support for old versions of Mercurial and some FB-specific features like their treemanifest extension and fetching linkrev data from a patched phabricator. The file extutil.py moved from hgext3rd to remotefilelog. This is not yet ready to be landed, consider it a preview for now. Planned changes include: * replace lz4 with zstd * rename some capabilities, requirements and wireproto commands to mark them as experimental * consolidate bits of shallowutil with related functions (eg readfile) I'm certainly open to other (small) changes, but my rough mission is to land this largely as-is so we can use it as a model of the functionality we need going forward for lazy-fetching of file contents from a server. # no-check-commit because of a few foo_bar functions Differential Revision: https://phab.mercurial-scm.org/D4782
author Augie Fackler <augie@google.com>
date Thu, 27 Sep 2018 13:03:19 -0400
parents
children 95a079ea1e19
comparison
equal deleted inserted replaced
40494:9aeb9e2d28a7 40495:3a333a582d7b
1 $ PYTHONPATH=$TESTDIR/..:$PYTHONPATH
2 $ export PYTHONPATH
3
4 $ . "$TESTDIR/remotefilelog-library.sh"
5
6 $ hginit master
7 $ cd master
8 $ cat >> .hg/hgrc <<EOF
9 > [remotefilelog]
10 > server=True
11 > EOF
12 $ echo x > x
13 $ hg commit -qAm x
14 $ echo y >> x
15 $ hg commit -qAm y
16 $ echo z >> x
17 $ hg commit -qAm z
18 $ hg update 1
19 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
20 $ echo w >> x
21 $ hg commit -qAm w
22
23 $ cd ..
24
25 Shallow clone and activate getflogheads testing extension
26
27 $ hgcloneshallow ssh://user@dummy/master shallow --noupdate
28 streaming all changes
29 2 files to transfer, 908 bytes of data
30 transferred 908 bytes in * seconds (*/sec) (glob)
31 searching for changes
32 no changes found
33 $ cd shallow
34
35 $ cat >> .hg/hgrc <<EOF
36 > [extensions]
37 > getflogheads=$TESTDIR/remotefilelog-getflogheads.py
38 > EOF
39
40 Get heads of a remotefilelog
41
42 $ hg getflogheads x
43 2797809ca5e9c2f307d82b1345e832f655fb99a2
44 ca758b402ddc91e37e3113e1a97791b537e1b7bb
45
46 Get heads of a non-existing remotefilelog
47
48 $ hg getflogheads y
49 EMPTY