sapling/eden/hg-server/tests/test-hgsql-bundle2.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

135 lines
3.5 KiB
Perl

#chg-compatible
$ . "$TESTDIR/hgsql/library.sh"
$ disable treemanifest
# Populate the db with an initial commit
$ initclient client
$ cat >> client/.hg/hgrc <<EOF
> [experimental]
> bundle2-exp=True
> EOF
$ cd client
$ echo x > x
$ hg commit -qAm x
$ hg bookmark mybook
$ cd ..
$ initserver master masterrepo
$ cat >> master/.hg/hgrc <<EOF
> [experimental]
> bundle2-exp=True
> bundle2lazylocking=True
> EOF
$ cd master
$ hg log
$ hg pull -q ../client
$ cd ..
# Verify bookmarks are not synced if hook returns false
$ cp master/.hg/hgrc master/.hg/hgrc_good
$ cat >> master/.hg/hgrc <<EOF
> [hooks]
> pretxnclose.abort=false
> EOF
$ cd client
$ echo x >> x
$ hg commit -qm x2
$ hg push ssh://user@dummy/master
pushing to ssh://user@dummy/master
searching for changes
remote: pretxnclose.abort hook exited with status 1
remote: adding changesets
remote: adding manifests
remote: adding file changes
remote: added 1 changesets with 1 changes to 1 files
remote: transaction abort!
remote: rollback completed
abort: push failed on remote
[255]
$ mv ../master/.hg/hgrc_good ../master/.hg/hgrc
$ hg -R ../master bookmarks
mybook b292c1e3311f
$ cd ..
Test lazily acquiring the lock during unbundle
$ cat >> $TESTTMP/locktester.py <<EOF
> import os
> from edenscm.mercurial import extensions, bundle2, util
> def checklock(orig, repo, *args, **kwargs):
> if len(repo.heldlocks) > 0:
> raise util.Abort("Lock should not be taken")
> return orig(repo, *args, **kwargs)
> def extsetup(ui):
> extensions.wrapfunction(bundle2, 'processbundle', checklock)
> EOF
$ initserver lazylock lazylock
$ cat >> lazylock/.hg/hgrc <<EOF
> [extensions]
> locktester=$TESTTMP/locktester.py
> EOF
$ initclient lazylockclient
$ cd lazylockclient
$ touch a && hg ci -Aqm a
- Push with lazy locking off (hook fails)
$ hg push ssh://user@dummy/lazylock
pushing to ssh://user@dummy/lazylock
searching for changes
remote: Lock should not be taken
abort: push failed on remote
[255]
- Push with lazy locking on (hook passes)
$ cat >> ../lazylock/.hg/hgrc <<EOF
> [experimental]
> bundle2lazylocking=True
> EOF
$ hg push ssh://user@dummy/lazylock
pushing to ssh://user@dummy/lazylock
searching for changes
remote: adding changesets
remote: adding manifests
remote: adding file changes
remote: added 1 changesets with 1 changes to 1 files
$ cd ..
$ rm -rf master*
Test constructing a generaldelta repo
$ hg init --config format.generaldelta=1 gdclient
$ configureclient gdclient
$ cd gdclient
- Insert enough commits to cause the changelog to split to a .d
- This exposes a bug in generaldelta handling.
$ for i in {0..10} ; do
> for k in {0..20000} ; do echo $k$i >> ../logmessage ; done
> echo a >> a ; hg commit -Aql ../logmessage
> done
$ cd ..
$ hg init --config format.generaldelta=1 master1
$ hg init --config format.generaldelta=1 master2
$ configureserver master1 gdrepo
$ configureserver master2 gdrepo
$ hg -R gdclient push -q ssh://user@dummy/master1
$ cd master2
$ cat .hg/requires | grep generaldelta
generaldelta
- Verify the synced changelog is not generaldelta (has a base column)
- and the synced manifest is generaldelta (has a delta column).
$ hg debugindex -c | head -n 1
rev offset length base linkrev nodeid p1 p2
$ hg debugindex -m | head -n 1
rev offset length delta linkrev nodeid p1 p2