##// END OF EJS Templates
revlog: subclass the new `repository.iverifyproblem` Protocol class...
revlog: subclass the new `repository.iverifyproblem` Protocol class This is the same transformation as 3a90a6fd710d did for dirstate, but the CamelCase naming was already cleaned up here. We shouldn't have to explicitly subclass, but I'm doing so to test the interplay of regular attributes and the `attrs` class. Also, PyCharm has a nifty feature that puts a jump point in the gutter to navigate back and forth between the base class and subclasses (and override functions and base class functions) when there's an explicit subclassing. Additionally, PyCharm will immediately flag signature mismatches without a 40m pytype run.

File last commit:

r50516:55c6ebd1 stable
r53365:4ef6dbc2 default
Show More
test-merge-default.t
191 lines | 4.7 KiB | text/troff | Tads3Lexer
/ tests / test-merge-default.t
Arseniy Alekseyev
tests: run many tests in $TESTTMP/repo instead of $TESTTMP...
r50516 $ hg init repo
$ cd repo
Adrian Buehlmann
tests: unify test-merge-default
r12255 $ echo a > a
$ hg commit -A -ma
adding a
$ echo b >> a
$ hg commit -mb
$ echo c >> a
$ hg commit -mc
$ hg up 1
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo d >> a
$ hg commit -md
created new head
$ hg up 1
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo e >> a
$ hg commit -me
created new head
$ hg up 1
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Should fail because not at a head:
$ hg merge
Pierre-Yves David
merge: give priority to "not at head" failures for bare 'hg merge'...
r28103 abort: working directory not at a head revision
(use 'hg update' or merge with an explicit revision)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-merge-default
r12255
$ hg up
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Pulkit Goyal
update: show the commit to which we updated in case of multiple heads (BC)...
r32698 updated to "f25cbe84d8b3: e"
Pierre-Yves David
update: warn about other topological heads on bare update...
r28029 2 other heads for branch "default"
Adrian Buehlmann
tests: unify test-merge-default
r12255
Should fail because > 2 heads:
$ HGMERGE=internal:other; export HGMERGE
$ hg merge
abort: branch 'default' has 3 heads - please merge with an explicit rev
Kyle Lippincott
destutil: provide hint on rebase+merge for how to specify destination/rev...
r43384 (run 'hg heads .' to see heads, specify rev with -r)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-merge-default
r12255
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325 Should succeed (we're specifying commands.merge.require-rev=True just to test
that it allows merge to succeed if we specify a revision):
Adrian Buehlmann
tests: unify test-merge-default
r12255
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325 $ hg merge 2 --config commands.merge.require-rev=True
Adrian Buehlmann
tests: unify test-merge-default
r12255 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
Matt Harbison
identify: add template support...
r33051 $ hg id -Tjson
[
{
"bookmarks": [],
"branch": "default",
Matt Harbison
identify: rename 'changed' keyword -> 'dirty'...
r33054 "dirty": "+",
Yuya Nishihara
identify: use fm.hexfunc thoroughly...
r39661 "id": "f25cbe84d8b320e298e7703f18a25a3959518c23+2d95304fed5d89bc9d70b2a0d02f0d567469c3ab+",
Matt Harbison
identify: add template support...
r33051 "node": "ffffffffffffffffffffffffffffffffffffffff",
Yuya Nishihara
identify: change {parents} to a list of nodes (BC)...
r39662 "parents": ["f25cbe84d8b320e298e7703f18a25a3959518c23", "2d95304fed5d89bc9d70b2a0d02f0d567469c3ab"],
Matt Harbison
identify: add template support...
r33051 "tags": ["tip"]
}
]
Adrian Buehlmann
tests: unify test-merge-default
r12255 $ hg commit -mm1
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325 Should fail because we didn't specify a revision (even though it would have
succeeded without this):
$ hg merge --config commands.merge.require-rev=True
abort: configuration requires specifying revision to merge with
Martin von Zweigbergk
errors: introduce InputError and use it from commands and cmdutil...
r46431 [10]
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325
Adrian Buehlmann
tests: unify test-merge-default
r12255 Should succeed - 2 heads:
$ hg merge -P
changeset: 3:ea9ff125ff88
parent: 1:1846eede8b68
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: d
$ hg merge
0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)
$ hg commit -mm2
Matt Harbison
identify: add template support...
r33051 $ hg id -r 1 -Tjson
[
{
"bookmarks": [],
"branch": "default",
Yuya Nishihara
identify: use fm.hexfunc thoroughly...
r39661 "id": "1846eede8b6886d8cc8a88c96a687b7fe8f3b9d1",
Matt Harbison
identify: add template support...
r33051 "node": "1846eede8b6886d8cc8a88c96a687b7fe8f3b9d1",
"tags": []
}
]
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325 Should fail because we didn't specify a revision (even though it would have
failed without this due to being on tip, but this check comes first):
$ hg merge --config commands.merge.require-rev=True
abort: configuration requires specifying revision to merge with
Martin von Zweigbergk
errors: introduce InputError and use it from commands and cmdutil...
r46431 [10]
Kyle Lippincott
merge: add commands.merge.require-rev to require an argument to hg merge...
r44325
Adrian Buehlmann
tests: unify test-merge-default
r12255 Should fail because at tip:
$ hg merge
Kevin Bullock
merge: make 'nothing to merge' aborts consistent...
r15619 abort: nothing to merge
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-merge-default
r12255
$ hg up 0
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
Should fail because there is only one head:
$ hg merge
Kevin Bullock
merge: make 'nothing to merge' aborts consistent...
r15619 abort: nothing to merge
(use 'hg update' instead)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-merge-default
r12255
$ hg up 3
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo f >> a
$ hg branch foobranch
marked working directory as branch foobranch
Matt Mackall
branch: warn on branching
r15615 (branches are permanent and global, did you want a bookmark?)
Adrian Buehlmann
tests: unify test-merge-default
r12255 $ hg commit -mf
Should fail because merge with other branch:
$ hg merge
abort: branch 'foobranch' has one head - please merge with an explicit rev
Kyle Lippincott
destutil: provide hint on rebase+merge for how to specify destination/rev...
r43384 (run 'hg heads' to see all heads, specify rev with -r)
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
tests: unify test-merge-default
r12255
Test for issue2043: ensure that 'merge -P' shows ancestors of 6 that
Mads Kiilerich
comments: describe ancestor consistently - avoid 'least common ancestor'...
r22389 are not ancestors of 7, regardless of where their common ancestors are.
Adrian Buehlmann
tests: unify test-merge-default
r12255
Merge preview not affected by common ancestor:
$ hg up -q 7
$ hg merge -q -P 6
2:2d95304fed5d
4:f25cbe84d8b3
5:a431fabd6039
6:e88e33f3bf62
Pierre-Yves David
revset: rename and test '_destmerge'...
r26716 Test experimental destination revset
$ hg log -r '_destmerge()'
abort: branch 'foobranch' has one head - please merge with an explicit rev
Kyle Lippincott
destutil: provide hint on rebase+merge for how to specify destination/rev...
r43384 (run 'hg heads' to see all heads, specify rev with -r)
Pierre-Yves David
revset: rename and test '_destmerge'...
r26716 [255]
Pierre-Yves David
destutil: allow to specify an explicit source for the merge...
r28139 (on a branch with a two heads)
$ hg up 5
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ echo f >> a
$ hg commit -mf
created new head
$ hg log -r '_destmerge()'
changeset: 6:e88e33f3bf62
parent: 5:a431fabd6039
parent: 3:ea9ff125ff88
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: m2
(from the other head)
$ hg log -r '_destmerge(e88e33f3bf62)'
changeset: 8:b613918999e2
tag: tip
parent: 5:a431fabd6039
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: f
(from unrelated branch)
$ hg log -r '_destmerge(foobranch)'
abort: branch 'foobranch' has one head - please merge with an explicit rev
Kyle Lippincott
destutil: provide hint on rebase+merge for how to specify destination/rev...
r43384 (run 'hg heads' to see all heads, specify rev with -r)
Pierre-Yves David
destutil: allow to specify an explicit source for the merge...
r28139 [255]