bb66b8b48e3ddb1872f6fab1fef71098b4031fac
   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_committer_date "00:00" hide_error save_tag root unique_commit root tree
  20on_committer_date "00:01" save_tag l0 unique_commit l0 tree -p root
  21on_committer_date "00:02" save_tag l1 unique_commit l1 tree -p l0
  22on_committer_date "00:03" save_tag l2 unique_commit l2 tree -p l1
  23on_committer_date "00:04" save_tag a0 unique_commit a0 tree -p l2
  24on_committer_date "00:05" save_tag a1 unique_commit a1 tree -p a0
  25on_committer_date "00:06" save_tag b1 unique_commit b1 tree -p a0
  26on_committer_date "00:07" save_tag c1 unique_commit c1 tree -p b1
  27on_committer_date "00:08" as_author foobar@example.com save_tag b2 unique_commit b2 tree -p b1
  28on_committer_date "00:09" save_tag b3 unique_commit b3 tree -p b2
  29on_committer_date "00:10" save_tag c2 unique_commit c2 tree -p c1 -p b2
  30on_committer_date "00:11" save_tag c3 unique_commit c3 tree -p c2
  31on_committer_date "00:12" save_tag a2 unique_commit a2 tree -p a1
  32on_committer_date "00:13" save_tag a3 unique_commit a3 tree -p a2
  33on_committer_date "00:14" save_tag b4 unique_commit b4 tree -p b3 -p a3
  34on_committer_date "00:15" save_tag a4 unique_commit a4 tree -p a3 -p b4 -p c3
  35on_committer_date "00:16" save_tag l3 unique_commit l3 tree -p a4
  36on_committer_date "00:17" save_tag l4 unique_commit l4 tree -p l3
  37on_committer_date "00:18" save_tag l5 unique_commit l5 tree -p l4
  38on_committer_date "00:19" save_tag m1 unique_commit m1 tree -p a4 -p c3
  39on_committer_date "00:20" save_tag m2 unique_commit m2 tree -p c3 -p a4
  40on_committer_date "00:21" hide_error save_tag alt_root unique_commit alt_root tree
  41on_committer_date "00:22" save_tag r0 unique_commit r0 tree -p alt_root
  42on_committer_date "00:23" save_tag r1 unique_commit r1 tree -p r0
  43on_committer_date "00:24" save_tag l5r1 unique_commit l5r1 tree -p l5 -p r1
  44on_committer_date "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 'two diamonds topo order (g6)' 'git rev-list --topo-order  g4' <<EOF
 104g4
 105h2
 106g3
 107g2
 108h1
 109g1
 110g0
 111EOF
 112
 113test_output_expect_success 'multiple heads' 'git rev-list --topo-order a3 b3 c3' <<EOF
 114a3
 115a2
 116a1
 117c3
 118c2
 119c1
 120b3
 121b2
 122b1
 123a0
 124l2
 125l1
 126l0
 127root
 128EOF
 129
 130test_output_expect_success 'multiple heads, prune at a1' 'git rev-list --topo-order a3 b3 c3 ^a1' <<EOF
 131a3
 132a2
 133c3
 134c2
 135c1
 136b3
 137b2
 138b1
 139EOF
 140
 141test_output_expect_success 'multiple heads, prune at l1' 'git rev-list --topo-order a3 b3 c3 ^l1' <<EOF
 142a3
 143a2
 144a1
 145c3
 146c2
 147c1
 148b3
 149b2
 150b1
 151a0
 152l2
 153EOF
 154
 155test_output_expect_success 'cross-epoch, head at l5, prune at l1' 'git rev-list --topo-order l5 ^l1' <<EOF
 156l5
 157l4
 158l3
 159a4
 160c3
 161c2
 162c1
 163b4
 164a3
 165a2
 166a1
 167b3
 168b2
 169b1
 170a0
 171l2
 172EOF
 173
 174test_output_expect_success 'duplicated head arguments' 'git rev-list --topo-order l5 l5 ^l1' <<EOF
 175l5
 176l4
 177l3
 178a4
 179c3
 180c2
 181c1
 182b4
 183a3
 184a2
 185a1
 186b3
 187b2
 188b1
 189a0
 190l2
 191EOF
 192
 193test_output_expect_success 'prune near topo' 'git rev-list --topo-order a4 ^c3' <<EOF
 194a4
 195b4
 196a3
 197a2
 198a1
 199b3
 200EOF
 201
 202test_output_expect_success "head has no parent" 'git rev-list --topo-order  root' <<EOF
 203root
 204EOF
 205
 206test_output_expect_success "two nodes - one head, one base" 'git rev-list --topo-order  l0' <<EOF
 207l0
 208root
 209EOF
 210
 211test_output_expect_success "three nodes one head, one internal, one base" 'git rev-list --topo-order  l1' <<EOF
 212l1
 213l0
 214root
 215EOF
 216
 217test_output_expect_success "linear prune l2 ^root" 'git rev-list --topo-order  l2 ^root' <<EOF
 218l2
 219l1
 220l0
 221EOF
 222
 223test_output_expect_success "linear prune l2 ^l0" 'git rev-list --topo-order  l2 ^l0' <<EOF
 224l2
 225l1
 226EOF
 227
 228test_output_expect_success "linear prune l2 ^l1" 'git rev-list --topo-order  l2 ^l1' <<EOF
 229l2
 230EOF
 231
 232test_output_expect_success "linear prune l5 ^a4" 'git rev-list --topo-order  l5 ^a4' <<EOF
 233l5
 234l4
 235l3
 236EOF
 237
 238test_output_expect_success "linear prune l5 ^l3" 'git rev-list --topo-order  l5 ^l3' <<EOF
 239l5
 240l4
 241EOF
 242
 243test_output_expect_success "linear prune l5 ^l4" 'git rev-list --topo-order  l5 ^l4' <<EOF
 244l5
 245EOF
 246
 247test_output_expect_success "max-count 10 - topo order" 'git rev-list --topo-order  --max-count=10 l5' <<EOF
 248l5
 249l4
 250l3
 251a4
 252c3
 253c2
 254c1
 255b4
 256a3
 257a2
 258EOF
 259
 260test_output_expect_success "max-count 10 - non topo order" 'git rev-list --max-count=10 l5' <<EOF
 261l5
 262l4
 263l3
 264a4
 265b4
 266a3
 267a2
 268c3
 269c2
 270b3
 271EOF
 272
 273test_output_expect_success '--max-age=c3, no --topo-order' "git rev-list --max-age=$(commit_date c3) l5" <<EOF
 274l5
 275l4
 276l3
 277a4
 278b4
 279a3
 280a2
 281c3
 282EOF
 283
 284#
 285# this test fails on --topo-order - a fix is required
 286#
 287#test_output_expect_success '--max-age=c3, --topo-order' "git rev-list --topo-order --max-age=$(commit_date c3) l5" <<EOF
 288#l5
 289#l4
 290#l3
 291#a4
 292#c3
 293#b4
 294#a3
 295#a2
 296#EOF
 297
 298test_output_expect_success 'one specified head reachable from another a4, c3, --topo-order' "list_duplicates git rev-list --topo-order a4 c3" <<EOF
 299EOF
 300
 301test_output_expect_success 'one specified head reachable from another c3, a4, --topo-order' "list_duplicates git rev-list --topo-order c3 a4" <<EOF
 302EOF
 303
 304test_output_expect_success 'one specified head reachable from another a4, c3, no --topo-order' "list_duplicates git rev-list a4 c3" <<EOF
 305EOF
 306
 307test_output_expect_success 'one specified head reachable from another c3, a4, no --topo-order' "list_duplicates git rev-list c3 a4" <<EOF
 308EOF
 309
 310test_output_expect_success 'graph with c3 and a4 parents of head' "list_duplicates git rev-list m1" <<EOF
 311EOF
 312
 313test_output_expect_success 'graph with a4 and c3 parents of head' "list_duplicates git rev-list m2" <<EOF
 314EOF
 315
 316test_expect_success "head ^head --topo-order" 'git rev-list --topo-order  a3 ^a3' <<EOF
 317EOF
 318
 319test_expect_success "head ^head no --topo-order" 'git rev-list a3 ^a3' <<EOF
 320EOF
 321
 322test_output_expect_success 'simple topo order (l5r1)' 'git rev-list --topo-order  l5r1' <<EOF
 323l5r1
 324r1
 325r0
 326alt_root
 327l5
 328l4
 329l3
 330a4
 331c3
 332c2
 333c1
 334b4
 335a3
 336a2
 337a1
 338b3
 339b2
 340b1
 341a0
 342l2
 343l1
 344l0
 345root
 346EOF
 347
 348test_output_expect_success 'simple topo order (r1l5)' 'git rev-list --topo-order  r1l5' <<EOF
 349r1l5
 350l5
 351l4
 352l3
 353a4
 354c3
 355c2
 356c1
 357b4
 358a3
 359a2
 360a1
 361b3
 362b2
 363b1
 364a0
 365l2
 366l1
 367l0
 368root
 369r1
 370r0
 371alt_root
 372EOF
 373
 374test_output_expect_success "don't print things unreachable from one branch" "git rev-list a3 ^b3 --topo-order" <<EOF
 375a3
 376a2
 377a1
 378EOF
 379
 380test_output_expect_success "--topo-order a4 l3" "git rev-list --topo-order a4 l3" <<EOF
 381l3
 382a4
 383c3
 384c2
 385c1
 386b4
 387a3
 388a2
 389a1
 390b3
 391b2
 392b1
 393a0
 394l2
 395l1
 396l0
 397root
 398EOF
 399
 400#
 401#
 402
 403test_done