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