sapling/eden/hg-server/tests/test-fb-hgext-remotefilelog-lfs-fetchpacks.t
Durham Goode 98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00

126 lines
2.9 KiB
Perl

#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
commit: 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