Ninth batch for 2.7
[git/mingw.git] / t / t6300-for-each-ref.sh
blob03873b09d1a4480549e1b8ab92fc3780fb874d89
1 #!/bin/sh
3 # Copyright (c) 2007 Andy Parkins
6 test_description='for-each-ref test'
8 . ./test-lib.sh
9 . "$TEST_DIRECTORY"/lib-gpg.sh
11 # Mon Jul 3 23:18:43 2006 +0000
12 datestamp=1151968723
13 setdate_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
21 test_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
37 test_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
51 test_atom head refname refs/heads/master
52 test_atom head upstream refs/remotes/origin/master
53 test_atom head push refs/remotes/myfork/master
54 test_atom head objecttype commit
55 test_atom head objectsize 171
56 test_atom head objectname $(git rev-parse refs/heads/master)
57 test_atom head tree $(git rev-parse refs/heads/master^{tree})
58 test_atom head parent ''
59 test_atom head numparent 0
60 test_atom head object ''
61 test_atom head type ''
62 test_atom head '*objectname' ''
63 test_atom head '*objecttype' ''
64 test_atom head author 'A U Thor <author@example.com> 1151968724 +0200'
65 test_atom head authorname 'A U Thor'
66 test_atom head authoremail '<author@example.com>'
67 test_atom head authordate 'Tue Jul 4 01:18:44 2006 +0200'
68 test_atom head committer 'C O Mitter <committer@example.com> 1151968723 +0200'
69 test_atom head committername 'C O Mitter'
70 test_atom head committeremail '<committer@example.com>'
71 test_atom head committerdate 'Tue Jul 4 01:18:43 2006 +0200'
72 test_atom head tag ''
73 test_atom head tagger ''
74 test_atom head taggername ''
75 test_atom head taggeremail ''
76 test_atom head taggerdate ''
77 test_atom head creator 'C O Mitter <committer@example.com> 1151968723 +0200'
78 test_atom head creatordate 'Tue Jul 4 01:18:43 2006 +0200'
79 test_atom head subject 'Initial'
80 test_atom head contents:subject 'Initial'
81 test_atom head body ''
82 test_atom head contents:body ''
83 test_atom head contents:signature ''
84 test_atom head contents 'Initial
86 test_atom head HEAD '*'
88 test_atom tag refname refs/tags/testtag
89 test_atom tag upstream ''
90 test_atom tag push ''
91 test_atom tag objecttype tag
92 test_atom tag objectsize 154
93 test_atom tag objectname $(git rev-parse refs/tags/testtag)
94 test_atom tag tree ''
95 test_atom tag parent ''
96 test_atom tag numparent ''
97 test_atom tag object $(git rev-parse refs/tags/testtag^0)
98 test_atom tag type 'commit'
99 test_atom tag '*objectname' 'ea122842f48be4afb2d1fc6a4b96c05885ab7463'
100 test_atom tag '*objecttype' 'commit'
101 test_atom tag author ''
102 test_atom tag authorname ''
103 test_atom tag authoremail ''
104 test_atom tag authordate ''
105 test_atom tag committer ''
106 test_atom tag committername ''
107 test_atom tag committeremail ''
108 test_atom tag committerdate ''
109 test_atom tag tag 'testtag'
110 test_atom tag tagger 'C O Mitter <committer@example.com> 1151968725 +0200'
111 test_atom tag taggername 'C O Mitter'
112 test_atom tag taggeremail '<committer@example.com>'
113 test_atom tag taggerdate 'Tue Jul 4 01:18:45 2006 +0200'
114 test_atom tag creator 'C O Mitter <committer@example.com> 1151968725 +0200'
115 test_atom tag creatordate 'Tue Jul 4 01:18:45 2006 +0200'
116 test_atom tag subject 'Tagging at 1151968727'
117 test_atom tag contents:subject 'Tagging at 1151968727'
118 test_atom tag body ''
119 test_atom tag contents:body ''
120 test_atom tag contents:signature ''
121 test_atom tag contents 'Tagging at 1151968727
123 test_atom tag HEAD ' '
125 test_expect_success 'Check invalid atoms names are errors' '
126 test_must_fail git for-each-ref --format="%(INVALID)" refs/heads
129 test_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
136 test_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
145 test_expect_success 'Check invalid format specifiers are errors' '
146 test_must_fail git for-each-ref --format="%(authordate:INVALID)" refs/heads
149 test_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'
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
169 test_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"
176 test_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"
183 test_expect_success 'Check format "default-local" date fields output' '
184 test_date default-local "Mon Jul 3 23:18:43 2006" "Mon Jul 3 23:18:44 2006" "Mon Jul 3 23:18:45 2006"
187 # Don't know how to do relative check because I can't know when this script
188 # is going to be run and can't fake the current time to git, and hence can't
189 # provide expected output. Instead, I'll just make sure that "relative"
190 # doesn't exit in error
191 test_expect_success 'Check format "relative" date fields output' '
192 f=relative &&
193 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
194 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
197 # We just check that this is the same as "relative" for now.
198 test_expect_success 'Check format "relative-local" date fields output' '
199 test_date relative-local \
200 "$(git for-each-ref --format="%(committerdate:relative)" refs/heads)" \
201 "$(git for-each-ref --format="%(authordate:relative)" refs/heads)" \
202 "$(git for-each-ref --format="%(taggerdate:relative)" refs/tags)"
205 test_expect_success 'Check format "short" date fields output' '
206 test_date short 2006-07-04 2006-07-04 2006-07-04
209 test_expect_success 'Check format "short-local" date fields output' '
210 test_date short-local 2006-07-03 2006-07-03 2006-07-03
213 test_expect_success 'Check format "local" date fields output' '
214 test_date local \
215 "Mon Jul 3 23:18:43 2006" \
216 "Mon Jul 3 23:18:44 2006" \
217 "Mon Jul 3 23:18:45 2006"
220 test_expect_success 'Check format "iso8601" date fields output' '
221 test_date iso8601 \
222 "2006-07-04 01:18:43 +0200" \
223 "2006-07-04 01:18:44 +0200" \
224 "2006-07-04 01:18:45 +0200"
227 test_expect_success 'Check format "iso8601-local" date fields output' '
228 test_date iso8601-local "2006-07-03 23:18:43 +0000" "2006-07-03 23:18:44 +0000" "2006-07-03 23:18:45 +0000"
231 test_expect_success 'Check format "rfc2822" date fields output' '
232 test_date rfc2822 \
233 "Tue, 4 Jul 2006 01:18:43 +0200" \
234 "Tue, 4 Jul 2006 01:18:44 +0200" \
235 "Tue, 4 Jul 2006 01:18:45 +0200"
238 test_expect_success 'Check format "rfc2822-local" date fields output' '
239 test_date rfc2822-local "Mon, 3 Jul 2006 23:18:43 +0000" "Mon, 3 Jul 2006 23:18:44 +0000" "Mon, 3 Jul 2006 23:18:45 +0000"
242 test_expect_success 'Check format "raw" date fields output' '
243 test_date raw "1151968723 +0200" "1151968724 +0200" "1151968725 +0200"
246 test_expect_success 'Check format "raw-local" date fields output' '
247 test_date raw-local "1151968723 +0000" "1151968724 +0000" "1151968725 +0000"
250 test_expect_success 'Check format of strftime date fields' '
251 echo "my date is 2006-07-04" >expected &&
252 git for-each-ref \
253 --format="%(authordate:format:my date is %Y-%m-%d)" \
254 refs/heads >actual &&
255 test_cmp expected actual
258 test_expect_success 'Check format of strftime-local date fields' '
259 echo "my date is 2006-07-03" >expected &&
260 git for-each-ref \
261 --format="%(authordate:format-local:my date is %Y-%m-%d)" \
262 refs/heads >actual &&
263 test_cmp expected actual
266 test_expect_success 'exercise strftime with odd fields' '
267 echo >expected &&
268 git for-each-ref --format="%(authordate:format:)" refs/heads >actual &&
269 test_cmp expected actual &&
270 long="long format -- $_z40$_z40$_z40$_z40$_z40$_z40$_z40" &&
271 echo $long >expected &&
272 git for-each-ref --format="%(authordate:format:$long)" refs/heads >actual &&
273 test_cmp expected actual
276 cat >expected <<\EOF
277 refs/heads/master
278 refs/remotes/origin/master
279 refs/tags/testtag
282 test_expect_success 'Verify ascending sort' '
283 git for-each-ref --format="%(refname)" --sort=refname >actual &&
284 test_cmp expected actual
288 cat >expected <<\EOF
289 refs/tags/testtag
290 refs/remotes/origin/master
291 refs/heads/master
294 test_expect_success 'Verify descending sort' '
295 git for-each-ref --format="%(refname)" --sort=-refname >actual &&
296 test_cmp expected actual
299 cat >expected <<\EOF
300 'refs/heads/master'
301 'refs/remotes/origin/master'
302 'refs/tags/testtag'
305 test_expect_success 'Quoting style: shell' '
306 git for-each-ref --shell --format="%(refname)" >actual &&
307 test_cmp expected actual
310 test_expect_success 'Quoting style: perl' '
311 git for-each-ref --perl --format="%(refname)" >actual &&
312 test_cmp expected actual
315 test_expect_success 'Quoting style: python' '
316 git for-each-ref --python --format="%(refname)" >actual &&
317 test_cmp expected actual
320 cat >expected <<\EOF
321 "refs/heads/master"
322 "refs/remotes/origin/master"
323 "refs/tags/testtag"
326 test_expect_success 'Quoting style: tcl' '
327 git for-each-ref --tcl --format="%(refname)" >actual &&
328 test_cmp expected actual
331 for i in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
332 test_expect_success "more than one quoting style: $i" "
333 git for-each-ref $i 2>&1 | (read line &&
334 case \$line in
335 \"error: more than one quoting style\"*) : happy;;
336 *) false
337 esac)
339 done
341 cat >expected <<\EOF
342 master
343 testtag
346 test_expect_success 'Check short refname format' '
347 (git for-each-ref --format="%(refname:short)" refs/heads &&
348 git for-each-ref --format="%(refname:short)" refs/tags) >actual &&
349 test_cmp expected actual
352 cat >expected <<EOF
353 origin/master
356 test_expect_success 'Check short upstream format' '
357 git for-each-ref --format="%(upstream:short)" refs/heads >actual &&
358 test_cmp expected actual
361 test_expect_success 'setup for upstream:track[short]' '
362 test_commit two
365 cat >expected <<EOF
366 [ahead 1]
369 test_expect_success 'Check upstream:track format' '
370 git for-each-ref --format="%(upstream:track)" refs/heads >actual &&
371 test_cmp expected actual
374 cat >expected <<EOF
378 test_expect_success 'Check upstream:trackshort format' '
379 git for-each-ref --format="%(upstream:trackshort)" refs/heads >actual &&
380 test_cmp expected actual
383 test_expect_success 'Check that :track[short] cannot be used with other atoms' '
384 test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
385 test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
388 test_expect_success 'Check that :track[short] works when upstream is invalid' '
389 cat >expected <<-\EOF &&
393 test_when_finished "git config branch.master.merge refs/heads/master" &&
394 git config branch.master.merge refs/heads/does-not-exist &&
395 git for-each-ref \
396 --format="%(upstream:track)$LF%(upstream:trackshort)" \
397 refs/heads >actual &&
398 test_cmp expected actual
401 test_expect_success '%(push) supports tracking specifiers, too' '
402 echo "[ahead 1]" >expected &&
403 git for-each-ref --format="%(push:track)" refs/heads >actual &&
404 test_cmp expected actual
407 cat >expected <<EOF
408 $(git rev-parse --short HEAD)
411 test_expect_success 'Check short objectname format' '
412 git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
413 test_cmp expected actual
416 test_expect_success 'Check for invalid refname format' '
417 test_must_fail git for-each-ref --format="%(refname:INVALID)"
420 get_color ()
422 git config --get-color no.such.slot "$1"
425 cat >expected <<EOF
426 $(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
427 $(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
428 $(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
429 $(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
432 test_expect_success 'Check %(color:...) ' '
433 git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
434 test_cmp expected actual
437 cat >expected <<\EOF
438 heads/master
439 tags/master
442 test_expect_success 'Check ambiguous head and tag refs (strict)' '
443 git config --bool core.warnambiguousrefs true &&
444 git checkout -b newtag &&
445 echo "Using $datestamp" > one &&
446 git add one &&
447 git commit -m "Branch" &&
448 setdate_and_increment &&
449 git tag -m "Tagging at $datestamp" master &&
450 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
451 test_cmp expected actual
454 cat >expected <<\EOF
455 heads/master
456 master
459 test_expect_success 'Check ambiguous head and tag refs (loose)' '
460 git config --bool core.warnambiguousrefs false &&
461 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
462 test_cmp expected actual
465 cat >expected <<\EOF
466 heads/ambiguous
467 ambiguous
470 test_expect_success 'Check ambiguous head and tag refs II (loose)' '
471 git checkout master &&
472 git tag ambiguous testtag^0 &&
473 git branch ambiguous testtag^0 &&
474 git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
475 test_cmp expected actual
478 test_expect_success 'an unusual tag with an incomplete line' '
480 git tag -m "bogo" bogo &&
481 bogo=$(git cat-file tag bogo) &&
482 bogo=$(printf "%s" "$bogo" | git mktag) &&
483 git tag -f bogo "$bogo" &&
484 git for-each-ref --format "%(body)" refs/tags/bogo
488 test_expect_success 'create tag with subject and body content' '
489 cat >>msg <<-\EOF &&
490 the subject line
492 first body line
493 second body line
495 git tag -F msg subject-body
497 test_atom refs/tags/subject-body subject 'the subject line'
498 test_atom refs/tags/subject-body body 'first body line
499 second body line
501 test_atom refs/tags/subject-body contents 'the subject line
503 first body line
504 second body line
507 test_expect_success 'create tag with multiline subject' '
508 cat >msg <<-\EOF &&
509 first subject line
510 second subject line
512 first body line
513 second body line
515 git tag -F msg multiline
517 test_atom refs/tags/multiline subject 'first subject line second subject line'
518 test_atom refs/tags/multiline contents:subject 'first subject line second subject line'
519 test_atom refs/tags/multiline body 'first body line
520 second body line
522 test_atom refs/tags/multiline contents:body 'first body line
523 second body line
525 test_atom refs/tags/multiline contents:signature ''
526 test_atom refs/tags/multiline contents 'first subject line
527 second subject line
529 first body line
530 second body line
533 test_expect_success GPG 'create signed tags' '
534 git tag -s -m "" signed-empty &&
535 git tag -s -m "subject line" signed-short &&
536 cat >msg <<-\EOF &&
537 subject line
539 body contents
541 git tag -s -F msg signed-long
544 sig='-----BEGIN PGP SIGNATURE-----
545 -----END PGP SIGNATURE-----
548 PREREQ=GPG
549 test_atom refs/tags/signed-empty subject ''
550 test_atom refs/tags/signed-empty contents:subject ''
551 test_atom refs/tags/signed-empty body "$sig"
552 test_atom refs/tags/signed-empty contents:body ''
553 test_atom refs/tags/signed-empty contents:signature "$sig"
554 test_atom refs/tags/signed-empty contents "$sig"
556 test_atom refs/tags/signed-short subject 'subject line'
557 test_atom refs/tags/signed-short contents:subject 'subject line'
558 test_atom refs/tags/signed-short body "$sig"
559 test_atom refs/tags/signed-short contents:body ''
560 test_atom refs/tags/signed-short contents:signature "$sig"
561 test_atom refs/tags/signed-short contents "subject line
562 $sig"
564 test_atom refs/tags/signed-long subject 'subject line'
565 test_atom refs/tags/signed-long contents:subject 'subject line'
566 test_atom refs/tags/signed-long body "body contents
567 $sig"
568 test_atom refs/tags/signed-long contents:body 'body contents
570 test_atom refs/tags/signed-long contents:signature "$sig"
571 test_atom refs/tags/signed-long contents "subject line
573 body contents
574 $sig"
576 cat >expected <<EOF
577 $(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
578 $(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
581 test_expect_success 'Verify sort with multiple keys' '
582 git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
583 refs/tags/bogo refs/tags/master > actual &&
584 test_cmp expected actual
586 test_done