5 test_description='git mktag: tag object verify test'
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.
14 check_verify_failure () {
16 test_expect_success "$1" '
17 ( test_must_fail git mktag <tag.sig 2>message ) &&
18 grep "$expect" message
22 ###########################################################
23 # first create a commit, so we have a valid object/type
25 test_expect_success 'setup' '
28 git update-index --add A &&
29 git commit -m "Initial commit" &&
30 head=$(git rev-parse --verify HEAD)
33 ############################################################
40 check_verify_failure 'Tag object length check' \
41 '^error: .*size wrong.*$'
43 ############################################################
44 # 2. object line label check
47 xxxxxx 139e9b33986b1c2670fff52c5067603117b3e895
54 check_verify_failure '"object" line label check' '^error: char0: .*"object "$'
56 ############################################################
57 # 3. object line SHA1 check
60 object zz9e9b33986b1c2670fff52c5067603117b3e895
67 check_verify_failure '"object" line SHA1 check' '^error: char7: .*SHA1 hash$'
69 ############################################################
70 # 4. type line label check
80 check_verify_failure '"type" line label check' '^error: char.*: .*"\\ntype "$'
82 ############################################################
83 # 5. type line eol check
85 echo "object $head" >tag.sig
86 printf "type tagsssssssssssssssssssssssssssssss" >>tag.sig
88 check_verify_failure '"type" line eol check' '^error: char.*: .*"\\n"$'
90 ############################################################
91 # 6. tag line label check #1
101 check_verify_failure '"tag" line label check #1' \
102 '^error: char.*: no "tag " found$'
104 ############################################################
105 # 7. tag line label check #2
109 type taggggggggggggggggggggggggggggggg
113 check_verify_failure '"tag" line label check #2' \
114 '^error: char.*: no "tag " found$'
116 ############################################################
117 # 8. type line type-name length check
121 type taggggggggggggggggggggggggggggggg
125 check_verify_failure '"type" line type-name length check' \
126 '^error: char.*: type too long$'
128 ############################################################
129 # 9. verify object (SHA1/type) check
132 object $(test_oid deadbeef)
139 check_verify_failure 'verify object (SHA1/type) check' \
140 '^error: char7: could not verify object.*$'
142 ############################################################
143 # 10. verify tag-name check
153 check_verify_failure 'verify tag-name check' \
154 '^error: char.*: could not verify tag name$'
156 ############################################################
157 # 11. tagger line label check #1
167 check_verify_failure '"tagger" line label check #1' \
168 '^error: char.*: could not find "tagger "$'
170 ############################################################
171 # 12. tagger line label check #2
182 check_verify_failure '"tagger" line label check #2' \
183 '^error: char.*: could not find "tagger "$'
185 ############################################################
186 # 13. disallow missing tag author name
197 check_verify_failure 'disallow missing tag author name' \
198 '^error: char.*: missing tagger name$'
200 ############################################################
201 # 14. disallow missing tag author name
212 check_verify_failure 'disallow malformed tagger' \
213 '^error: char.*: malformed tagger field$'
215 ############################################################
216 # 15. allow empty tag email
222 tagger T A Gger <> 0 +0000
226 test_expect_success \
227 'allow empty tag email' \
228 'git mktag <tag.sig >.git/refs/tags/mytag 2>message'
230 ############################################################
231 # 16. disallow spaces in tag email
237 tagger T A Gger <tag ger@example.com> 0 +0000
241 check_verify_failure 'disallow spaces in tag email' \
242 '^error: char.*: malformed tagger field$'
244 ############################################################
245 # 17. disallow missing tag timestamp
247 tr '_' ' ' >tag.sig <<EOF
251 tagger T A Gger <tagger@example.com>__
255 check_verify_failure 'disallow missing tag timestamp' \
256 '^error: char.*: missing tag timestamp$'
258 ############################################################
259 # 18. detect invalid tag timestamp1
265 tagger T A Gger <tagger@example.com> Tue Mar 25 15:47:44 2008
269 check_verify_failure 'detect invalid tag timestamp1' \
270 '^error: char.*: missing tag timestamp$'
272 ############################################################
273 # 19. detect invalid tag timestamp2
279 tagger T A Gger <tagger@example.com> 2008-03-31T12:20:15-0500
283 check_verify_failure 'detect invalid tag timestamp2' \
284 '^error: char.*: malformed tag timestamp$'
286 ############################################################
287 # 20. detect invalid tag timezone1
293 tagger T A Gger <tagger@example.com> 1206478233 GMT
297 check_verify_failure 'detect invalid tag timezone1' \
298 '^error: char.*: malformed tag timezone$'
300 ############################################################
301 # 21. detect invalid tag timezone2
307 tagger T A Gger <tagger@example.com> 1206478233 + 30
311 check_verify_failure 'detect invalid tag timezone2' \
312 '^error: char.*: malformed tag timezone$'
314 ############################################################
315 # 22. detect invalid tag timezone3
321 tagger T A Gger <tagger@example.com> 1206478233 -1430
325 check_verify_failure 'detect invalid tag timezone3' \
326 '^error: char.*: malformed tag timezone$'
328 ############################################################
329 # 23. detect invalid header entry
335 tagger T A Gger <tagger@example.com> 1206478233 -0500
336 this line should not be here
340 check_verify_failure 'detect invalid header entry' \
341 '^error: char.*: trailing garbage in tag header$'
343 ############################################################
344 # 24. create valid tag
350 tagger T A Gger <tagger@example.com> 1206478233 -0500
354 test_expect_success \
356 'git mktag <tag.sig >.git/refs/tags/mytag 2>message'
358 ############################################################
361 test_expect_success \
363 'git tag -l | grep mytag'