t7030: stop using invalid tag name
We intentionally invalidate the signature of a tag by switching its tag name from "seventh" to "7th forged". However, the latter is not a valid tag name because it contains a space. This doesn't currently affect the test, but we're better off using something syntactically valid. That reduces the number of possible failure modes in the test, and future-proofs us if git hash-object gets more picky about its input. The t7031 script, which was mostly copied from t7030, has the same problem, so we'll fix it, too. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
61cc4be7ec
commit
ad5dfeac04
@ -115,7 +115,7 @@ test_expect_success GPGSM 'verify and show signatures x509 with high minTrustLev
|
|||||||
|
|
||||||
test_expect_success GPG 'detect fudged signature' '
|
test_expect_success GPG 'detect fudged signature' '
|
||||||
git cat-file tag seventh-signed >raw &&
|
git cat-file tag seventh-signed >raw &&
|
||||||
sed -e "/^tag / s/seventh/7th forged/" raw >forged1 &&
|
sed -e "/^tag / s/seventh/7th-forged/" raw >forged1 &&
|
||||||
git hash-object -w -t tag forged1 >forged1.tag &&
|
git hash-object -w -t tag forged1 >forged1.tag &&
|
||||||
test_must_fail git verify-tag $(cat forged1.tag) 2>actual1 &&
|
test_must_fail git verify-tag $(cat forged1.tag) 2>actual1 &&
|
||||||
grep "BAD signature from" actual1 &&
|
grep "BAD signature from" actual1 &&
|
||||||
|
@ -125,7 +125,7 @@ test_expect_success GPGSSH,GPGSSH_VERIFYTIME 'verify-tag failes with tag date ou
|
|||||||
test_expect_success GPGSSH 'detect fudged ssh signature' '
|
test_expect_success GPGSSH 'detect fudged ssh signature' '
|
||||||
test_config gpg.ssh.allowedSignersFile "${GPGSSH_ALLOWED_SIGNERS}" &&
|
test_config gpg.ssh.allowedSignersFile "${GPGSSH_ALLOWED_SIGNERS}" &&
|
||||||
git cat-file tag seventh-signed >raw &&
|
git cat-file tag seventh-signed >raw &&
|
||||||
sed -e "/^tag / s/seventh/7th forged/" raw >forged1 &&
|
sed -e "/^tag / s/seventh/7th-forged/" raw >forged1 &&
|
||||||
git hash-object -w -t tag forged1 >forged1.tag &&
|
git hash-object -w -t tag forged1 >forged1.tag &&
|
||||||
test_must_fail git verify-tag $(cat forged1.tag) 2>actual1 &&
|
test_must_fail git verify-tag $(cat forged1.tag) 2>actual1 &&
|
||||||
grep "${GPGSSH_BAD_SIGNATURE}" actual1 &&
|
grep "${GPGSSH_BAD_SIGNATURE}" actual1 &&
|
||||||
|
Loading…
Reference in New Issue
Block a user