##// END OF EJS Templates
obsolescence: add test for the "branch replacement" logic during push, case A4...
Pierre-Yves David -
r31977:e4bd7162 default
parent child Browse files
Show More
@@ -0,0 +1,74 b''
1 ====================================
2 Testing head checking code: Case A-4
3 ====================================
4
5 Mercurial checks for the introduction of new heads on push. Evolution comes
6 into play to detect if existing branches on the server are being replaced by
7 some of the new one we push.
8
9 This case is part of a series of tests checking this behavior.
10
11 Category A: simple case involving a branch being superceeded by another.
12 TestCase 4: New changeset as children of the successor
13
14 .. old-state:
15 ..
16 .. * 1-changeset branch
17 ..
18 .. new-state:
19 ..
20 .. * 2-changeset branch, first is a successor, but head is new
21 ..
22 .. expected-result:
23 ..
24 .. * push allowed
25 ..
26 .. graph-summary:
27 ..
28 .. β—” B
29 .. |
30 .. A ΓΈβ‡ β—” A'
31 .. |/
32 .. ●
33
34 $ . $TESTDIR/testlib/push-checkheads-util.sh
35
36 Test setup
37 ----------
38
39 $ mkdir A4
40 $ cd A4
41 $ setuprepos
42 creating basic server and client repo
43 updating to branch default
44 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
45 $ cd client
46 $ hg up 0
47 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
48 $ mkcommit A1
49 created new head
50 $ hg debugobsolete `getid "desc(A0)" ` `getid "desc(A1)"`
51 $ mkcommit B0
52 $ hg log -G --hidden
53 @ f40ded968333 (draft): B0
54 |
55 o f6082bc4ffef (draft): A1
56 |
57 | x 8aaa48160adc (draft): A0
58 |/
59 o 1e4be0697311 (public): root
60
61
62 Actual testing
63 --------------
64
65 $ hg push
66 pushing to $TESTTMP/A4/server (glob)
67 searching for changes
68 adding changesets
69 adding manifests
70 adding file changes
71 added 2 changesets with 2 changes to 2 files (+1 heads)
72 1 new obsolescence markers
73
74 $ cd ../../
General Comments 0
You need to be logged in to leave comments. Login now