]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5704: send object-format capability with SHA-256
authorbrian m. carlson <sandals@crustytoothpaste.net>
Fri, 19 Jun 2020 17:55:58 +0000 (17:55 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Jun 2020 21:04:09 +0000 (14:04 -0700)
When we speak protocol v2 in this test, we must pass the object-format
header if the algorithm is not SHA-1.  Otherwise, git upload-pack fails
because the hash algorithm doesn't match and not because we've failed to
speak the protocol correctly.  Pass the header so that our assertions
test what we're really interested in.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5704-protocol-violations.sh

index 950cfb21fe6b51c760100b508d14c4344a6309ef..5c941949b980b49607fb9b3876487110cf0acabc 100755 (executable)
@@ -9,6 +9,7 @@ making sure that we do not segfault or otherwise behave badly.'
 test_expect_success 'extra delim packet in v2 ls-refs args' '
        {
                packetize command=ls-refs &&
+               packetize "object-format=$(test_oid algo)" &&
                printf 0001 &&
                # protocol expects 0000 flush here
                printf 0001
@@ -21,6 +22,7 @@ test_expect_success 'extra delim packet in v2 ls-refs args' '
 test_expect_success 'extra delim packet in v2 fetch args' '
        {
                packetize command=fetch &&
+               packetize "object-format=$(test_oid algo)" &&
                printf 0001 &&
                # protocol expects 0000 flush here
                printf 0001