3 # Copyright (c) 2007 Andy Parkins
6 test_description
='for-each-ref test'
9 .
"$TEST_DIRECTORY"/lib-gpg.sh
11 # Mon Jul 3 15:18:43 2006 +0000
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 &&
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
36 head) ref
=refs
/heads
/master
;;
37 tag
) ref
=refs
/tags
/testtag
;;
40 printf '%s\n' "$3" >expected
41 test_expect_
${4:-success} $PREREQ "basic atom: $1 $2" "
42 git for-each-ref --format='%($2)' $ref >actual &&
43 sanitize_pgp <actual >actual.clean &&
44 test_cmp expected actual.clean
48 test_atom
head refname refs
/heads
/master
49 test_atom
head upstream refs
/remotes
/origin
/master
50 test_atom
head objecttype commit
51 test_atom
head objectsize
171
52 test_atom
head objectname $
(git rev-parse refs
/heads
/master
)
53 test_atom
head tree $
(git rev-parse refs
/heads
/master^
{tree
})
54 test_atom
head parent
''
55 test_atom
head numparent
0
56 test_atom
head object
''
57 test_atom
head type ''
58 test_atom
head '*objectname' ''
59 test_atom
head '*objecttype' ''
60 test_atom
head author
'A U Thor <author@example.com> 1151939924 +0200'
61 test_atom
head authorname
'A U Thor'
62 test_atom
head authoremail
'<author@example.com>'
63 test_atom
head authordate
'Mon Jul 3 17:18:44 2006 +0200'
64 test_atom
head committer
'C O Mitter <committer@example.com> 1151939923 +0200'
65 test_atom
head committername
'C O Mitter'
66 test_atom
head committeremail
'<committer@example.com>'
67 test_atom
head committerdate
'Mon Jul 3 17:18:43 2006 +0200'
69 test_atom
head tagger
''
70 test_atom
head taggername
''
71 test_atom
head taggeremail
''
72 test_atom
head taggerdate
''
73 test_atom
head creator
'C O Mitter <committer@example.com> 1151939923 +0200'
74 test_atom
head creatordate
'Mon Jul 3 17:18:43 2006 +0200'
75 test_atom
head subject
'Initial'
76 test_atom
head contents
:subject
'Initial'
77 test_atom
head body
''
78 test_atom
head contents
:body
''
79 test_atom
head contents
:signature
''
80 test_atom
head contents
'Initial
82 test_atom
head HEAD
'*'
84 test_atom tag refname refs
/tags
/testtag
85 test_atom tag upstream
''
86 test_atom tag objecttype tag
87 test_atom tag objectsize
154
88 test_atom tag objectname $
(git rev-parse refs
/tags
/testtag
)
90 test_atom tag parent
''
91 test_atom tag numparent
''
92 test_atom tag object $
(git rev-parse refs
/tags
/testtag^
0)
93 test_atom tag
type 'commit'
94 test_atom tag
'*objectname' '67a36f10722846e891fbada1ba48ed035de75581'
95 test_atom tag
'*objecttype' 'commit'
96 test_atom tag author
''
97 test_atom tag authorname
''
98 test_atom tag authoremail
''
99 test_atom tag authordate
''
100 test_atom tag committer
''
101 test_atom tag committername
''
102 test_atom tag committeremail
''
103 test_atom tag committerdate
''
104 test_atom tag tag
'testtag'
105 test_atom tag tagger
'C O Mitter <committer@example.com> 1151939925 +0200'
106 test_atom tag taggername
'C O Mitter'
107 test_atom tag taggeremail
'<committer@example.com>'
108 test_atom tag taggerdate
'Mon Jul 3 17:18:45 2006 +0200'
109 test_atom tag creator
'C O Mitter <committer@example.com> 1151939925 +0200'
110 test_atom tag creatordate
'Mon Jul 3 17:18:45 2006 +0200'
111 test_atom tag subject
'Tagging at 1151939927'
112 test_atom tag contents
:subject
'Tagging at 1151939927'
113 test_atom tag body
''
114 test_atom tag contents
:body
''
115 test_atom tag contents
:signature
''
116 test_atom tag contents
'Tagging at 1151939927
118 test_atom tag HEAD
' '
120 test_expect_success
'Check invalid atoms names are errors' '
121 test_must_fail git for-each-ref --format="%(INVALID)" refs/heads
124 test_expect_success
'Check format specifiers are ignored in naming date atoms' '
125 git for-each-ref --format="%(authordate)" refs/heads &&
126 git for-each-ref --format="%(authordate:default) %(authordate)" refs/heads &&
127 git for-each-ref --format="%(authordate) %(authordate:default)" refs/heads &&
128 git for-each-ref --format="%(authordate:default) %(authordate:default)" refs/heads
131 test_expect_success
'Check valid format specifiers for date fields' '
132 git for-each-ref --format="%(authordate:default)" refs/heads &&
133 git for-each-ref --format="%(authordate:relative)" refs/heads &&
134 git for-each-ref --format="%(authordate:short)" refs/heads &&
135 git for-each-ref --format="%(authordate:local)" refs/heads &&
136 git for-each-ref --format="%(authordate:iso8601)" refs/heads &&
137 git for-each-ref --format="%(authordate:rfc2822)" refs/heads
140 test_expect_success
'Check invalid format specifiers are errors' '
141 test_must_fail git for-each-ref --format="%(authordate:INVALID)" refs/heads
145 'refs/heads/master' 'Mon Jul 3 17:18:43 2006 +0200' 'Mon Jul 3 17:18:44 2006 +0200'
146 'refs/tags/testtag' 'Mon Jul 3 17:18:45 2006 +0200'
149 test_expect_success
'Check unformatted date fields output' '
150 (git for-each-ref --shell --format="%(refname) %(committerdate) %(authordate)" refs/heads &&
151 git for-each-ref --shell --format="%(refname) %(taggerdate)" refs/tags) >actual &&
152 test_cmp expected actual
155 test_expect_success
'Check format "default" formatted date fields output' '
157 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
158 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
159 test_cmp expected actual
162 # Don't know how to do relative check because I can't know when this script
163 # is going to be run and can't fake the current time to git, and hence can't
164 # provide expected output. Instead, I'll just make sure that "relative"
165 # doesn't exit in error
167 #cat >expected <<\EOF
171 test_expect_success
'Check format "relative" date fields output' '
173 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
174 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
178 'refs/heads/master' '2006-07-03' '2006-07-03'
179 'refs/tags/testtag' '2006-07-03'
182 test_expect_success
'Check format "short" date fields output' '
184 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
185 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
186 test_cmp expected actual
190 'refs/heads/master' 'Mon Jul 3 15:18:43 2006' 'Mon Jul 3 15:18:44 2006'
191 'refs/tags/testtag' 'Mon Jul 3 15:18:45 2006'
194 test_expect_success
'Check format "local" date fields output' '
196 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
197 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
198 test_cmp expected actual
202 'refs/heads/master' '2006-07-03 17:18:43 +0200' '2006-07-03 17:18:44 +0200'
203 'refs/tags/testtag' '2006-07-03 17:18:45 +0200'
206 test_expect_success
'Check format "iso8601" date fields output' '
208 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
209 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
210 test_cmp expected actual
214 'refs/heads/master' 'Mon, 3 Jul 2006 17:18:43 +0200' 'Mon, 3 Jul 2006 17:18:44 +0200'
215 'refs/tags/testtag' 'Mon, 3 Jul 2006 17:18:45 +0200'
218 test_expect_success
'Check format "rfc2822" date fields output' '
220 (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
221 git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
222 test_cmp expected actual
227 refs
/remotes
/origin
/master
231 test_expect_success
'Verify ascending sort' '
232 git for-each-ref --format="%(refname)" --sort=refname >actual &&
233 test_cmp expected actual
239 refs
/remotes
/origin
/master
243 test_expect_success
'Verify descending sort' '
244 git for-each-ref --format="%(refname)" --sort=-refname >actual &&
245 test_cmp expected actual
250 'refs/remotes/origin/master'
254 test_expect_success
'Quoting style: shell' '
255 git for-each-ref --shell --format="%(refname)" >actual &&
256 test_cmp expected actual
259 test_expect_success
'Quoting style: perl' '
260 git for-each-ref --perl --format="%(refname)" >actual &&
261 test_cmp expected actual
264 test_expect_success
'Quoting style: python' '
265 git for-each-ref --python --format="%(refname)" >actual &&
266 test_cmp expected actual
271 "refs/remotes/origin/master"
275 test_expect_success
'Quoting style: tcl' '
276 git for-each-ref --tcl --format="%(refname)" >actual &&
277 test_cmp expected actual
280 for i
in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
281 test_expect_success
"more than one quoting style: $i" "
282 git for-each-ref $i 2>&1 | (read line &&
284 \"error: more than one quoting style\"*) : happy;;
295 test_expect_success
'Check short refname format' '
296 (git for-each-ref --format="%(refname:short)" refs/heads &&
297 git for-each-ref --format="%(refname:short)" refs/tags) >actual &&
298 test_cmp expected actual
305 test_expect_success
'Check short upstream format' '
306 git for-each-ref --format="%(upstream:short)" refs/heads >actual &&
307 test_cmp expected actual
310 test_expect_success
'setup for upstream:track[short]' '
318 test_expect_success
'Check upstream:track format' '
319 git for-each-ref --format="%(upstream:track)" refs/heads >actual &&
320 test_cmp expected actual
327 test_expect_success
'Check upstream:trackshort format' '
328 git for-each-ref --format="%(upstream:trackshort)" refs/heads >actual &&
329 test_cmp expected actual
332 test_expect_success
'Check that :track[short] cannot be used with other atoms' '
333 test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
334 test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
338 $(git rev-parse --short HEAD)
341 test_expect_success
'Check short objectname format' '
342 git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
343 test_cmp expected actual
346 test_expect_success
'Check for invalid refname format' '
347 test_must_fail git for-each-ref --format="%(refname:INVALID)"
352 git config
--get-color no.such.slot
"$1"
356 $(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
357 $(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
358 $(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
359 $(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
362 test_expect_success
'Check %(color:...) ' '
363 git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
364 test_cmp expected actual
372 test_expect_success
'Check ambiguous head and tag refs (strict)' '
373 git config --bool core.warnambiguousrefs true &&
374 git checkout -b newtag &&
375 echo "Using $datestamp" > one &&
377 git commit -m "Branch" &&
378 setdate_and_increment &&
379 git tag -m "Tagging at $datestamp" master &&
380 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
381 test_cmp expected actual
389 test_expect_success
'Check ambiguous head and tag refs (loose)' '
390 git config --bool core.warnambiguousrefs false &&
391 git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
392 test_cmp expected actual
400 test_expect_success
'Check ambiguous head and tag refs II (loose)' '
401 git checkout master &&
402 git tag ambiguous testtag^0 &&
403 git branch ambiguous testtag^0 &&
404 git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
405 test_cmp expected actual
408 test_expect_success
'an unusual tag with an incomplete line' '
410 git tag -m "bogo" bogo &&
411 bogo=$(git cat-file tag bogo) &&
412 bogo=$(printf "%s" "$bogo" | git mktag) &&
413 git tag -f bogo "$bogo" &&
414 git for-each-ref --format "%(body)" refs/tags/bogo
418 test_expect_success
'create tag with subject and body content' '
425 git tag -F msg subject-body
427 test_atom refs
/tags
/subject-body subject
'the subject line'
428 test_atom refs
/tags
/subject-body body
'first body line
431 test_atom refs
/tags
/subject-body contents
'the subject line
437 test_expect_success
'create tag with multiline subject' '
445 git tag -F msg multiline
447 test_atom refs
/tags
/multiline subject
'first subject line second subject line'
448 test_atom refs
/tags
/multiline contents
:subject
'first subject line second subject line'
449 test_atom refs
/tags
/multiline body
'first body line
452 test_atom refs
/tags
/multiline contents
:body
'first body line
455 test_atom refs
/tags
/multiline contents
:signature
''
456 test_atom refs
/tags
/multiline contents
'first subject line
463 test_expect_success GPG
'create signed tags' '
464 git tag -s -m "" signed-empty &&
465 git tag -s -m "subject line" signed-short &&
471 git tag -s -F msg signed-long
474 sig
='-----BEGIN PGP SIGNATURE-----
475 -----END PGP SIGNATURE-----
479 test_atom refs
/tags
/signed-empty subject
''
480 test_atom refs
/tags
/signed-empty contents
:subject
''
481 test_atom refs
/tags
/signed-empty body
"$sig"
482 test_atom refs
/tags
/signed-empty contents
:body
''
483 test_atom refs
/tags
/signed-empty contents
:signature
"$sig"
484 test_atom refs
/tags
/signed-empty contents
"$sig"
486 test_atom refs
/tags
/signed-short subject
'subject line'
487 test_atom refs
/tags
/signed-short contents
:subject
'subject line'
488 test_atom refs
/tags
/signed-short body
"$sig"
489 test_atom refs
/tags
/signed-short contents
:body
''
490 test_atom refs
/tags
/signed-short contents
:signature
"$sig"
491 test_atom refs
/tags
/signed-short contents
"subject line
494 test_atom refs
/tags
/signed-long subject
'subject line'
495 test_atom refs
/tags
/signed-long contents
:subject
'subject line'
496 test_atom refs
/tags
/signed-long body
"body contents
498 test_atom refs
/tags
/signed-long contents
:body
'body contents
500 test_atom refs
/tags
/signed-long contents
:signature
"$sig"
501 test_atom refs
/tags
/signed-long contents
"subject line
507 $(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
508 $(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
511 test_expect_success
'Verify sort with multiple keys' '
512 git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
513 refs/tags/bogo refs/tags/master > actual &&
514 test_cmp expected actual