##// END OF EJS Templates
transplant: use "ui.extractchoices()" to show the list of available responses...
transplant: use "ui.extractchoices()" to show the list of available responses Before this patch, transplant extension shows the list of available responses by specific string, even though the prompt string passed to "ui.promptchoice()" has enough (maybe i18n-ed) information. This patch uses "ui.extractchoices()" to show the list of available responses.

File last commit:

r20117:aa9385f9 default
r20269:acb6ccea default
Show More
test-update-branches.t
244 lines | 6.0 KiB | text/troff | Tads3Lexer
/ tests / test-update-branches.t
Adrian Buehlmann
combine tests
r12279 # Construct the following history tree:
#
# @ 5:e1bb631146ca b1
# |
# o 4:a4fdb3b883c4 0:b608b9236435 b1
# |
# | o 3:4b57d2520816 1:44592833ba9f
# | |
# | | o 2:063f31070f65
# | |/
# | o 1:44592833ba9f
# |/
# o 0:b608b9236435
Siddharth Agarwal
commands: don't infer repo for commands like update (issue2748)...
r17773 $ mkdir b1
$ cd b1
Adrian Buehlmann
combine tests
r12279 $ hg init
$ echo foo > foo
$ echo zero > a
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 $ hg init sub
$ echo suba > sub/suba
$ hg --cwd sub ci -Am addsuba
adding suba
$ echo 'sub = sub' > .hgsub
Adrian Buehlmann
combine tests
r12279 $ hg ci -qAm0
$ echo one > a ; hg ci -m1
$ echo two > a ; hg ci -m2
$ hg up -q 1
$ echo three > a ; hg ci -qm3
$ hg up -q 0
$ hg branch -q b1
$ echo four > a ; hg ci -qm4
$ echo five > a ; hg ci -qm5
Initial repo state:
Martin Geisler
tests: don't load unnecessary graphlog extension...
r20117 $ hg log -G --template '{rev}:{node|short} {parents} {branches}\n'
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 @ 5:ff252e8273df b1
Adrian Buehlmann
combine tests
r12279 |
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 o 4:d047485b3896 0:60829823a42a b1
Adrian Buehlmann
combine tests
r12279 |
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 | o 3:6efa171f091b 1:0786582aa4b1
Adrian Buehlmann
combine tests
r12279 | |
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 | | o 2:bd10386d478c
Adrian Buehlmann
combine tests
r12279 | |/
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 | o 1:0786582aa4b1
Adrian Buehlmann
combine tests
r12279 |/
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 o 0:60829823a42a
Adrian Buehlmann
combine tests
r12279
Siddharth Agarwal
commands: don't infer repo for commands like update (issue2748)...
r17773 Make sure update doesn't assume b1 is a repository if invoked from outside:
$ cd ..
$ hg update b1
abort: no repository found in '$TESTTMP' (.hg not found)!
[255]
$ cd b1
Adrian Buehlmann
combine tests
r12279 Test helper functions:
$ revtest () {
> msg=$1
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > dirtyflag=$2 # 'clean', 'dirty' or 'dirtysub'
Adrian Buehlmann
combine tests
r12279 > startrev=$3
> targetrev=$4
> opt=$5
> hg up -qC $startrev
> test $dirtyflag = dirty && echo dirty > foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > test $dirtyflag = dirtysub && echo dirty > sub/suba
Adrian Buehlmann
combine tests
r12279 > hg up $opt $targetrev
> hg parent --template 'parent={rev}\n'
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > hg stat -S
Mads Kiilerich
check-code: fix check for trailing whitespace on continued lines too...
r17347 > }
Adrian Buehlmann
combine tests
r12279
$ norevtest () {
> msg=$1
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > dirtyflag=$2 # 'clean', 'dirty' or 'dirtysub'
Adrian Buehlmann
combine tests
r12279 > startrev=$3
> opt=$4
> hg up -qC $startrev
> test $dirtyflag = dirty && echo dirty > foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > test $dirtyflag = dirtysub && echo dirty > sub/suba
Adrian Buehlmann
combine tests
r12279 > hg up $opt
> hg parent --template 'parent={rev}\n'
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 > hg stat -S
Mads Kiilerich
check-code: fix check for trailing whitespace on continued lines too...
r17347 > }
Adrian Buehlmann
combine tests
r12279
Matt Mackall
tests: fix a bunch of pointless #s in unified tests
r12328 Test cases are documented in a table in the update function of merge.py.
Cases are run as shown in that table, row by row.
Adrian Buehlmann
combine tests
r12279
$ norevtest 'none clean linear' clean 4
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=5
$ norevtest 'none clean same' clean 2
Siddharth Agarwal
update: improve error message for clean non-linear update
r19798 abort: not a linear update
(merge or update --check to force update)
Adrian Buehlmann
combine tests
r12279 parent=2
$ revtest 'none clean linear' clean 1 2
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=2
$ revtest 'none clean same' clean 2 3
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=3
$ revtest 'none clean cross' clean 3 4
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=4
$ revtest 'none dirty linear' dirty 1 2
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=2
M foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 $ revtest 'none dirtysub linear' dirtysub 1 2
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=2
M sub/suba
Adrian Buehlmann
combine tests
r12279 $ revtest 'none dirty same' dirty 2 3
Siddharth Agarwal
update: add error message for dirty non-linear update with no rev...
r19799 abort: uncommitted changes
(commit or update --clean to discard changes)
Adrian Buehlmann
combine tests
r12279 parent=2
M foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 $ revtest 'none dirtysub same' dirtysub 2 3
Siddharth Agarwal
update: add error message for dirty non-linear update with no rev...
r19799 abort: uncommitted changes
(commit or update --clean to discard changes)
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 parent=2
M sub/suba
Adrian Buehlmann
combine tests
r12279 $ revtest 'none dirty cross' dirty 3 4
Siddharth Agarwal
update: add error message for dirty non-linear update with no rev...
r19799 abort: uncommitted changes
(commit or update --clean to discard changes)
Adrian Buehlmann
combine tests
r12279 parent=3
M foo
Siddharth Agarwal
update: improve error message for dirty non-linear update with rev
r19800 $ norevtest 'none dirty cross' dirty 2
abort: uncommitted changes
(commit and merge, or update --clean to discard changes)
parent=2
M foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 $ revtest 'none dirtysub cross' dirtysub 3 4
Siddharth Agarwal
update: add error message for dirty non-linear update with no rev...
r19799 abort: uncommitted changes
(commit or update --clean to discard changes)
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 parent=3
M sub/suba
Adrian Buehlmann
combine tests
r12279
$ revtest '-C dirty linear' dirty 1 2 -C
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=2
$ revtest '-c dirty linear' dirty 1 2 -c
Siddharth Agarwal
update: standardize error message for dirty update --check...
r19801 abort: uncommitted changes
Adrian Buehlmann
combine tests
r12279 parent=1
M foo
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 $ revtest '-c dirtysub linear' dirtysub 1 2 -c
Siddharth Agarwal
update: standardize error message for dirty update --check...
r19801 abort: uncommitted changes
Patrick Mezard
update: make --check abort with dirty subrepos...
r16491 parent=1
M sub/suba
Adrian Buehlmann
combine tests
r12279 $ norevtest '-c clean same' clean 2 -c
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=3
$ revtest '-cC dirty linear' dirty 1 2 -cC
abort: cannot specify both -c/--check and -C/--clean
parent=1
M foo
Pierre-Yves David
update: allow dirty update to foreground (successors)...
r18985 Test obsolescence behavior
---------------------------------------------------------------------
successors should be taken in account when checking head destination
$ cat << EOF >> $HGRCPATH
> [extensions]
> obs=$TESTTMP/obs.py
> [ui]
> logtemplate={rev}:{node|short} {desc|firstline}
> EOF
$ cat > $TESTTMP/obs.py << EOF
> import mercurial.obsolete
> mercurial.obsolete._enabled = True
> EOF
Test no-argument update to a successor of an obsoleted changeset
$ hg log -G
o 5:ff252e8273df 5
|
o 4:d047485b3896 4
|
| o 3:6efa171f091b 3
| |
| | o 2:bd10386d478c 2
| |/
| @ 1:0786582aa4b1 1
|/
o 0:60829823a42a 0
Sean Farley
bookmarks: consider successor changesets when moving bookmark (issue4015)...
r20107 $ hg book bm -r 3
Pierre-Yves David
update: allow dirty update to foreground (successors)...
r18985 $ hg status
M foo
We add simple obsolescence marker between 3 and 4 (indirect successors)
$ hg id --debug -i -r 3
6efa171f091b00a3c35edc15d48c52a498929953
$ hg id --debug -i -r 4
d047485b3896813b2a624e86201983520f003206
$ hg debugobsolete 6efa171f091b00a3c35edc15d48c52a498929953 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
$ hg debugobsolete aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa d047485b3896813b2a624e86201983520f003206
Sean Farley
bookmarks: consider successor changesets when moving bookmark (issue4015)...
r20107 Test that 5 is detected as a valid destination from 3 and also accepts moving
the bookmark (issue4015)
Pierre-Yves David
update: allow dirty update to foreground (successors)...
r18985 $ hg up --quiet --hidden 3
$ hg up 5
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Sean Farley
bookmarks: consider successor changesets when moving bookmark (issue4015)...
r20107 $ hg book bm
moving bookmark 'bm' forward from 6efa171f091b
$ hg bookmarks
* bm 5:ff252e8273df
Pierre-Yves David
update: allow dirty update to foreground (successors)...
r18985
Test that 5 is detected as a valid destination from 1
$ hg up --quiet 0 # we should be able to update to 3 directly
$ hg up --quiet --hidden 3 # but not implemented yet.
$ hg up 5
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Test that 5 is not detected as a valid destination from 2
$ hg up --quiet 0
$ hg up --quiet 2
$ hg up 5
Siddharth Agarwal
update: add error message for dirty non-linear update with no rev...
r19799 abort: uncommitted changes
(commit or update --clean to discard changes)
Pierre-Yves David
update: allow dirty update to foreground (successors)...
r18985 [255]