fsck: add a few committer name tests
fsck reports "missing space before <email>" for committer string equal to "name email>" or to "". It'd be nicer to say "missing email" for the second string and "name is bad" (has > in it) for the first one. Add a failing test for these messages. For "name> <email>" no error is reported. Looks like a bug, so add such a failing test." Signed-off-by: Dmitry Ivankov <divanorama@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
4b4963c0e1
commit
e3c98120f5
@ -110,6 +110,42 @@ test_expect_success 'email with embedded > is not okay' '
|
||||
grep "error in commit $new" out
|
||||
'
|
||||
|
||||
test_expect_failure 'missing < email delimiter is reported nicely' '
|
||||
git cat-file commit HEAD >basis &&
|
||||
sed "s/<//" basis >bad-email-2 &&
|
||||
new=$(git hash-object -t commit -w --stdin <bad-email-2) &&
|
||||
test_when_finished "remove_object $new" &&
|
||||
git update-ref refs/heads/bogus "$new" &&
|
||||
test_when_finished "git update-ref -d refs/heads/bogus" &&
|
||||
git fsck 2>out &&
|
||||
cat out &&
|
||||
grep "error in commit $new.* - bad name" out
|
||||
'
|
||||
|
||||
test_expect_failure 'missing email is reported nicely' '
|
||||
git cat-file commit HEAD >basis &&
|
||||
sed "s/[a-z]* <[^>]*>//" basis >bad-email-3 &&
|
||||
new=$(git hash-object -t commit -w --stdin <bad-email-3) &&
|
||||
test_when_finished "remove_object $new" &&
|
||||
git update-ref refs/heads/bogus "$new" &&
|
||||
test_when_finished "git update-ref -d refs/heads/bogus" &&
|
||||
git fsck 2>out &&
|
||||
cat out &&
|
||||
grep "error in commit $new.* - missing email" out
|
||||
'
|
||||
|
||||
test_expect_failure '> in name is reported' '
|
||||
git cat-file commit HEAD >basis &&
|
||||
sed "s/ </> </" basis >bad-email-4 &&
|
||||
new=$(git hash-object -t commit -w --stdin <bad-email-4) &&
|
||||
test_when_finished "remove_object $new" &&
|
||||
git update-ref refs/heads/bogus "$new" &&
|
||||
test_when_finished "git update-ref -d refs/heads/bogus" &&
|
||||
git fsck 2>out &&
|
||||
cat out &&
|
||||
grep "error in commit $new" out
|
||||
'
|
||||
|
||||
test_expect_success 'tag pointing to nonexistent' '
|
||||
cat >invalid-tag <<-\EOF &&
|
||||
object ffffffffffffffffffffffffffffffffffffffff
|
||||
|
Loading…
Reference in New Issue
Block a user