Mercurial > hg
comparison tests/test-merge-combination.t @ 42619:20d0e59be79b
tests: show the files fields of changelogs for many merges
I don't think there's coverage for many of the subtle cases, and I
found it hard to understand what the code is doing by reading it. The
test takes 40s to run on a laptop, or 9s with --chg.
I have yet to find a description of what the files field is supposed
to be for merges. I thought it could be one of:
1. the files added/modified/removed relative to p1 (wouldn't seem
useful, but `hg diff -c -r mergerev` has this behavior)
2. the files with filelog nodes not in either parent (i.e., what is
needed to create a bundle out of a commit)
3. the files added/removed/modified files by merge itself [1]
It's clearly not 1, because file contents merges are symmetric. It's
clearly not 2 because removed files and exec bit changes are
listed. It's also not 3 but I think it's intended to be 3 and the
differences are bugs.
Assuming 3, the test shows that, for merges, the list of files both
overapproximates and underapproximates. All the cases involve file
changes not in the filelog but in the manifest (existence of file
at revision, exec bit and file vs symlink).
I didn't look at all underapproximations, but they looked minor. The
two overapproximations are problematic though because they both cause
potentially long lists of files when merging cleanly.
[1] even what it means for the merge commit itself to change a file is
not completely trivial. A file in the merge being the same as in one
of the parent is too lax as it would consider that merges change
nothing when they revert all the changes done on one side. The
criteria used in the test and in the next commit for "merge didn't
touch a file" is:
- the parents and the merge all have the same file
- or, one parent didn't touch the file and the other parent contains
the same file as the merge
Differential Revision: https://phab.mercurial-scm.org/D6612
author | Valentin Gatien-Baron <valentin.gatienbaron@gmail.com> |
---|---|
date | Tue, 02 Jul 2019 12:55:51 -0400 |
parents | |
children | 99ebde4fec99 |
comparison
equal
deleted
inserted
replaced
42618:c17e6a3e7356 | 42619:20d0e59be79b |
---|---|
1 This file shows what hg says are "modified" files for a merge commit | |
2 (hg log -T {files}), somewhat exhaustively. | |
3 It shows merges that involves files contents changing, and merges that | |
4 involve executable bit changing, but not merges with multiple or zero | |
5 merge ancestors, nor copies/renames, and nor identical file contents | |
6 with different filelog revisions. | |
7 | |
8 genmerges is the workhorse. Given: | |
9 - a range function describing the possible values for file a | |
10 - a isgood function to filter out uninteresting combination | |
11 - a createfile function to actually write the values for file a on the | |
12 filesystem | |
13 it print a series of lines that look like: abcd C: output of -T {files} | |
14 describing the file a at respectively the base, p2, p1, merge | |
15 revision. "C" indicates that hg merge had conflicts. | |
16 $ genmerges () { | |
17 > for base in `range` -; do | |
18 > for r1 in `range $base` -; do | |
19 > for r2 in `range $base $r1` -; do | |
20 > for m in `range $base $r1 $r2` -; do | |
21 > line="$base$r1$r2$m" | |
22 > isgood $line || continue | |
23 > hg init repo | |
24 > cd repo | |
25 > make_commit () { | |
26 > v=$1; msg=$2; file=$3; | |
27 > if [ $v != - ]; then | |
28 > createfile $v | |
29 > else | |
30 > if [ -f a ] | |
31 > then rm a | |
32 > else touch $file | |
33 > fi | |
34 > fi | |
35 > hg commit -q -Am $msg || exit 123 | |
36 > } | |
37 > echo foo > foo | |
38 > make_commit $base base b | |
39 > make_commit $r1 r1 c | |
40 > hg up -r 0 -q | |
41 > make_commit $r2 r2 d | |
42 > hg merge -q -r 1 > ../output 2>&1 | |
43 > if [ $? -ne 0 ]; then rm -f *.orig; hg resolve -m --all -q; fi | |
44 > if [ -s ../output ]; then conflicts=" C"; else conflicts=" "; fi | |
45 > make_commit $m m e | |
46 > if [ $m = $r1 ] && [ $m = $r2 ] | |
47 > then expected= | |
48 > elif [ $m = $r1 ] | |
49 > then if [ $base = $r2 ] | |
50 > then expected= | |
51 > else expected=a | |
52 > fi | |
53 > elif [ $m = $r2 ] | |
54 > then if [ $base = $r1 ] | |
55 > then expected= | |
56 > else expected=a | |
57 > fi | |
58 > else expected=a | |
59 > fi | |
60 > got=`hg log -r 3 --template '{files}\n' | tr --delete 'e '` | |
61 > if [ "$got" = "$expected" ] | |
62 > then echo "$line$conflicts: agree on \"$got\"" | |
63 > else echo "$line$conflicts: hg said \"$got\", expected \"$expected\"" | |
64 > fi | |
65 > cd ../ | |
66 > rm -rf repo | |
67 > done | |
68 > done | |
69 > done | |
70 > done | |
71 > } | |
72 | |
73 All the merges of various file contents. | |
74 | |
75 $ range () { | |
76 > max=0 | |
77 > for i in $@; do | |
78 > if [ $i = - ]; then continue; fi | |
79 > if [ $i -gt $max ]; then max=$i; fi | |
80 > done | |
81 > $TESTDIR/seq.py `expr $max + 1` | |
82 > } | |
83 $ isgood () { true; } | |
84 $ createfile () { | |
85 > if [ -f a ] && [ "`cat a`" = $1 ] | |
86 > then touch $file | |
87 > else echo $v > a | |
88 > fi | |
89 > } | |
90 | |
91 $ genmerges | |
92 1111 : agree on "" | |
93 1112 : agree on "a" | |
94 111- : agree on "a" | |
95 1121 : agree on "a" | |
96 1122 : agree on "" | |
97 1123 : agree on "a" | |
98 112- : agree on "a" | |
99 11-1 : hg said "", expected "a" | |
100 11-2 : agree on "a" | |
101 11-- : agree on "" | |
102 1211 : agree on "a" | |
103 1212 : agree on "" | |
104 1213 : agree on "a" | |
105 121- : agree on "a" | |
106 1221 : agree on "a" | |
107 1222 : agree on "" | |
108 1223 : agree on "a" | |
109 122- : agree on "a" | |
110 1231 C: agree on "a" | |
111 1232 C: agree on "a" | |
112 1233 C: agree on "a" | |
113 1234 C: agree on "a" | |
114 123- C: agree on "a" | |
115 12-1 C: agree on "a" | |
116 12-2 C: hg said "", expected "a" | |
117 12-3 C: agree on "a" | |
118 12-- C: agree on "a" | |
119 1-11 : hg said "", expected "a" | |
120 1-12 : agree on "a" | |
121 1-1- : hg said "a", expected "" | |
122 1-21 C: agree on "a" | |
123 1-22 C: hg said "", expected "a" | |
124 1-23 C: agree on "a" | |
125 1-2- C: agree on "a" | |
126 1--1 : agree on "a" | |
127 1--2 : agree on "a" | |
128 1--- : agree on "" | |
129 -111 : agree on "" | |
130 -112 : agree on "a" | |
131 -11- : agree on "a" | |
132 -121 C: agree on "a" | |
133 -122 C: agree on "a" | |
134 -123 C: agree on "a" | |
135 -12- C: agree on "a" | |
136 -1-1 : agree on "" | |
137 -1-2 : agree on "a" | |
138 -1-- : agree on "a" | |
139 --11 : agree on "" | |
140 --12 : agree on "a" | |
141 --1- : agree on "a" | |
142 ---1 : agree on "a" | |
143 ---- : agree on "" | |
144 | |
145 All the merges of executable bit. | |
146 | |
147 $ range () { | |
148 > max=a | |
149 > for i in $@; do | |
150 > if [ $i = - ]; then continue; fi | |
151 > if [ $i > $max ]; then max=$i; fi | |
152 > done | |
153 > if [ $max = a ]; then echo f; else echo f x; fi | |
154 > } | |
155 $ isgood () { case $line in *f*x*) true;; *) false;; esac; } | |
156 $ createfile () { | |
157 > if [ -f a ] && (([ -x a ] && [ $v = x ]) || (! [ -x a ] && [ $v != x ])) | |
158 > then touch $file | |
159 > else touch a; if [ $v = x ]; then chmod +x a; else chmod -x a; fi | |
160 > fi | |
161 > } | |
162 | |
163 #if execbit | |
164 $ genmerges | |
165 fffx : agree on "a" | |
166 ffxf : agree on "a" | |
167 ffxx : agree on "" | |
168 ffx- : agree on "a" | |
169 ff-x : hg said "", expected "a" | |
170 fxff : hg said "", expected "a" | |
171 fxfx : hg said "a", expected "" | |
172 fxf- : agree on "a" | |
173 fxxf : agree on "a" | |
174 fxxx : agree on "" | |
175 fxx- : agree on "a" | |
176 fx-f : hg said "", expected "a" | |
177 fx-x : hg said "", expected "a" | |
178 fx-- : hg said "", expected "a" | |
179 f-fx : agree on "a" | |
180 f-xf : agree on "a" | |
181 f-xx : hg said "", expected "a" | |
182 f-x- : agree on "a" | |
183 f--x : agree on "a" | |
184 -ffx : agree on "a" | |
185 -fxf C: agree on "a" | |
186 -fxx C: hg said "", expected "a" | |
187 -fx- C: agree on "a" | |
188 -f-x : hg said "", expected "a" | |
189 --fx : agree on "a" | |
190 #endif | |
191 | |
192 Files modified or cleanly merged, with no greatest common ancestors: | |
193 | |
194 $ hg init repo; cd repo | |
195 $ touch a0 b0; hg commit -qAm 0 | |
196 $ hg up -qr null; touch a1 b1; hg commit -qAm 1 | |
197 $ hg merge -qr 0; rm b*; hg commit -qAm 2 | |
198 $ hg log -r . -T '{files}\n' | |
199 b0 b1 | |
200 $ cd ../ | |
201 $ rm -rf repo | |
202 | |
203 A few cases of criss-cross merges involving deletions (listing all | |
204 such merges is probably too much). Both gcas contain $files, so we | |
205 expect the final merge to behave like a merge with a single gca | |
206 containing $files. | |
207 | |
208 $ hg init repo; cd repo | |
209 $ files="c1 u1 c2 u2" | |
210 $ touch $files; hg commit -qAm '0 root' | |
211 $ for f in $files; do echo f > $f; done; hg commit -qAm '1 gca1' | |
212 $ hg up -qr0; hg revert -qr 1 --all; hg commit -qAm '2 gca2' | |
213 $ hg up -qr 1; hg merge -qr 2; rm *1; hg commit -qAm '3 p1' | |
214 $ hg up -qr 2; hg merge -qr 1; rm *2; hg commit -qAm '4 p2' | |
215 $ hg merge -qr 3; echo f > u1; echo f > u2; rm -f c1 c2 | |
216 $ hg commit -qAm '5 merge with two gcas' | |
217 $ hg log -r . -T '{files}\n' # expecting u1 u2 | |
218 c1 | |
219 $ cd ../ | |
220 $ rm -rf repo |