77bf2ca1e1383275e04175dc5f78a8de3d9ee289
1#!/bin/sh
2#
3# Copyright (c) 2005 Jon Seymour
4#
5
6test_description='Tests git rev-list --topo-order functionality'
7
8. ./test-lib.sh
9. "$TEST_DIRECTORY"/lib-t6000.sh # t6xxx specific functions
10
11list_duplicates()
12{
13 "$@" | sort | uniq -d
14}
15
16date >path0
17git update-index --add path0
18save_tag tree git write-tree
19on_dates "00:00" "00:00" hide_error save_tag root unique_commit root tree
20on_dates "00:01" "00:01" save_tag l0 unique_commit l0 tree -p root
21on_dates "00:02" "00:02" save_tag l1 unique_commit l1 tree -p l0
22on_dates "00:03" "00:03" save_tag l2 unique_commit l2 tree -p l1
23on_dates "00:04" "00:04" save_tag a0 unique_commit a0 tree -p l2
24on_dates "00:05" "00:05" save_tag a1 unique_commit a1 tree -p a0
25on_dates "00:06" "00:06" save_tag b1 unique_commit b1 tree -p a0
26on_dates "00:07" "00:07" save_tag c1 unique_commit c1 tree -p b1
27on_dates "00:08" "00:08" as_author foobar@example.com save_tag b2 unique_commit b2 tree -p b1
28on_dates "00:09" "00:09" save_tag b3 unique_commit b3 tree -p b2
29on_dates "00:10" "00:10" save_tag c2 unique_commit c2 tree -p c1 -p b2
30on_dates "00:11" "00:11" save_tag c3 unique_commit c3 tree -p c2
31on_dates "00:12" "00:12" save_tag a2 unique_commit a2 tree -p a1
32on_dates "00:13" "00:13" save_tag a3 unique_commit a3 tree -p a2
33on_dates "00:14" "00:14" save_tag b4 unique_commit b4 tree -p b3 -p a3
34on_dates "00:15" "00:15" save_tag a4 unique_commit a4 tree -p a3 -p b4 -p c3
35on_dates "00:16" "00:16" save_tag l3 unique_commit l3 tree -p a4
36on_dates "00:17" "00:17" save_tag l4 unique_commit l4 tree -p l3
37on_dates "00:18" "00:18" save_tag l5 unique_commit l5 tree -p l4
38on_dates "00:19" "00:19" save_tag m1 unique_commit m1 tree -p a4 -p c3
39on_dates "00:20" "00:20" save_tag m2 unique_commit m2 tree -p c3 -p a4
40on_dates "00:21" "00:21" hide_error save_tag alt_root unique_commit alt_root tree
41on_dates "00:22" "00:22" save_tag r0 unique_commit r0 tree -p alt_root
42on_dates "00:23" "00:23" save_tag r1 unique_commit r1 tree -p r0
43on_dates "00:24" "00:24" save_tag l5r1 unique_commit l5r1 tree -p l5 -p r1
44on_dates "00:25" "00:25" save_tag r1l5 unique_commit r1l5 tree -p r1 -p l5
45
46
47hide_error save_tag e1 as_author e@example.com unique_commit e1 tree
48save_tag e2 as_author e@example.com unique_commit e2 tree -p e1
49save_tag f1 as_author f@example.com unique_commit f1 tree -p e1
50save_tag e3 as_author e@example.com unique_commit e3 tree -p e2
51save_tag f2 as_author f@example.com unique_commit f2 tree -p f1
52save_tag e4 as_author e@example.com unique_commit e4 tree -p e3 -p f2
53save_tag e5 as_author e@example.com unique_commit e5 tree -p e4
54save_tag f3 as_author f@example.com unique_commit f3 tree -p f2
55save_tag f4 as_author f@example.com unique_commit f4 tree -p f3
56save_tag e6 as_author e@example.com unique_commit e6 tree -p e5 -p f4
57save_tag f5 as_author f@example.com unique_commit f5 tree -p f4
58save_tag f6 as_author f@example.com unique_commit f6 tree -p f5 -p e6
59save_tag e7 as_author e@example.com unique_commit e7 tree -p e6
60save_tag e8 as_author e@example.com unique_commit e8 tree -p e7
61save_tag e9 as_author e@example.com unique_commit e9 tree -p e8
62save_tag f7 as_author f@example.com unique_commit f7 tree -p f6
63save_tag f8 as_author f@example.com unique_commit f8 tree -p f7
64save_tag f9 as_author f@example.com unique_commit f9 tree -p f8
65save_tag e10 as_author e@example.com unique_commit e1 tree -p e9 -p f8
66
67hide_error save_tag g0 unique_commit g0 tree
68save_tag g1 unique_commit g1 tree -p g0
69save_tag h1 unique_commit g2 tree -p g0
70save_tag g2 unique_commit g3 tree -p g1 -p h1
71save_tag h2 unique_commit g4 tree -p g2
72save_tag g3 unique_commit g5 tree -p g2
73save_tag g4 unique_commit g6 tree -p g3 -p h2
74
75git update-ref HEAD $(tag l5)
76
77test_output_expect_success 'rev-list has correct number of entries' 'git rev-list HEAD | wc -l | tr -d \" \"' <<EOF
7819
79EOF
80
81test_output_expect_success 'simple topo order' 'git rev-list --topo-order HEAD' <<EOF
82l5
83l4
84l3
85a4
86c3
87c2
88c1
89b4
90a3
91a2
92a1
93b3
94b2
95b1
96a0
97l2
98l1
99l0
100root
101EOF
102
103test_output_expect_success 'simple date order' 'git rev-list --date-order HEAD' <<EOF
104l5
105l4
106l3
107a4
108b4
109a3
110a2
111c3
112c2
113b3
114b2
115c1
116b1
117a1
118a0
119l2
120l1
121l0
122root
123EOF
124
125test_output_expect_success 'two diamonds topo order (g6)' 'git rev-list --topo-order g4' <<EOF
126g4
127h2
128g3
129g2
130h1
131g1
132g0
133EOF
134
135test_output_expect_success 'multiple heads' 'git rev-list --topo-order a3 b3 c3' <<EOF
136a3
137a2
138a1
139c3
140c2
141c1
142b3
143b2
144b1
145a0
146l2
147l1
148l0
149root
150EOF
151
152test_output_expect_success 'multiple heads, prune at a1' 'git rev-list --topo-order a3 b3 c3 ^a1' <<EOF
153a3
154a2
155c3
156c2
157c1
158b3
159b2
160b1
161EOF
162
163test_output_expect_success 'multiple heads, prune at l1' 'git rev-list --topo-order a3 b3 c3 ^l1' <<EOF
164a3
165a2
166a1
167c3
168c2
169c1
170b3
171b2
172b1
173a0
174l2
175EOF
176
177test_output_expect_success 'cross-epoch, head at l5, prune at l1' 'git rev-list --topo-order l5 ^l1' <<EOF
178l5
179l4
180l3
181a4
182c3
183c2
184c1
185b4
186a3
187a2
188a1
189b3
190b2
191b1
192a0
193l2
194EOF
195
196test_output_expect_success 'duplicated head arguments' 'git rev-list --topo-order l5 l5 ^l1' <<EOF
197l5
198l4
199l3
200a4
201c3
202c2
203c1
204b4
205a3
206a2
207a1
208b3
209b2
210b1
211a0
212l2
213EOF
214
215test_output_expect_success 'prune near topo' 'git rev-list --topo-order a4 ^c3' <<EOF
216a4
217b4
218a3
219a2
220a1
221b3
222EOF
223
224test_output_expect_success "head has no parent" 'git rev-list --topo-order root' <<EOF
225root
226EOF
227
228test_output_expect_success "two nodes - one head, one base" 'git rev-list --topo-order l0' <<EOF
229l0
230root
231EOF
232
233test_output_expect_success "three nodes one head, one internal, one base" 'git rev-list --topo-order l1' <<EOF
234l1
235l0
236root
237EOF
238
239test_output_expect_success "linear prune l2 ^root" 'git rev-list --topo-order l2 ^root' <<EOF
240l2
241l1
242l0
243EOF
244
245test_output_expect_success "linear prune l2 ^l0" 'git rev-list --topo-order l2 ^l0' <<EOF
246l2
247l1
248EOF
249
250test_output_expect_success "linear prune l2 ^l1" 'git rev-list --topo-order l2 ^l1' <<EOF
251l2
252EOF
253
254test_output_expect_success "linear prune l5 ^a4" 'git rev-list --topo-order l5 ^a4' <<EOF
255l5
256l4
257l3
258EOF
259
260test_output_expect_success "linear prune l5 ^l3" 'git rev-list --topo-order l5 ^l3' <<EOF
261l5
262l4
263EOF
264
265test_output_expect_success "linear prune l5 ^l4" 'git rev-list --topo-order l5 ^l4' <<EOF
266l5
267EOF
268
269test_output_expect_success "max-count 10 - topo order" 'git rev-list --topo-order --max-count=10 l5' <<EOF
270l5
271l4
272l3
273a4
274c3
275c2
276c1
277b4
278a3
279a2
280EOF
281
282test_output_expect_success "max-count 10 - non topo order" 'git rev-list --max-count=10 l5' <<EOF
283l5
284l4
285l3
286a4
287b4
288a3
289a2
290c3
291c2
292b3
293EOF
294
295test_output_expect_success '--max-age=c3, no --topo-order' "git rev-list --max-age=$(commit_date c3) l5" <<EOF
296l5
297l4
298l3
299a4
300b4
301a3
302a2
303c3
304EOF
305
306#
307# this test fails on --topo-order - a fix is required
308#
309#test_output_expect_success '--max-age=c3, --topo-order' "git rev-list --topo-order --max-age=$(commit_date c3) l5" <<EOF
310#l5
311#l4
312#l3
313#a4
314#c3
315#b4
316#a3
317#a2
318#EOF
319
320test_output_expect_success 'one specified head reachable from another a4, c3, --topo-order' "list_duplicates git rev-list --topo-order a4 c3" <<EOF
321EOF
322
323test_output_expect_success 'one specified head reachable from another c3, a4, --topo-order' "list_duplicates git rev-list --topo-order c3 a4" <<EOF
324EOF
325
326test_output_expect_success 'one specified head reachable from another a4, c3, no --topo-order' "list_duplicates git rev-list a4 c3" <<EOF
327EOF
328
329test_output_expect_success 'one specified head reachable from another c3, a4, no --topo-order' "list_duplicates git rev-list c3 a4" <<EOF
330EOF
331
332test_output_expect_success 'graph with c3 and a4 parents of head' "list_duplicates git rev-list m1" <<EOF
333EOF
334
335test_output_expect_success 'graph with a4 and c3 parents of head' "list_duplicates git rev-list m2" <<EOF
336EOF
337
338test_expect_success "head ^head --topo-order" 'git rev-list --topo-order a3 ^a3' <<EOF
339EOF
340
341test_expect_success "head ^head no --topo-order" 'git rev-list a3 ^a3' <<EOF
342EOF
343
344test_output_expect_success 'simple topo order (l5r1)' 'git rev-list --topo-order l5r1' <<EOF
345l5r1
346r1
347r0
348alt_root
349l5
350l4
351l3
352a4
353c3
354c2
355c1
356b4
357a3
358a2
359a1
360b3
361b2
362b1
363a0
364l2
365l1
366l0
367root
368EOF
369
370test_output_expect_success 'simple topo order (r1l5)' 'git rev-list --topo-order r1l5' <<EOF
371r1l5
372l5
373l4
374l3
375a4
376c3
377c2
378c1
379b4
380a3
381a2
382a1
383b3
384b2
385b1
386a0
387l2
388l1
389l0
390root
391r1
392r0
393alt_root
394EOF
395
396test_output_expect_success "don't print things unreachable from one branch" "git rev-list a3 ^b3 --topo-order" <<EOF
397a3
398a2
399a1
400EOF
401
402test_output_expect_success "--topo-order a4 l3" "git rev-list --topo-order a4 l3" <<EOF
403l3
404a4
405c3
406c2
407c1
408b4
409a3
410a2
411a1
412b3
413b2
414b1
415a0
416l2
417l1
418l0
419root
420EOF
421
422#
423#
424
425test_done