#!/bin/sh # # test_description='git mktag: tag object verify test' . ./test-lib.sh ########################################################### # check the tag.sig file, expecting verify_tag() to fail, # and checking that the error message matches the pattern # given in the expect.pat file. check_verify_failure () { test_expect_success "$1" " test_must_fail git mktag message && grep '$2' message && if test '$3' != '--no-strict' then test_must_fail git mktag --no-strict message.no-strict &&xb grep '$2' message.no-strict fi " } test_expect_mktag_success() { test_expect_success "$1" ' git hash-object -t tag -w --stdin expected && git fsck --strict && git mktag hash && test_cmp expected hash && test_when_finished "git update-ref -d refs/tags/mytag $(cat hash)" && git update-ref refs/tags/mytag $(cat hash) $(test_oid zero) && git fsck --strict ' } ########################################################### # first create a commit, so we have a valid object/type # for the tag. test_expect_success 'setup' ' test_commit A && test_commit B && head=$(git rev-parse --verify HEAD) && head_parent=$(git rev-parse --verify HEAD~) && tree=$(git rev-parse HEAD^{tree}) && blob=$(git rev-parse --verify HEAD:B.t) ' test_expect_success 'basic usage' ' cat >tag.sig <<-EOF && object $head type commit tag mytag tagger T A Gger 1206478233 -0500 EOF git mktag tag.sig <tag.sig < 0 +0000 EOF check_verify_failure '"object" line label check' '^error:.* missingObject:' ############################################################ # 3. object line hash check cat >tag.sig < 0 +0000 EOF check_verify_failure '"object" line check' '^error:.* badObjectSha1:' ############################################################ # 4. type line label check cat >tag.sig < 0 +0000 EOF check_verify_failure '"type" line label check' '^error:.* missingTypeEntry:' ############################################################ # 5. type line eol check echo "object $head" >tag.sig printf "type tagsssssssssssssssssssssssssssssss" >>tag.sig check_verify_failure '"type" line eol check' '^error:.* unterminatedHeader:' ############################################################ # 6. tag line label check #1 cat >tag.sig < 0 +0000 EOF check_verify_failure '"tag" line label check #1' \ '^error:.* missingTagEntry:' ############################################################ # 7. tag line label check #2 cat >tag.sig <tag.sig <tag.sig < 0 +0000 EOF check_verify_failure 'verify object (hash/type) check -- correct type, nonexisting object' \ '^fatal: could not read tagged object' cat >tag.sig < 0 +0000 EOF check_verify_failure 'verify object (hash/type) check -- made-up type, valid object' \ '^error:.* badType:' cat >tag.sig < 0 +0000 EOF check_verify_failure 'verify object (hash/type) check -- made-up type, nonexisting object' \ '^error:.* badType:' cat >tag.sig < 0 +0000 EOF check_verify_failure 'verify object (hash/type) check -- mismatched type, valid object' \ '^fatal: object.*tagged as.*tree.*but is.*commit' ############################################################ # 9.5. verify object (hash/type) check -- replacement test_expect_success 'setup replacement of commit -> commit and tree -> blob' ' git replace $head_parent $head && git replace -f $tree $blob ' cat >tag.sig < 0 +0000 EOF test_expect_mktag_success 'tag to a commit replaced by another commit' cat >tag.sig < 0 +0000 EOF check_verify_failure 'verify object (hash/type) check -- mismatched type, valid object' \ '^fatal: object.*tagged as.*tree.*but is.*blob' ############################################################ # 10. verify tag-name check cat >tag.sig < 0 +0000 EOF check_verify_failure 'verify tag-name check' \ '^error:.* badTagName:' '--no-strict' ############################################################ # 11. tagger line label check #1 cat >tag.sig <tag.sig <tag.sig < 0 +0000 This is filler EOF test_expect_mktag_success 'allow missing tag author name' ############################################################ # 14. disallow missing tag author name cat >tag.sig < 0 +0000 EOF check_verify_failure 'disallow malformed tagger' \ '^error:.* badEmail:' '--no-strict' ############################################################ # 15. allow empty tag email cat >tag.sig < 0 +0000 EOF test_expect_mktag_success 'allow empty tag email' ############################################################ # 16. allow spaces in tag email like fsck cat >tag.sig < 0 +0000 EOF test_expect_mktag_success 'allow spaces in tag email like fsck' ############################################################ # 17. disallow missing tag timestamp tr '_' ' ' >tag.sig <__ EOF check_verify_failure 'disallow missing tag timestamp' \ '^error:.* badDate:' ############################################################ # 18. detect invalid tag timestamp1 cat >tag.sig < Tue Mar 25 15:47:44 2008 EOF check_verify_failure 'detect invalid tag timestamp1' \ '^error:.* badDate:' ############################################################ # 19. detect invalid tag timestamp2 cat >tag.sig < 2008-03-31T12:20:15-0500 EOF check_verify_failure 'detect invalid tag timestamp2' \ '^error:.* badDate:' ############################################################ # 20. detect invalid tag timezone1 cat >tag.sig < 1206478233 GMT EOF check_verify_failure 'detect invalid tag timezone1' \ '^error:.* badTimezone:' ############################################################ # 21. detect invalid tag timezone2 cat >tag.sig < 1206478233 + 30 EOF check_verify_failure 'detect invalid tag timezone2' \ '^error:.* badTimezone:' ############################################################ # 22. allow invalid tag timezone3 (the maximum is -1200/+1400) cat >tag.sig < 1206478233 -1430 EOF test_expect_mktag_success 'allow invalid tag timezone' ############################################################ # 23. detect invalid header entry cat >tag.sig < 1206478233 -0500 this line should not be here EOF check_verify_failure 'detect invalid header entry' \ '^error:.* extraHeaderEntry:' '--no-strict' test_expect_success 'invalid header entry config & fsck' ' test_must_fail git mktag err && grep "warning .*extraHeaderEntry:" err && test_must_fail git -c fsck.extraHeaderEntry=error 2>err fsck && grep "error .* extraHeaderEntry:" err ' cat >tag.sig < 1206478233 -0500 this line comes after an extra newline EOF test_expect_mktag_success 'allow extra newlines at start of body' cat >tag.sig < 1206478233 -0500 EOF test_expect_mktag_success 'allow a blank line before an empty body (1)' cat >tag.sig < 1206478233 -0500 EOF test_expect_mktag_success 'allow no blank line before an empty body (2)' ############################################################ # 24. create valid tag cat >tag.sig < 1206478233 -0500 EOF test_expect_mktag_success 'create valid tag object' test_done