sapling/eden/hg-server/tests/test-fb-hgext-tweakdefaults-remotenames.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

127 lines
3.4 KiB
Perl

#chg-compatible
$ configure mutation-norecord
Set up
$ enable rebase remotenames tweakdefaults
$ hg init repo
$ echo a > repo/a
$ hg -R repo commit -qAm aa
$ hg -R repo bookmark one -i
$ echo b > repo/b
$ hg -R repo commit -qAm bb
$ hg -R repo bookmark two -i
$ echo c > repo/c
$ hg -R repo commit -qAm cc
$ hg -R repo bookmark three -i
$ hg clone -q repo clone
$ cd clone
Test that hg pull --rebase aborts without --dest
$ hg log -G --all -T '{node|short} {bookmarks} {remotenames}'
@ 083f922fc4a9 default/three
o 301d76bdc3ae default/two
o 8f0162e483d0 default/one
$ hg up -q default/one
$ touch foo
$ hg commit -qAm 'foo'
$ hg pull --rebase
abort: you must use a bookmark with tracking or manually specify a destination for the rebase
(set up tracking with `hg book <name> -t <destination>` or manually supply --dest / -d)
[255]
$ hg bookmark bm
$ hg pull --rebase
abort: you must use a bookmark with tracking or manually specify a destination for the rebase
(set up tracking with `hg book -t <destination>` or manually supply --dest / -d)
[255]
$ hg book bm -t default/two
$ hg pull --rebase
pulling from $TESTTMP/repo (glob)
searching for changes
no changes found
rebasing 3de6bbccf693 "foo" (bm)
$ hg pull --rebase --dest three
pulling from $TESTTMP/repo (glob)
searching for changes
no changes found
rebasing 54ac787ff1c5 "foo" (bm)
Test that hg pull --update aborts without --dest
$ hg pull --update
abort: you must specify a destination for the update
(use `hg pull --update --dest <destination>`)
[255]
$ hg pull --update --dest one
pulling from $TESTTMP/repo (glob)
searching for changes
no changes found
0 files updated, 0 files merged, 3 files removed, 0 files unresolved
(leaving bookmark bm)
Test that setting a defaultdest allows --update and --rebase to work
$ hg pull --update --config tweakdefaults.defaultdest=two
pulling from $TESTTMP/repo (glob)
searching for changes
no changes found
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg log -G --all -T '{node|short} {bookmarks} {remotenames}'
o 5413b62180b7 bm
o 083f922fc4a9 default/three
@ 301d76bdc3ae default/two
o 8f0162e483d0 default/one
$ echo d > d
$ hg commit -qAm d
$ hg pull --rebase --config tweakdefaults.defaultdest=three
pulling from $TESTTMP/repo (glob)
searching for changes
no changes found
rebasing 50f3f60b4841 "d"
$ hg log -G --all -T '{node|short} {bookmarks} {remotenames}'
@ ba0f83735c95
o 5413b62180b7 bm
o 083f922fc4a9 default/three
o 301d76bdc3ae default/two
o 8f0162e483d0 default/one
Test that hg pull --rebase also works with a --tool argument
$ echo d created at remote > ../repo/d
$ hg -R ../repo update three -q
$ hg -R ../repo commit -qAm 'remote d'
$ hg pull --rebase --dest three --tool internal:union
pulling from $TESTTMP/repo (glob)
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
rebasing ba0f83735c95 "d"
merging d
$ hg log -G --all -T '{node|short} {bookmarks} {remotenames}'
@ d6553cf01770
o e8aa3bc9f3f0 default/three
o 5413b62180b7 bm
o 083f922fc4a9
o 301d76bdc3ae default/two
o 8f0162e483d0 default/one
$ cat d
d created at remote
d