Merge branch 'md/list-lazy-objects-fix'
[git.git] / t / t6000-rev-list-misc.sh
blob05079997291fe295aacc80be1f26fd7002f0a898
1 #!/bin/sh
3 test_description='miscellaneous rev-list tests'
5 . ./test-lib.sh
7 test_expect_success setup '
8 echo content1 >wanted_file &&
9 echo content2 >unwanted_file &&
10 git add wanted_file unwanted_file &&
11 git commit -m one
14 test_expect_success 'rev-list --objects heeds pathspecs' '
15 git rev-list --objects HEAD -- wanted_file >output &&
16 grep wanted_file output &&
17 ! grep unwanted_file output
20 test_expect_success 'rev-list --objects with pathspecs and deeper paths' '
21 mkdir foo &&
22 >foo/file &&
23 git add foo/file &&
24 git commit -m two &&
26 git rev-list --objects HEAD -- foo >output &&
27 grep foo/file output &&
29 git rev-list --objects HEAD -- foo/file >output &&
30 grep foo/file output &&
31 ! grep unwanted_file output
34 test_expect_success 'rev-list --objects with pathspecs and copied files' '
35 git checkout --orphan junio-testcase &&
36 git rm -rf . &&
38 mkdir two &&
39 echo frotz >one &&
40 cp one two/three &&
41 git add one two/three &&
42 test_tick &&
43 git commit -m that &&
45 ONE=$(git rev-parse HEAD:one) &&
46 git rev-list --objects HEAD two >output &&
47 grep "$ONE two/three" output &&
48 ! grep one output
51 test_expect_success 'rev-list A..B and rev-list ^A B are the same' '
52 git commit --allow-empty -m another &&
53 git tag -a -m "annotated" v1.0 &&
54 git rev-list --objects ^v1.0^ v1.0 >expect &&
55 git rev-list --objects v1.0^..v1.0 >actual &&
56 test_cmp expect actual
59 test_expect_success 'propagate uninteresting flag down correctly' '
60 git rev-list --objects ^HEAD^{tree} HEAD^{tree} >actual &&
61 test_must_be_empty actual
64 test_expect_success 'symleft flag bit is propagated down from tag' '
65 git log --format="%m %s" --left-right v1.0...master >actual &&
66 cat >expect <<-\EOF &&
67 > two
68 > one
69 < another
70 < that
71 EOF
72 test_cmp expect actual
75 test_expect_success 'rev-list can show index objects' '
76 # Of the blobs and trees in the index, note:
78 # - we do not show two/three, because it is the
79 # same blob as "one", and we show objects only once
81 # - we do show the tree "two", because it has a valid cache tree
82 # from the last commit
84 # - we do not show the root tree; since we updated the index, it
85 # does not have a valid cache tree
87 cat >expect <<-\EOF &&
88 8e4020bb5a8d8c873b25de15933e75cc0fc275df one
89 d9d3a7417b9605cfd88ee6306b28dadc29e6ab08 only-in-index
90 9200b628cf9dc883a85a7abc8d6e6730baee589c two
91 EOF
92 echo only-in-index >only-in-index &&
93 test_when_finished "git reset --hard" &&
94 git add only-in-index &&
95 git rev-list --objects --indexed-objects >actual &&
96 test_cmp expect actual
99 test_expect_success 'rev-list can negate index objects' '
100 git rev-parse HEAD >expect &&
101 git rev-list -1 --objects HEAD --not --indexed-objects >actual &&
102 test_cmp expect actual
105 test_expect_success '--bisect and --first-parent can not be combined' '
106 test_must_fail git rev-list --bisect --first-parent HEAD
109 test_expect_success '--header shows a NUL after each commit' '
110 # We know that there is no Q in the true payload; names and
111 # addresses of the authors and the committers do not have
112 # any, and object names or header names do not, either.
113 git rev-list --header --max-count=2 HEAD |
114 nul_to_q |
115 grep "^Q" >actual &&
116 cat >expect <<-EOF &&
117 Q$(git rev-parse HEAD~1)
120 test_cmp expect actual
123 test_done