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

300 lines
4.4 KiB
Perl

#chg-compatible
$ enable rebase
Rebasing D onto B detaching from C (one commit):
$ hg init a1
$ cd a1
$ drawdag <<EOF
> D
> |
> C B
> |/
> A
> EOF
$ hg rebase -s $D -d $B
rebasing e7b3f00ed42e "D"
$ hg log -G --template "{phase} '{desc}' {branches}\n"
o draft 'D'
o draft 'C'
o draft 'B'
o draft 'A'
$ hg manifest --rev tip
A
B
D
$ cd ..
Rebasing D onto B detaching from C (two commits):
$ hg init a2
$ cd a2
$ drawdag <<EOF
> E
> |
> D
> |
> C B
> |/
> A
> EOF
$ hg rebase -s $D -d $B
rebasing e7b3f00ed42e "D"
rebasing 69a34c08022a "E"
$ tglog
o ee79e0744528 'E'
o 10530e1d72d9 'D'
o dc0947a82db8 'C'
o 112478962961 'B'
o 426bada5c675 'A'
$ hg manifest --rev tip
A
B
D
E
$ cd ..
Rebasing C onto B using detach (same as not using it):
$ hg init a3
$ cd a3
$ drawdag <<EOF
> D
> |
> C B
> |/
> A
> EOF
$ hg rebase -s $C -d $B
rebasing dc0947a82db8 "C"
rebasing e7b3f00ed42e "D"
$ tglog
o 7375f3dbfb0f 'D'
o bbfdd6cb49aa 'C'
o 112478962961 'B'
o 426bada5c675 'A'
$ hg manifest --rev tip
A
B
C
D
$ cd ..
Rebasing D onto B detaching from C and collapsing:
$ hg init a4
$ cd a4
$ drawdag <<EOF
> E
> |
> D
> |
> C B
> |/
> A
> EOF
$ hg rebase --collapse -s $D -d $B
rebasing e7b3f00ed42e "D"
rebasing 69a34c08022a "E"
$ hg log -G --template "{phase} '{desc}' {branches}\n"
o draft 'Collapsed revision
│ * D
│ * E'
o draft 'C'
o draft 'B'
o draft 'A'
$ hg manifest --rev tip
A
B
D
E
$ cd ..
Rebasing across null as ancestor
$ hg init a5
$ cd a5
$ drawdag <<EOF
> E
> |
> D
> |
> C
> |
> A B
> EOF
$ hg rebase -s $C -d $B
rebasing dc0947a82db8 "C"
rebasing e7b3f00ed42e "D"
rebasing 69a34c08022a "E"
$ tglog
o e3d0c70d606d 'E'
o e9153d36a1af 'D'
o a7ac28b870a8 'C'
o fc2b737bb2e5 'B'
o 426bada5c675 'A'
$ hg rebase -d 'desc(B)' -s 'desc(D)'
rebasing e9153d36a1af "D"
rebasing e3d0c70d606d "E"
$ tglog
o 2c24e540eccd 'E'
o 73f786ed52ff 'D'
o a7ac28b870a8 'C'
o fc2b737bb2e5 'B'
o 426bada5c675 'A'
$ cd ..
Verify that target is not selected as external rev (issue3085)
$ hg init a6
$ cd a6
$ drawdag <<EOF
> H
> | G
> |/|
> F E
> |/
> A
> EOF
$ hg up -q $G
$ echo "I" >> E
$ hg ci -m "I"
$ export I=$(hg log -r . -T "{node}")
$ hg merge $H
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg ci -m "Merge"
$ echo "J" >> F
$ hg ci -m "J"
$ tglog
@ c6aaf0d259c0 'J'
o 0cfbc7e8faaf 'Merge'
├─╮
│ o b92d164ad3cb 'I'
│ │
o │ 4ea5b230dea3 'H'
│ │
│ o c6001eacfde5 'G'
╭─┤
o │ 8908a377a434 'F'
│ │
│ o 7fb047a69f22 'E'
├─╯
o 426bada5c675 'A'
$ hg rebase -s $I -d $H --collapse --config ui.merge=internal:other
rebasing b92d164ad3cb "I"
rebasing 0cfbc7e8faaf "Merge"
rebasing c6aaf0d259c0 "J"
$ tglog
@ 65079693dac4 'Collapsed revision
* I
* Merge
* J'
o 4ea5b230dea3 'H'
│ o c6001eacfde5 'G'
╭─┤
o │ 8908a377a434 'F'
│ │
│ o 7fb047a69f22 'E'
├─╯
o 426bada5c675 'A'
$ hg log --rev tip
commit: 65079693dac4
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: Collapsed revision
$ cd ..
Ensure --continue restores a correct state (issue3046) and phase:
$ hg init a7
$ cd a7
$ drawdag <<EOF
> C B
> |/
> A
> EOF
$ hg up -q $C
$ echo 'B2' > B
$ hg ci -A -m 'B2'
adding B
$ hg rebase -s . -d $B --config ui.merge=internal:fail
rebasing 17b4880d2402 "B2"
merging B
warning: 1 conflicts while merging B! (edit, then use 'hg resolve --mark')
unresolved conflicts (see hg resolve, then hg rebase --continue)
[1]
$ hg resolve --all -t internal:local
(no more unresolved files)
continue: hg rebase --continue
$ hg rebase -c
rebasing 17b4880d2402 "B2"
note: rebase of 17b4880d2402 created no changes to commit
$ hg log -G --template "{phase} '{desc}' {branches}\n"
o draft 'C'
│ @ draft 'B'
├─╯
o draft 'A'
$ cd ..