]>
Commit | Line | Data |
---|---|---|
446c6fae RJ |
1 | #!/bin/sh |
2 | # | |
3 | # | |
4 | ||
0cb0e143 | 5 | test_description='git mktag: tag object verify test' |
446c6fae RJ |
6 | |
7 | . ./test-lib.sh | |
8 | ||
9 | ########################################################### | |
10 | # check the tag.sig file, expecting verify_tag() to fail, | |
11 | # and checking that the error message matches the pattern | |
12 | # given in the expect.pat file. | |
13 | ||
14 | check_verify_failure () { | |
fce3b089 ÆAB |
15 | subject=$1 && |
16 | message=$2 && | |
17 | shift 2 && | |
18 | ||
47c0cb1a ÆAB |
19 | no_strict= && |
20 | fsck_obj_ok= && | |
fce3b089 ÆAB |
21 | no_strict= && |
22 | while test $# != 0 | |
23 | do | |
24 | case "$1" in | |
25 | --no-strict) | |
26 | no_strict=yes | |
27 | ;; | |
47c0cb1a ÆAB |
28 | --fsck-obj-ok) |
29 | fsck_obj_ok=yes | |
30 | ;; | |
fce3b089 ÆAB |
31 | esac && |
32 | shift | |
33 | done && | |
34 | ||
35 | test_expect_success "fail with [--[no-]strict]: $subject" ' | |
36 | test_must_fail git mktag <tag.sig 2>err && | |
37 | if test -z "$no_strict" | |
06ce7915 | 38 | then |
fce3b089 ÆAB |
39 | test_must_fail git mktag <tag.sig 2>err2 && |
40 | test_cmp err err2 | |
6a748c2c ÆAB |
41 | else |
42 | git mktag --no-strict <tag.sig | |
06ce7915 | 43 | fi |
fce3b089 | 44 | ' |
47c0cb1a ÆAB |
45 | |
46 | test_expect_success "setup: $subject" ' | |
eddc1f55 ÆAB |
47 | tag_ref=refs/tags/bad_tag && |
48 | ||
47c0cb1a ÆAB |
49 | # Reset any leftover state from the last $subject |
50 | rm -rf bad-tag && | |
51 | ||
52 | git init --bare bad-tag && | |
eddc1f55 | 53 | bad_tag=$(git -C bad-tag hash-object -t tag -w --stdin --literally <tag.sig) |
47c0cb1a ÆAB |
54 | ' |
55 | ||
56 | test_expect_success "hash-object & fsck unreachable: $subject" ' | |
57 | if test -n "$fsck_obj_ok" | |
58 | then | |
59 | git -C bad-tag fsck | |
60 | else | |
61 | test_must_fail git -C bad-tag fsck | |
62 | fi | |
63 | ' | |
eddc1f55 ÆAB |
64 | |
65 | test_expect_success "update-ref & fsck reachable: $subject" ' | |
66 | # Make sure the earlier test created it for us | |
67 | git rev-parse "$bad_tag" && | |
68 | ||
69 | # The update-ref of the bad content will fail, do it | |
70 | # anyway to see if it segfaults | |
71 | test_might_fail git -C bad-tag update-ref "$tag_ref" "$bad_tag" && | |
72 | ||
73 | # Manually create the broken, we cannot do it with | |
74 | # update-ref | |
e9706a18 HWN |
75 | test-tool -C bad-tag ref-store main delete-refs 0 msg "$tag_ref" && |
76 | test-tool -C bad-tag ref-store main update-ref msg "$tag_ref" $bad_tag $ZERO_OID REF_SKIP_OID_VERIFICATION && | |
eddc1f55 ÆAB |
77 | |
78 | # Unlike fsck-ing unreachable content above, this | |
79 | # will always fail. | |
80 | test_must_fail git -C bad-tag fsck | |
81 | ' | |
b48015b3 ÆAB |
82 | |
83 | test_expect_success "for-each-ref: $subject" ' | |
84 | # Make sure the earlier test created it for us | |
85 | git rev-parse "$bad_tag" && | |
86 | ||
e9706a18 HWN |
87 | test-tool -C bad-tag ref-store main delete-refs 0 msg "$tag_ref" && |
88 | test-tool -C bad-tag ref-store main update-ref msg "$tag_ref" $bad_tag $ZERO_OID REF_SKIP_OID_VERIFICATION && | |
b48015b3 ÆAB |
89 | |
90 | printf "%s tag\t%s\n" "$bad_tag" "$tag_ref" >expected && | |
91 | git -C bad-tag for-each-ref "$tag_ref" >actual && | |
92 | test_cmp expected actual && | |
93 | ||
94 | test_must_fail git -C bad-tag for-each-ref --format="%(*objectname)" | |
95 | ' | |
2f61b3ee ÆAB |
96 | |
97 | test_expect_success "fast-export & fast-import: $subject" ' | |
98 | # Make sure the earlier test created it for us | |
99 | git rev-parse "$bad_tag" && | |
100 | ||
101 | test_must_fail git -C bad-tag fast-export --all && | |
102 | test_must_fail git -C bad-tag fast-export "$bad_tag" | |
103 | ' | |
446c6fae RJ |
104 | } |
105 | ||
ca9a1ed9 ÆAB |
106 | test_expect_mktag_success() { |
107 | test_expect_success "$1" ' | |
108 | git hash-object -t tag -w --stdin <tag.sig >expected && | |
109 | git fsck --strict && | |
110 | ||
111 | git mktag <tag.sig >hash && | |
112 | test_cmp expected hash && | |
113 | test_when_finished "git update-ref -d refs/tags/mytag $(cat hash)" && | |
114 | git update-ref refs/tags/mytag $(cat hash) $(test_oid zero) && | |
115 | git fsck --strict | |
116 | ' | |
117 | } | |
118 | ||
446c6fae RJ |
119 | ########################################################### |
120 | # first create a commit, so we have a valid object/type | |
121 | # for the tag. | |
4a45f7dd | 122 | test_expect_success 'setup' ' |
b5ca549c | 123 | test_commit A && |
692654dc ÆAB |
124 | test_commit B && |
125 | head=$(git rev-parse --verify HEAD) && | |
126 | head_parent=$(git rev-parse --verify HEAD~) && | |
127 | tree=$(git rev-parse HEAD^{tree}) && | |
128 | blob=$(git rev-parse --verify HEAD:B.t) | |
4a45f7dd | 129 | ' |
446c6fae | 130 | |
3f390a36 ÆAB |
131 | test_expect_success 'basic usage' ' |
132 | cat >tag.sig <<-EOF && | |
133 | object $head | |
134 | type commit | |
135 | tag mytag | |
136 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
137 | EOF | |
138 | git mktag <tag.sig && | |
139 | git mktag --end-of-options <tag.sig && | |
140 | test_expect_code 129 git mktag --unknown-option | |
141 | ' | |
142 | ||
446c6fae RJ |
143 | ############################################################ |
144 | # 1. length check | |
145 | ||
146 | cat >tag.sig <<EOF | |
147 | too short for a tag | |
148 | EOF | |
149 | ||
e9b20943 | 150 | check_verify_failure 'Tag object length check' \ |
06ce7915 | 151 | '^error:.* missingObject:' 'strict' |
446c6fae RJ |
152 | |
153 | ############################################################ | |
154 | # 2. object line label check | |
155 | ||
156 | cat >tag.sig <<EOF | |
0d35ccb5 | 157 | xxxxxx $head |
446c6fae RJ |
158 | type tag |
159 | tag mytag | |
e0aaf781 BC |
160 | tagger . <> 0 +0000 |
161 | ||
446c6fae RJ |
162 | EOF |
163 | ||
acf9de4c | 164 | check_verify_failure '"object" line label check' '^error:.* missingObject:' |
446c6fae RJ |
165 | |
166 | ############################################################ | |
0d35ccb5 | 167 | # 3. object line hash check |
446c6fae RJ |
168 | |
169 | cat >tag.sig <<EOF | |
0d35ccb5 | 170 | object $(echo $head | tr 0-9a-f z) |
446c6fae RJ |
171 | type tag |
172 | tag mytag | |
e0aaf781 BC |
173 | tagger . <> 0 +0000 |
174 | ||
446c6fae RJ |
175 | EOF |
176 | ||
acf9de4c | 177 | check_verify_failure '"object" line check' '^error:.* badObjectSha1:' |
446c6fae RJ |
178 | |
179 | ############################################################ | |
180 | # 4. type line label check | |
181 | ||
182 | cat >tag.sig <<EOF | |
acb49d1c | 183 | object $head |
446c6fae RJ |
184 | xxxx tag |
185 | tag mytag | |
e0aaf781 BC |
186 | tagger . <> 0 +0000 |
187 | ||
446c6fae RJ |
188 | EOF |
189 | ||
acf9de4c | 190 | check_verify_failure '"type" line label check' '^error:.* missingTypeEntry:' |
446c6fae RJ |
191 | |
192 | ############################################################ | |
193 | # 5. type line eol check | |
194 | ||
acb49d1c | 195 | echo "object $head" >tag.sig |
2aad957a | 196 | printf "type tagsssssssssssssssssssssssssssssss" >>tag.sig |
446c6fae | 197 | |
acf9de4c | 198 | check_verify_failure '"type" line eol check' '^error:.* unterminatedHeader:' |
446c6fae RJ |
199 | |
200 | ############################################################ | |
201 | # 6. tag line label check #1 | |
202 | ||
203 | cat >tag.sig <<EOF | |
acb49d1c | 204 | object $head |
446c6fae RJ |
205 | type tag |
206 | xxx mytag | |
e0aaf781 BC |
207 | tagger . <> 0 +0000 |
208 | ||
446c6fae RJ |
209 | EOF |
210 | ||
e9b20943 | 211 | check_verify_failure '"tag" line label check #1' \ |
acf9de4c | 212 | '^error:.* missingTagEntry:' |
446c6fae RJ |
213 | |
214 | ############################################################ | |
215 | # 7. tag line label check #2 | |
216 | ||
217 | cat >tag.sig <<EOF | |
acb49d1c | 218 | object $head |
446c6fae RJ |
219 | type taggggggggggggggggggggggggggggggg |
220 | tag | |
221 | EOF | |
222 | ||
e9b20943 | 223 | check_verify_failure '"tag" line label check #2' \ |
acf9de4c | 224 | '^error:.* badType:' |
446c6fae RJ |
225 | |
226 | ############################################################ | |
227 | # 8. type line type-name length check | |
228 | ||
229 | cat >tag.sig <<EOF | |
acb49d1c | 230 | object $head |
446c6fae RJ |
231 | type taggggggggggggggggggggggggggggggg |
232 | tag mytag | |
233 | EOF | |
234 | ||
e9b20943 | 235 | check_verify_failure '"type" line type-name length check' \ |
acf9de4c | 236 | '^error:.* badType:' |
446c6fae RJ |
237 | |
238 | ############################################################ | |
30f882c1 | 239 | # 9. verify object (hash/type) check |
446c6fae RJ |
240 | |
241 | cat >tag.sig <<EOF | |
acb49d1c | 242 | object $(test_oid deadbeef) |
30f882c1 ÆAB |
243 | type tag |
244 | tag mytag | |
245 | tagger . <> 0 +0000 | |
246 | ||
247 | EOF | |
248 | ||
249 | check_verify_failure 'verify object (hash/type) check -- correct type, nonexisting object' \ | |
47c0cb1a ÆAB |
250 | '^fatal: could not read tagged object' \ |
251 | --fsck-obj-ok | |
30f882c1 ÆAB |
252 | |
253 | cat >tag.sig <<EOF | |
254 | object $head | |
446c6fae RJ |
255 | type tagggg |
256 | tag mytag | |
e0aaf781 BC |
257 | tagger . <> 0 +0000 |
258 | ||
446c6fae RJ |
259 | EOF |
260 | ||
30f882c1 | 261 | check_verify_failure 'verify object (hash/type) check -- made-up type, valid object' \ |
acf9de4c | 262 | '^error:.* badType:' |
30f882c1 ÆAB |
263 | |
264 | cat >tag.sig <<EOF | |
265 | object $(test_oid deadbeef) | |
266 | type tagggg | |
267 | tag mytag | |
268 | tagger . <> 0 +0000 | |
269 | ||
270 | EOF | |
271 | ||
272 | check_verify_failure 'verify object (hash/type) check -- made-up type, nonexisting object' \ | |
acf9de4c | 273 | '^error:.* badType:' |
446c6fae | 274 | |
30f882c1 ÆAB |
275 | cat >tag.sig <<EOF |
276 | object $head | |
277 | type tree | |
278 | tag mytag | |
279 | tagger . <> 0 +0000 | |
280 | ||
281 | EOF | |
282 | ||
692654dc | 283 | check_verify_failure 'verify object (hash/type) check -- mismatched type, valid object' \ |
47c0cb1a ÆAB |
284 | '^fatal: object.*tagged as.*tree.*but is.*commit' \ |
285 | --fsck-obj-ok | |
692654dc ÆAB |
286 | |
287 | ############################################################ | |
288 | # 9.5. verify object (hash/type) check -- replacement | |
289 | ||
290 | test_expect_success 'setup replacement of commit -> commit and tree -> blob' ' | |
291 | git replace $head_parent $head && | |
292 | git replace -f $tree $blob | |
293 | ' | |
294 | ||
295 | cat >tag.sig <<EOF | |
296 | object $head_parent | |
297 | type commit | |
298 | tag mytag | |
299 | tagger . <> 0 +0000 | |
300 | ||
301 | EOF | |
302 | ||
303 | test_expect_mktag_success 'tag to a commit replaced by another commit' | |
304 | ||
305 | cat >tag.sig <<EOF | |
306 | object $tree | |
307 | type tree | |
308 | tag mytag | |
309 | tagger . <> 0 +0000 | |
310 | ||
311 | EOF | |
312 | ||
30f882c1 | 313 | check_verify_failure 'verify object (hash/type) check -- mismatched type, valid object' \ |
47c0cb1a ÆAB |
314 | '^fatal: object.*tagged as.*tree.*but is.*blob' \ |
315 | --fsck-obj-ok | |
30f882c1 | 316 | |
446c6fae RJ |
317 | ############################################################ |
318 | # 10. verify tag-name check | |
319 | ||
320 | cat >tag.sig <<EOF | |
321 | object $head | |
322 | type commit | |
323 | tag my tag | |
e0aaf781 BC |
324 | tagger . <> 0 +0000 |
325 | ||
446c6fae RJ |
326 | EOF |
327 | ||
e9b20943 | 328 | check_verify_failure 'verify tag-name check' \ |
fce3b089 | 329 | '^error:.* badTagName:' \ |
47c0cb1a ÆAB |
330 | --no-strict \ |
331 | --fsck-obj-ok | |
446c6fae RJ |
332 | |
333 | ############################################################ | |
3dff5379 | 334 | # 11. tagger line label check #1 |
446c6fae RJ |
335 | |
336 | cat >tag.sig <<EOF | |
337 | object $head | |
338 | type commit | |
339 | tag mytag | |
e0aaf781 BC |
340 | |
341 | This is filler | |
446c6fae RJ |
342 | EOF |
343 | ||
e9b20943 | 344 | check_verify_failure '"tagger" line label check #1' \ |
fce3b089 | 345 | '^error:.* missingTaggerEntry:' \ |
47c0cb1a ÆAB |
346 | --no-strict \ |
347 | --fsck-obj-ok | |
446c6fae RJ |
348 | |
349 | ############################################################ | |
3dff5379 | 350 | # 12. tagger line label check #2 |
446c6fae RJ |
351 | |
352 | cat >tag.sig <<EOF | |
353 | object $head | |
354 | type commit | |
355 | tag mytag | |
356 | tagger | |
e0aaf781 BC |
357 | |
358 | This is filler | |
446c6fae RJ |
359 | EOF |
360 | ||
e9b20943 | 361 | check_verify_failure '"tagger" line label check #2' \ |
fce3b089 | 362 | '^error:.* missingTaggerEntry:' \ |
47c0cb1a ÆAB |
363 | --no-strict \ |
364 | --fsck-obj-ok | |
446c6fae RJ |
365 | |
366 | ############################################################ | |
acf9de4c | 367 | # 13. allow missing tag author name like fsck |
446c6fae RJ |
368 | |
369 | cat >tag.sig <<EOF | |
370 | object $head | |
371 | type commit | |
372 | tag mytag | |
e0aaf781 BC |
373 | tagger <> 0 +0000 |
374 | ||
375 | This is filler | |
376 | EOF | |
377 | ||
acf9de4c | 378 | test_expect_mktag_success 'allow missing tag author name' |
e0aaf781 BC |
379 | |
380 | ############################################################ | |
ba26ab99 | 381 | # 14. disallow missing tag author name |
e0aaf781 BC |
382 | |
383 | cat >tag.sig <<EOF | |
384 | object $head | |
385 | type commit | |
386 | tag mytag | |
387 | tagger T A Gger < | |
388 | > 0 +0000 | |
389 | ||
390 | EOF | |
391 | ||
ba26ab99 | 392 | check_verify_failure 'disallow malformed tagger' \ |
fce3b089 | 393 | '^error:.* badEmail:' \ |
47c0cb1a ÆAB |
394 | --no-strict \ |
395 | --fsck-obj-ok | |
e0aaf781 BC |
396 | |
397 | ############################################################ | |
398 | # 15. allow empty tag email | |
399 | ||
400 | cat >tag.sig <<EOF | |
401 | object $head | |
402 | type commit | |
403 | tag mytag | |
404 | tagger T A Gger <> 0 +0000 | |
405 | ||
406 | EOF | |
407 | ||
ca9a1ed9 | 408 | test_expect_mktag_success 'allow empty tag email' |
e0aaf781 BC |
409 | |
410 | ############################################################ | |
acf9de4c | 411 | # 16. allow spaces in tag email like fsck |
ba26ab99 BC |
412 | |
413 | cat >tag.sig <<EOF | |
414 | object $head | |
415 | type commit | |
416 | tag mytag | |
417 | tagger T A Gger <tag ger@example.com> 0 +0000 | |
418 | ||
419 | EOF | |
420 | ||
acf9de4c | 421 | test_expect_mktag_success 'allow spaces in tag email like fsck' |
ba26ab99 BC |
422 | |
423 | ############################################################ | |
424 | # 17. disallow missing tag timestamp | |
e0aaf781 | 425 | |
74f16b0c | 426 | tr '_' ' ' >tag.sig <<EOF |
e0aaf781 BC |
427 | object $head |
428 | type commit | |
429 | tag mytag | |
74f16b0c | 430 | tagger T A Gger <tagger@example.com>__ |
e0aaf781 BC |
431 | |
432 | EOF | |
433 | ||
ba26ab99 | 434 | check_verify_failure 'disallow missing tag timestamp' \ |
acf9de4c | 435 | '^error:.* badDate:' |
e0aaf781 BC |
436 | |
437 | ############################################################ | |
ba26ab99 | 438 | # 18. detect invalid tag timestamp1 |
e0aaf781 BC |
439 | |
440 | cat >tag.sig <<EOF | |
441 | object $head | |
442 | type commit | |
443 | tag mytag | |
444 | tagger T A Gger <tagger@example.com> Tue Mar 25 15:47:44 2008 | |
445 | ||
446 | EOF | |
447 | ||
ba26ab99 | 448 | check_verify_failure 'detect invalid tag timestamp1' \ |
acf9de4c | 449 | '^error:.* badDate:' |
e0aaf781 BC |
450 | |
451 | ############################################################ | |
ba26ab99 BC |
452 | # 19. detect invalid tag timestamp2 |
453 | ||
454 | cat >tag.sig <<EOF | |
455 | object $head | |
456 | type commit | |
457 | tag mytag | |
458 | tagger T A Gger <tagger@example.com> 2008-03-31T12:20:15-0500 | |
459 | ||
460 | EOF | |
461 | ||
462 | check_verify_failure 'detect invalid tag timestamp2' \ | |
acf9de4c | 463 | '^error:.* badDate:' |
ba26ab99 BC |
464 | |
465 | ############################################################ | |
466 | # 20. detect invalid tag timezone1 | |
e0aaf781 BC |
467 | |
468 | cat >tag.sig <<EOF | |
469 | object $head | |
470 | type commit | |
471 | tag mytag | |
472 | tagger T A Gger <tagger@example.com> 1206478233 GMT | |
473 | ||
474 | EOF | |
475 | ||
ba26ab99 | 476 | check_verify_failure 'detect invalid tag timezone1' \ |
acf9de4c | 477 | '^error:.* badTimezone:' |
ba26ab99 BC |
478 | |
479 | ############################################################ | |
480 | # 21. detect invalid tag timezone2 | |
481 | ||
482 | cat >tag.sig <<EOF | |
483 | object $head | |
484 | type commit | |
485 | tag mytag | |
486 | tagger T A Gger <tagger@example.com> 1206478233 + 30 | |
487 | ||
488 | EOF | |
489 | ||
490 | check_verify_failure 'detect invalid tag timezone2' \ | |
acf9de4c | 491 | '^error:.* badTimezone:' |
ba26ab99 BC |
492 | |
493 | ############################################################ | |
acf9de4c | 494 | # 22. allow invalid tag timezone3 (the maximum is -1200/+1400) |
ba26ab99 BC |
495 | |
496 | cat >tag.sig <<EOF | |
497 | object $head | |
498 | type commit | |
499 | tag mytag | |
500 | tagger T A Gger <tagger@example.com> 1206478233 -1430 | |
501 | ||
502 | EOF | |
503 | ||
acf9de4c | 504 | test_expect_mktag_success 'allow invalid tag timezone' |
e0aaf781 BC |
505 | |
506 | ############################################################ | |
ba26ab99 | 507 | # 23. detect invalid header entry |
e0aaf781 BC |
508 | |
509 | cat >tag.sig <<EOF | |
510 | object $head | |
511 | type commit | |
512 | tag mytag | |
513 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
514 | this line should not be here | |
515 | ||
516 | EOF | |
517 | ||
518 | check_verify_failure 'detect invalid header entry' \ | |
fce3b089 | 519 | '^error:.* extraHeaderEntry:' \ |
47c0cb1a ÆAB |
520 | --no-strict \ |
521 | --fsck-obj-ok | |
e0aaf781 | 522 | |
acfc0133 ÆAB |
523 | test_expect_success 'invalid header entry config & fsck' ' |
524 | test_must_fail git mktag <tag.sig && | |
06ce7915 ÆAB |
525 | git mktag --no-strict <tag.sig && |
526 | ||
acfc0133 | 527 | test_must_fail git -c fsck.extraHeaderEntry=error mktag <tag.sig && |
06ce7915 ÆAB |
528 | test_must_fail git -c fsck.extraHeaderEntry=error mktag --no-strict <tag.sig && |
529 | ||
acfc0133 | 530 | test_must_fail git -c fsck.extraHeaderEntry=warn mktag <tag.sig && |
06ce7915 ÆAB |
531 | git -c fsck.extraHeaderEntry=warn mktag --no-strict <tag.sig && |
532 | ||
acfc0133 | 533 | git -c fsck.extraHeaderEntry=ignore mktag <tag.sig && |
06ce7915 ÆAB |
534 | git -c fsck.extraHeaderEntry=ignore mktag --no-strict <tag.sig && |
535 | ||
acfc0133 | 536 | git fsck && |
780aa0a2 | 537 | git -c fsck.extraHeaderEntry=warn fsck 2>err && |
acfc0133 | 538 | grep "warning .*extraHeaderEntry:" err && |
780aa0a2 | 539 | test_must_fail git -c fsck.extraHeaderEntry=error 2>err fsck && |
acfc0133 ÆAB |
540 | grep "error .* extraHeaderEntry:" err |
541 | ' | |
542 | ||
47c95e77 ÆAB |
543 | cat >tag.sig <<EOF |
544 | object $head | |
545 | type commit | |
546 | tag mytag | |
547 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
548 | ||
549 | ||
550 | this line comes after an extra newline | |
551 | EOF | |
552 | ||
ca9a1ed9 | 553 | test_expect_mktag_success 'allow extra newlines at start of body' |
47c95e77 ÆAB |
554 | |
555 | cat >tag.sig <<EOF | |
556 | object $head | |
557 | type commit | |
558 | tag mytag | |
559 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
560 | ||
561 | EOF | |
562 | ||
9a1a3a4d | 563 | test_expect_mktag_success 'allow a blank line before an empty body (1)' |
47c95e77 ÆAB |
564 | |
565 | cat >tag.sig <<EOF | |
566 | object $head | |
567 | type commit | |
568 | tag mytag | |
569 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
570 | EOF | |
571 | ||
9a1a3a4d | 572 | test_expect_mktag_success 'allow no blank line before an empty body (2)' |
47c95e77 | 573 | |
e0aaf781 | 574 | ############################################################ |
ba26ab99 | 575 | # 24. create valid tag |
e0aaf781 BC |
576 | |
577 | cat >tag.sig <<EOF | |
578 | object $head | |
579 | type commit | |
580 | tag mytag | |
581 | tagger T A Gger <tagger@example.com> 1206478233 -0500 | |
446c6fae RJ |
582 | EOF |
583 | ||
ca9a1ed9 | 584 | test_expect_mktag_success 'create valid tag object' |
446c6fae RJ |
585 | |
586 | test_done |