Merge branch 'jc/relnotes-v0-extension-update' into master
[git/raj.git] / t / t1506-rev-parse-diagnosis.sh
blobdbf690b9c1ba492dff629ac75c9cadd5d4887095
1 #!/bin/sh
3 test_description='test git rev-parse diagnosis for invalid argument'
5 exec </dev/null
7 . ./test-lib.sh
9 test_did_you_mean ()
11 cat >expected <<-EOF &&
12 fatal: path '$2$3' $4, but not ${5:-$SQ$3$SQ}
13 hint: Did you mean '$1:$2$3'${2:+ aka $SQ$1:./$3$SQ}?
14 EOF
15 test_i18ncmp expected error
18 HASH_file=
20 test_expect_success 'set up basic repo' '
21 echo one > file.txt &&
22 mkdir subdir &&
23 echo two > subdir/file.txt &&
24 echo three > subdir/file2.txt &&
25 git add . &&
26 git commit -m init &&
27 echo four > index-only.txt &&
28 git add index-only.txt &&
29 echo five > disk-only.txt
32 test_expect_success 'correct file objects' '
33 HASH_file=$(git rev-parse HEAD:file.txt) &&
34 git rev-parse HEAD:subdir/file.txt &&
35 git rev-parse :index-only.txt &&
36 (cd subdir &&
37 git rev-parse HEAD:subdir/file2.txt &&
38 test $HASH_file = $(git rev-parse HEAD:file.txt) &&
39 test $HASH_file = $(git rev-parse :file.txt) &&
40 test $HASH_file = $(git rev-parse :0:file.txt) )
43 test_expect_success 'correct relative file objects (0)' '
44 git rev-parse :file.txt >expected &&
45 git rev-parse :./file.txt >result &&
46 test_cmp expected result &&
47 git rev-parse :0:./file.txt >result &&
48 test_cmp expected result
51 test_expect_success 'correct relative file objects (1)' '
52 git rev-parse HEAD:file.txt >expected &&
53 git rev-parse HEAD:./file.txt >result &&
54 test_cmp expected result
57 test_expect_success 'correct relative file objects (2)' '
59 cd subdir &&
60 git rev-parse HEAD:../file.txt >result &&
61 test_cmp ../expected result
65 test_expect_success 'correct relative file objects (3)' '
67 cd subdir &&
68 git rev-parse HEAD:../subdir/../file.txt >result &&
69 test_cmp ../expected result
73 test_expect_success 'correct relative file objects (4)' '
74 git rev-parse HEAD:subdir/file.txt >expected &&
76 cd subdir &&
77 git rev-parse HEAD:./file.txt >result &&
78 test_cmp ../expected result
82 test_expect_success 'correct relative file objects (5)' '
83 git rev-parse :subdir/file.txt >expected &&
85 cd subdir &&
86 git rev-parse :./file.txt >result &&
87 test_cmp ../expected result &&
88 git rev-parse :0:./file.txt >result &&
89 test_cmp ../expected result
93 test_expect_success 'correct relative file objects (6)' '
94 git rev-parse :file.txt >expected &&
96 cd subdir &&
97 git rev-parse :../file.txt >result &&
98 test_cmp ../expected result &&
99 git rev-parse :0:../file.txt >result &&
100 test_cmp ../expected result
104 test_expect_success 'incorrect revision id' '
105 test_must_fail git rev-parse foobar:file.txt 2>error &&
106 test_i18ngrep "invalid object name .foobar." error &&
107 test_must_fail git rev-parse foobar 2>error &&
108 test_i18ngrep "unknown revision or path not in the working tree." error
111 test_expect_success 'incorrect file in sha1:path' '
112 test_must_fail git rev-parse HEAD:nothing.txt 2>error &&
113 test_i18ngrep "path .nothing.txt. does not exist in .HEAD." error &&
114 test_must_fail git rev-parse HEAD:index-only.txt 2>error &&
115 test_i18ngrep "path .index-only.txt. exists on disk, but not in .HEAD." error &&
116 (cd subdir &&
117 test_must_fail git rev-parse HEAD:file2.txt 2>error &&
118 test_did_you_mean HEAD subdir/ file2.txt exists )
121 test_expect_success 'incorrect file in :path and :N:path' '
122 test_must_fail git rev-parse :nothing.txt 2>error &&
123 test_i18ngrep "path .nothing.txt. does not exist (neither on disk nor in the index)" error &&
124 test_must_fail git rev-parse :1:nothing.txt 2>error &&
125 test_i18ngrep "path .nothing.txt. does not exist (neither on disk nor in the index)" error &&
126 test_must_fail git rev-parse :1:file.txt 2>error &&
127 test_did_you_mean ":0" "" file.txt "is in the index" "at stage 1" &&
128 (cd subdir &&
129 test_must_fail git rev-parse :1:file.txt 2>error &&
130 test_did_you_mean ":0" "" file.txt "is in the index" "at stage 1" &&
131 test_must_fail git rev-parse :file2.txt 2>error &&
132 test_did_you_mean ":0" subdir/ file2.txt "is in the index" &&
133 test_must_fail git rev-parse :2:file2.txt 2>error &&
134 test_did_you_mean :0 subdir/ file2.txt "is in the index") &&
135 test_must_fail git rev-parse :disk-only.txt 2>error &&
136 test_i18ngrep "path .disk-only.txt. exists on disk, but not in the index" error
139 test_expect_success 'invalid @{n} reference' '
140 test_must_fail git rev-parse master@{99999} >output 2>error &&
141 test_must_be_empty output &&
142 test_i18ngrep "log for [^ ]* only has [0-9][0-9]* entries" error &&
143 test_must_fail git rev-parse --verify master@{99999} >output 2>error &&
144 test_must_be_empty output &&
145 test_i18ngrep "log for [^ ]* only has [0-9][0-9]* entries" error
148 test_expect_success 'relative path not found' '
150 cd subdir &&
151 test_must_fail git rev-parse HEAD:./nonexistent.txt 2>error &&
152 test_i18ngrep subdir/nonexistent.txt error
156 test_expect_success 'relative path outside worktree' '
157 test_must_fail git rev-parse HEAD:../file.txt >output 2>error &&
158 test_must_be_empty output &&
159 test_i18ngrep "outside repository" error
162 test_expect_success 'relative path when cwd is outside worktree' '
163 test_must_fail git --git-dir=.git --work-tree=subdir rev-parse HEAD:./file.txt >output 2>error &&
164 test_must_be_empty output &&
165 test_i18ngrep "relative path syntax can.t be used outside working tree" error
168 test_expect_success '<commit>:file correctly diagnosed after a pathname' '
169 test_must_fail git rev-parse file.txt HEAD:file.txt 1>actual 2>error &&
170 test_i18ngrep ! "exists on disk" error &&
171 test_i18ngrep "no such path in the working tree" error &&
172 cat >expect <<-\EOF &&
173 file.txt
174 HEAD:file.txt
176 test_cmp expect actual
179 test_expect_success 'dotdot is not an empty set' '
180 ( H=$(git rev-parse HEAD) && echo $H && echo ^$H ) >expect &&
182 git rev-parse HEAD.. >actual &&
183 test_cmp expect actual &&
185 git rev-parse ..HEAD >actual &&
186 test_cmp expect actual &&
188 echo .. >expect &&
189 git rev-parse .. >actual &&
190 test_cmp expect actual
193 test_expect_success 'arg before dashdash must be a revision (missing)' '
194 test_must_fail git rev-parse foobar -- 2>stderr &&
195 test_i18ngrep "bad revision" stderr
198 test_expect_success 'arg before dashdash must be a revision (file)' '
199 >foobar &&
200 test_must_fail git rev-parse foobar -- 2>stderr &&
201 test_i18ngrep "bad revision" stderr
204 test_expect_success 'arg before dashdash must be a revision (ambiguous)' '
205 >foobar &&
206 git update-ref refs/heads/foobar HEAD &&
208 # we do not want to use rev-parse here, because
209 # we are testing it
210 git show-ref -s refs/heads/foobar &&
211 printf "%s\n" --
212 } >expect &&
213 git rev-parse foobar -- >actual &&
214 test_cmp expect actual
217 test_expect_success 'reject Nth parent if N is too high' '
218 test_must_fail git rev-parse HEAD^100000000000000000000000000000000
221 test_expect_success 'reject Nth ancestor if N is too high' '
222 test_must_fail git rev-parse HEAD~100000000000000000000000000000000
225 test_expect_success 'pathspecs with wildcards are not ambiguous' '
226 echo "*.c" >expect &&
227 git rev-parse "*.c" >actual &&
228 test_cmp expect actual
231 test_expect_success 'backslash does not trigger wildcard rule' '
232 test_must_fail git rev-parse "foo\\bar"
235 test_expect_success 'escaped char does not trigger wildcard rule' '
236 test_must_fail git rev-parse "foo\\*bar"
239 test_done