4867df4796b6d71bb8c499e0184519fecebb085f
1#!/bin/sh
2#
3# Copyright (c) 2007 Andy Parkins
4#
5
6test_description='for-each-ref test'
7
8. ./test-lib.sh
9. "$TEST_DIRECTORY"/lib-gpg.sh
10
11# Mon Jul 3 23:18:43 2006 +0000
12datestamp=1151968723
13setdate_and_increment () {
14 GIT_COMMITTER_DATE="$datestamp +0200"
15 datestamp=$(expr "$datestamp" + 1)
16 GIT_AUTHOR_DATE="$datestamp +0200"
17 datestamp=$(expr "$datestamp" + 1)
18 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
19}
20
21test_expect_success setup '
22 setdate_and_increment &&
23 echo "Using $datestamp" > one &&
24 git add one &&
25 git commit -m "Initial" &&
26 setdate_and_increment &&
27 git tag -a -m "Tagging at $datestamp" testtag &&
28 git update-ref refs/remotes/origin/master master &&
29 git remote add origin nowhere &&
30 git config branch.master.remote origin &&
31 git config branch.master.merge refs/heads/master &&
32 git remote add myfork elsewhere &&
33 git config remote.pushdefault myfork &&
34 git config push.default current
35'
36
37test_atom() {
38 case "$1" in
39 head) ref=refs/heads/master ;;
40 tag) ref=refs/tags/testtag ;;
41 *) ref=$1 ;;
42 esac
43 printf '%s\n' "$3" >expected
44 test_expect_${4:-success} $PREREQ "basic atom: $1 $2" "
45 git for-each-ref --format='%($2)' $ref >actual &&
46 sanitize_pgp <actual >actual.clean &&
47 test_cmp expected actual.clean
48 "
49}
50
51test_atom head refname refs/heads/master
52test_atom head upstream refs/remotes/origin/master
53test_atom head push refs/remotes/myfork/master
54test_atom head objecttype commit
55test_atom head objectsize 171
56test_atom head objectname $(git rev-parse refs/heads/master)
57test_atom head tree $(git rev-parse refs/heads/master^{tree})
58test_atom head parent ''
59test_atom head numparent 0
60test_atom head object ''
61test_atom head type ''
62test_atom head '*objectname' ''
63test_atom head '*objecttype' ''
64test_atom head author 'A U Thor <author@example.com> 1151968724 +0200'
65test_atom head authorname 'A U Thor'
66test_atom head authoremail '<author@example.com>'
67test_atom head authordate 'Tue Jul 4 01:18:44 2006 +0200'
68test_atom head committer 'C O Mitter <committer@example.com> 1151968723 +0200'
69test_atom head committername 'C O Mitter'
70test_atom head committeremail '<committer@example.com>'
71test_atom head committerdate 'Tue Jul 4 01:18:43 2006 +0200'
72test_atom head tag ''
73test_atom head tagger ''
74test_atom head taggername ''
75test_atom head taggeremail ''
76test_atom head taggerdate ''
77test_atom head creator 'C O Mitter <committer@example.com> 1151968723 +0200'
78test_atom head creatordate 'Tue Jul 4 01:18:43 2006 +0200'
79test_atom head subject 'Initial'
80test_atom head contents:subject 'Initial'
81test_atom head body ''
82test_atom head contents:body ''
83test_atom head contents:signature ''
84test_atom head contents 'Initial
85'
86test_atom head HEAD '*'
87
88test_atom tag refname refs/tags/testtag
89test_atom tag upstream ''
90test_atom tag push ''
91test_atom tag objecttype tag
92test_atom tag objectsize 154
93test_atom tag objectname $(git rev-parse refs/tags/testtag)
94test_atom tag tree ''
95test_atom tag parent ''
96test_atom tag numparent ''
97test_atom tag object $(git rev-parse refs/tags/testtag^0)
98test_atom tag type 'commit'
99test_atom tag '*objectname' 'ea122842f48be4afb2d1fc6a4b96c05885ab7463'
100test_atom tag '*objecttype' 'commit'
101test_atom tag author ''
102test_atom tag authorname ''
103test_atom tag authoremail ''
104test_atom tag authordate ''
105test_atom tag committer ''
106test_atom tag committername ''
107test_atom tag committeremail ''
108test_atom tag committerdate ''
109test_atom tag tag 'testtag'
110test_atom tag tagger 'C O Mitter <committer@example.com> 1151968725 +0200'
111test_atom tag taggername 'C O Mitter'
112test_atom tag taggeremail '<committer@example.com>'
113test_atom tag taggerdate 'Tue Jul 4 01:18:45 2006 +0200'
114test_atom tag creator 'C O Mitter <committer@example.com> 1151968725 +0200'
115test_atom tag creatordate 'Tue Jul 4 01:18:45 2006 +0200'
116test_atom tag subject 'Tagging at 1151968727'
117test_atom tag contents:subject 'Tagging at 1151968727'
118test_atom tag body ''
119test_atom tag contents:body ''
120test_atom tag contents:signature ''
121test_atom tag contents 'Tagging at 1151968727
122'
123test_atom tag HEAD ' '
124
125test_expect_success 'Check invalid atoms names are errors' '
126 test_must_fail git for-each-ref --format="%(INVALID)" refs/heads
127'
128
129test_expect_success 'Check format specifiers are ignored in naming date atoms' '
130 git for-each-ref --format="%(authordate)" refs/heads &&
131 git for-each-ref --format="%(authordate:default) %(authordate)" refs/heads &&
132 git for-each-ref --format="%(authordate) %(authordate:default)" refs/heads &&
133 git for-each-ref --format="%(authordate:default) %(authordate:default)" refs/heads
134'
135
136test_expect_success 'Check valid format specifiers for date fields' '
137 git for-each-ref --format="%(authordate:default)" refs/heads &&
138 git for-each-ref --format="%(authordate:relative)" refs/heads &&
139 git for-each-ref --format="%(authordate:short)" refs/heads &&
140 git for-each-ref --format="%(authordate:local)" refs/heads &&
141 git for-each-ref --format="%(authordate:iso8601)" refs/heads &&
142 git for-each-ref --format="%(authordate:rfc2822)" refs/heads
143'
144
145test_expect_success 'Check invalid format specifiers are errors' '
146 test_must_fail git for-each-ref --format="%(authordate:INVALID)" refs/heads
147'
148
149test_date () {
150 f=$1 &&
151 committer_date=$2 &&
152 author_date=$3 &&
153 tagger_date=$4 &&
154 cat >expected <<-EOF &&
155 'refs/heads/master' '$committer_date' '$author_date'
156 'refs/tags/testtag' '$tagger_date'
157 EOF
158 (
159 git for-each-ref --shell \
160 --format="%(refname) %(committerdate${f:+:$f}) %(authordate${f:+:$f})" \
161 refs/heads &&
162 git for-each-ref --shell \
163 --format="%(refname) %(taggerdate${f:+:$f})" \
164 refs/tags
165 ) >actual &&
166 test_cmp expected actual
167}
168
169test_expect_success 'Check unformatted date fields output' '
170 test_date "" \
171 "Tue Jul 4 01:18:43 2006 +0200" \
172 "Tue Jul 4 01:18:44 2006 +0200" \
173 "Tue Jul 4 01:18:45 2006 +0200"
174'
175
176test_expect_success 'Check format "default" formatted date fields output' '
177 test_date default \
178 "Tue Jul 4 01:18:43 2006 +0200" \
179 "Tue Jul 4 01:18:44 2006 +0200" \
180 "Tue Jul 4 01:18:45 2006 +0200"
181'
182
183# Don't know how to do relative check because I can't know when this script
184# is going to be run and can't fake the current time to git, and hence can't
185# provide expected output. Instead, I'll just make sure that "relative"
186# doesn't exit in error
187test_expect_success 'Check format "relative" date fields output' '
188 f=relative &&
189 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
190 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
191'
192
193test_expect_success 'Check format "short" date fields output' '
194 test_date short 2006-07-04 2006-07-04 2006-07-04
195'
196
197test_expect_success 'Check format "local" date fields output' '
198 test_date local \
199 "Mon Jul 3 23:18:43 2006" \
200 "Mon Jul 3 23:18:44 2006" \
201 "Mon Jul 3 23:18:45 2006"
202'
203
204test_expect_success 'Check format "iso8601" date fields output' '
205 test_date iso8601 \
206 "2006-07-04 01:18:43 +0200" \
207 "2006-07-04 01:18:44 +0200" \
208 "2006-07-04 01:18:45 +0200"
209'
210
211test_expect_success 'Check format "rfc2822" date fields output' '
212 test_date rfc2822 \
213 "Tue, 4 Jul 2006 01:18:43 +0200" \
214 "Tue, 4 Jul 2006 01:18:44 +0200" \
215 "Tue, 4 Jul 2006 01:18:45 +0200"
216'
217
218test_expect_success 'Check format "raw" date fields output' '
219 test_date raw "1151968723 +0200" "1151968724 +0200" "1151968725 +0200"
220'
221
222test_expect_success 'Check format of strftime date fields' '
223 echo "my date is 2006-07-04" >expected &&
224 git for-each-ref \
225 --format="%(authordate:format:my date is %Y-%m-%d)" \
226 refs/heads >actual &&
227 test_cmp expected actual
228'
229
230cat >expected <<\EOF
231refs/heads/master
232refs/remotes/origin/master
233refs/tags/testtag
234EOF
235
236test_expect_success 'Verify ascending sort' '
237 git for-each-ref --format="%(refname)" --sort=refname >actual &&
238 test_cmp expected actual
239'
240
241
242cat >expected <<\EOF
243refs/tags/testtag
244refs/remotes/origin/master
245refs/heads/master
246EOF
247
248test_expect_success 'Verify descending sort' '
249 git for-each-ref --format="%(refname)" --sort=-refname >actual &&
250 test_cmp expected actual
251'
252
253cat >expected <<\EOF
254'refs/heads/master'
255'refs/remotes/origin/master'
256'refs/tags/testtag'
257EOF
258
259test_expect_success 'Quoting style: shell' '
260 git for-each-ref --shell --format="%(refname)" >actual &&
261 test_cmp expected actual
262'
263
264test_expect_success 'Quoting style: perl' '
265 git for-each-ref --perl --format="%(refname)" >actual &&
266 test_cmp expected actual
267'
268
269test_expect_success 'Quoting style: python' '
270 git for-each-ref --python --format="%(refname)" >actual &&
271 test_cmp expected actual
272'
273
274cat >expected <<\EOF
275"refs/heads/master"
276"refs/remotes/origin/master"
277"refs/tags/testtag"
278EOF
279
280test_expect_success 'Quoting style: tcl' '
281 git for-each-ref --tcl --format="%(refname)" >actual &&
282 test_cmp expected actual
283'
284
285for i in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
286 test_expect_success "more than one quoting style: $i" "
287 git for-each-ref $i 2>&1 | (read line &&
288 case \$line in
289 \"error: more than one quoting style\"*) : happy;;
290 *) false
291 esac)
292 "
293done
294
295cat >expected <<\EOF
296master
297testtag
298EOF
299
300test_expect_success 'Check short refname format' '
301 (git for-each-ref --format="%(refname:short)" refs/heads &&
302 git for-each-ref --format="%(refname:short)" refs/tags) >actual &&
303 test_cmp expected actual
304'
305
306cat >expected <<EOF
307origin/master
308EOF
309
310test_expect_success 'Check short upstream format' '
311 git for-each-ref --format="%(upstream:short)" refs/heads >actual &&
312 test_cmp expected actual
313'
314
315test_expect_success 'setup for upstream:track[short]' '
316 test_commit two
317'
318
319cat >expected <<EOF
320[ahead 1]
321EOF
322
323test_expect_success 'Check upstream:track format' '
324 git for-each-ref --format="%(upstream:track)" refs/heads >actual &&
325 test_cmp expected actual
326'
327
328cat >expected <<EOF
329>
330EOF
331
332test_expect_success 'Check upstream:trackshort format' '
333 git for-each-ref --format="%(upstream:trackshort)" refs/heads >actual &&
334 test_cmp expected actual
335'
336
337test_expect_success 'Check that :track[short] cannot be used with other atoms' '
338 test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
339 test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
340'
341
342test_expect_success 'Check that :track[short] works when upstream is invalid' '
343 cat >expected <<-\EOF &&
344
345
346 EOF
347 test_when_finished "git config branch.master.merge refs/heads/master" &&
348 git config branch.master.merge refs/heads/does-not-exist &&
349 git for-each-ref \
350 --format="%(upstream:track)$LF%(upstream:trackshort)" \
351 refs/heads >actual &&
352 test_cmp expected actual
353'
354
355test_expect_success '%(push) supports tracking specifiers, too' '
356 echo "[ahead 1]" >expected &&
357 git for-each-ref --format="%(push:track)" refs/heads >actual &&
358 test_cmp expected actual
359'
360
361cat >expected <<EOF
362$(git rev-parse --short HEAD)
363EOF
364
365test_expect_success 'Check short objectname format' '
366 git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
367 test_cmp expected actual
368'
369
370test_expect_success 'Check for invalid refname format' '
371 test_must_fail git for-each-ref --format="%(refname:INVALID)"
372'
373
374get_color ()
375{
376 git config --get-color no.such.slot "$1"
377}
378
379cat >expected <<EOF
380$(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
381$(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
382$(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
383$(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
384EOF
385
386test_expect_success 'Check %(color:...) ' '
387 git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
388 test_cmp expected actual
389'
390
391cat >expected <<\EOF
392heads/master
393tags/master
394EOF
395
396test_expect_success 'Check ambiguous head and tag refs (strict)' '
397 git config --bool core.warnambiguousrefs true &&
398 git checkout -b newtag &&
399 echo "Using $datestamp" > one &&
400 git add one &&
401 git commit -m "Branch" &&
402 setdate_and_increment &&
403 git tag -m "Tagging at $datestamp" master &&
404 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
405 test_cmp expected actual
406'
407
408cat >expected <<\EOF
409heads/master
410master
411EOF
412
413test_expect_success 'Check ambiguous head and tag refs (loose)' '
414 git config --bool core.warnambiguousrefs false &&
415 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
416 test_cmp expected actual
417'
418
419cat >expected <<\EOF
420heads/ambiguous
421ambiguous
422EOF
423
424test_expect_success 'Check ambiguous head and tag refs II (loose)' '
425 git checkout master &&
426 git tag ambiguous testtag^0 &&
427 git branch ambiguous testtag^0 &&
428 git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
429 test_cmp expected actual
430'
431
432test_expect_success 'an unusual tag with an incomplete line' '
433
434 git tag -m "bogo" bogo &&
435 bogo=$(git cat-file tag bogo) &&
436 bogo=$(printf "%s" "$bogo" | git mktag) &&
437 git tag -f bogo "$bogo" &&
438 git for-each-ref --format "%(body)" refs/tags/bogo
439
440'
441
442test_expect_success 'create tag with subject and body content' '
443 cat >>msg <<-\EOF &&
444 the subject line
445
446 first body line
447 second body line
448 EOF
449 git tag -F msg subject-body
450'
451test_atom refs/tags/subject-body subject 'the subject line'
452test_atom refs/tags/subject-body body 'first body line
453second body line
454'
455test_atom refs/tags/subject-body contents 'the subject line
456
457first body line
458second body line
459'
460
461test_expect_success 'create tag with multiline subject' '
462 cat >msg <<-\EOF &&
463 first subject line
464 second subject line
465
466 first body line
467 second body line
468 EOF
469 git tag -F msg multiline
470'
471test_atom refs/tags/multiline subject 'first subject line second subject line'
472test_atom refs/tags/multiline contents:subject 'first subject line second subject line'
473test_atom refs/tags/multiline body 'first body line
474second body line
475'
476test_atom refs/tags/multiline contents:body 'first body line
477second body line
478'
479test_atom refs/tags/multiline contents:signature ''
480test_atom refs/tags/multiline contents 'first subject line
481second subject line
482
483first body line
484second body line
485'
486
487test_expect_success GPG 'create signed tags' '
488 git tag -s -m "" signed-empty &&
489 git tag -s -m "subject line" signed-short &&
490 cat >msg <<-\EOF &&
491 subject line
492
493 body contents
494 EOF
495 git tag -s -F msg signed-long
496'
497
498sig='-----BEGIN PGP SIGNATURE-----
499-----END PGP SIGNATURE-----
500'
501
502PREREQ=GPG
503test_atom refs/tags/signed-empty subject ''
504test_atom refs/tags/signed-empty contents:subject ''
505test_atom refs/tags/signed-empty body "$sig"
506test_atom refs/tags/signed-empty contents:body ''
507test_atom refs/tags/signed-empty contents:signature "$sig"
508test_atom refs/tags/signed-empty contents "$sig"
509
510test_atom refs/tags/signed-short subject 'subject line'
511test_atom refs/tags/signed-short contents:subject 'subject line'
512test_atom refs/tags/signed-short body "$sig"
513test_atom refs/tags/signed-short contents:body ''
514test_atom refs/tags/signed-short contents:signature "$sig"
515test_atom refs/tags/signed-short contents "subject line
516$sig"
517
518test_atom refs/tags/signed-long subject 'subject line'
519test_atom refs/tags/signed-long contents:subject 'subject line'
520test_atom refs/tags/signed-long body "body contents
521$sig"
522test_atom refs/tags/signed-long contents:body 'body contents
523'
524test_atom refs/tags/signed-long contents:signature "$sig"
525test_atom refs/tags/signed-long contents "subject line
526
527body contents
528$sig"
529
530cat >expected <<EOF
531$(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
532$(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
533EOF
534
535test_expect_success 'Verify sort with multiple keys' '
536 git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
537 refs/tags/bogo refs/tags/master > actual &&
538 test_cmp expected actual
539'
540test_done