sapling/eden/scm/tests/test-fb-hgext-remotefilelog-lfs-fetchpacks.t
Jun Wu 219554305e clone: add a new clone function with less tech-debt
Summary:
The current `clone --shallow` command has some issues:
- It fetches *all* remote bookmarks, since selectivepull does not work with
  streamclone, then remove most remote bookmarks in a second transaction.
- It goes through remotenames, which is racy, and D20703268 does not fix the
  clone case. Possible cause of T65349853.
- Too many wrappers (ex. in remotefilelog, remotenames, fastdiscovery) wtih
  many configurations (ex. narrow-heads on/off) makes it hard to reason about.

Instead of bandaidding the clone function, this diff adds a new clone implementation
that aims to solve the issues:
- Use streamclone, but do not pull all remote names.
- Pull selectivepull names explicitly with a working "discovery" strategy
  (repo heads should be non-empty with narrow-heads on or off).
- Do clone in one transaction. Outside world won't see an incomplete state.
- Use `repo.pull` API, which is not subject to race conditions.
- Eventually, this might be the only supported "clone" after Mononoke becoming
  the single source of truth.

Note: the code path still goes through bookmarks.py and remotenames.py.
They will be cleaned up in upcoming diffs.

Reviewed By: DurhamG

Differential Revision: D21011401

fbshipit-source-id: d8751ac9bd643e9661e58c87b683be285f0dc925
2020-05-12 10:23:23 -07:00

127 lines
2.9 KiB
Perl

#require py2
#chg-compatible
$ disable treemanifest
$ setconfig remotenames.selectivepull=1
$ . "$TESTDIR/library.sh"
$ cat >> $HGRCPATH << EOF
> [extensions]
> lfs=
> [lfs]
> threshold=10B
> EOF
$ hg init master
$ cd master
$ cat >> .hg/hgrc <<EOF
> [remotefilelog]
> server=True
> EOF
$ cd ..
# Push an LFS blob to the server.
$ hgcloneshallow ssh://user@dummy/master push --noupdate
fetching changelog
0 files to transfer, 0 bytes of data
transferred 0 bytes in * seconds (*/sec) (glob)
fetching selected remote bookmarks
$ cd push
$ cat >> .hg/hgrc <<EOF
> [remotefilelog]
> fetchpacks=True
> backgroundrepack=True
> getpackversion=1
> [lfs]
> url=file:$TESTTMP/dummy-remote/
> EOF
$ echo THIS-IS-LFS-FILE > x
$ hg commit -qAm x-lfs
$ hg push -q
$ cd ..
$ rm -rf push
$ clearcache
$ find $TESTTMP/dummy-remote | sort
$TESTTMP/dummy-remote
$TESTTMP/dummy-remote/80
$TESTTMP/dummy-remote/80/2935f5411aa569948cd326115b3521107250019b5dbadf0f6ab2aa2d1e4639
$ hgcloneshallow ssh://user@dummy/master shallowv1 --noupdate
fetching changelog
3 files to transfer, * of data (glob)
transferred 231 bytes in * seconds (*/sec) (glob)
fetching selected remote bookmarks
$ cd shallowv1
$ cat >> .hg/hgrc <<EOF
> [remotefilelog]
> fetchpacks=True
> backgroundrepack=True
> getpackversion=1
> [lfs]
> url=file:$TESTTMP/dummy-remote/
> EOF
# With getpackv1, fetching the LFS blobs fails.
$ hg update
remote: abort: lfs.url needs to be configured
abort: stream ended unexpectedly (got 0 bytes, expected 2)
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over 0.00s (?)
[255]
$ cd ..
$ rm -rf shallowv1
$ clearcache
$ hgcloneshallow ssh://user@dummy/master shallowv2 --noupdate
fetching changelog
3 files to transfer, * of data (glob)
transferred 231 bytes in * seconds (*/sec) (glob)
fetching selected remote bookmarks
$ cd shallowv2
$ cat >> .hg/hgrc <<EOF
> [remotefilelog]
> fetchpacks=True
> backgroundrepack=True
> getpackversion=2
> [lfs]
> url=file:$TESTTMP/dummy-remote/
> EOF
# With getpackv2, fetching the LFS blob succeed.
$ hg update
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over 0.00s (?)
$ hg debugfilerev -v
0d2948821b2b: x-lfs
x: bin=0 lnk=0 flag=2000 size=17 copied='' chain=1ff4e6c9b276
rawdata: 'version https://git-lfs.github.com/spec/v1\noid sha256:802935f5411aa569948cd326115b3521107250019b5dbadf0f6ab2aa2d1e4639\nsize 17\nx-is-binary 0\n'
$ hg show
changeset: 0:0d2948821b2b
user: test
date: Thu Jan 01 00:00:00 1970 +0000
files: x
description:
x-lfs
diff -r 000000000000 -r 0d2948821b2b x
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x Thu Jan 01 00:00:00 1970 +0000
@@ -0,0 +1,1 @@
+THIS-IS-LFS-FILE